简体   繁体   中英

Creating identical axes with matplotlib twiny

I'm trying to duplicate my y axis so that it appears on both the left and the right side of my graph (same scale on each side). I believe the correct way to do this is through the twiny method, but cannot get my head round it. Here is my current code:

import matplotlib as mpl
mpl.use('Agg')
import matplotlib.pyplot as plt
import pandas as pd
import numpy as np

def bar(data_df,
    colour_df=None,
        method='default',
        ret_obj=False):
    height = len(data_df.columns)*4
    width = len(data_df.index)/4
    ind = np.arange(len(data_df.index))
    dat = data_df[data_df.columns[0]]
    bar_width = 0.85
    fig, ax = plt.subplots(figsize=(width,height))
    ax1 = ax.bar(ind,dat,bar_width,color='y',log=True)
    ax2 = ax1.twiny()
    ax.tick_params(bottom='off', top='off', left='on', right='on') 
    plt.xticks(np.arange(len(data_df.index)) + bar_width, 
               data_df.index, rotation=67,ha='right')
    ylab = 'Region Length (base pairs, log10)'
    figname = 'bar' + method + '.png'
    if ret_obj==False:
        fig.savefig(figname,bbox_inches='tight',dpi=250)
        print "Output figure:", figname
        plt.close()
    if ret_obj==True:
        return fig

Which returns the following error when passed a dataframe:

AttributeError: 'BarContainer' object has no attribute 'twiny'

Having looked into it a bit further I believe that using the host/parasite methods would also work, but I'm a bit lost how I could fit it into my current code. Advice would be gratefully appreciated!

You don't have to use twiny in this case. It suffices to draw the labels on all sides:

bars = ax.bar(ind,dat,bar_width,color='y',log=True)
ax.tick_params(axis='both', which='both', labelbottom=True, labeltop=True, 
               labelleft=True, labelright=True)

I get following result with dummy data:

df = pd.DataFrame({"a": np.logspace(1,10,20)})
bar(df)

情节

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM