With the following code:
import matplotlib matplotlib.style.use(\'ggplot\') import matplotlib.pyplot as plt import pandas as pd df = pd.DataFrame({ \'cellty
For bar graphs, you can include the angle which you finally want the ticks to have.
Here I am using rot=0 to make them parallel to the x axis.
rot=0
series.plot.bar(rot=0) plt.show() plt.close()