I am plotting a bar and line plot in one figure and having problems with correctly formatting the shared x-axis tick labels. The point on the line is not in sync with the center of the bar where the tick label is drawn.
PS: I am plotting through pandas plot function
Example:
A. Single Bar plot (works fine)
libs_summary_pandas_df[['read_count']].plot(kind='bar',ax=axis,color=['#E41A1C'])
B. Overlaying with line plot on the secondary y-axis (x-axis labels are messed up)
libs_summary_pandas_df.total_yield.map(lambda x: x/1000000000.0).plot(kind='line',ax=axis)
Thanks! -Abhi