You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importpandasaspdd= {'A' : [1., 2., 3., 4.], 'B' : [4., 3., 2., 1.], 'C': [5, 1, 3, 4]}
df=pd.DataFrame(d, index=pd.date_range('2014 10 11', '2014 10 14'))
axes=df[['A','B']].plot(subplots=True)
df['C'].plot(ax=axes[0], secondary_y=True) # x tick labels dissappear when this line is executed
No x tick labels are shown when using secondary_y on a subplots within a figure containing multiple subplots.
secondary_y works well when only using one subplot (subplots=False) or when layouting the subplots in columns instead of rows.
This worked on 0.15.1, but not anymore on 0.15.2:
No x tick labels are shown when using secondary_y on a subplots within a figure containing multiple subplots.
secondary_y works well when only using one subplot (subplots=False) or when layouting the subplots in columns instead of rows.
The text was updated successfully, but these errors were encountered: