df = pd.DataFrame({'lab':['A', 'B', 'C'], 'val':[10, 30, 20]})  # doctest: +SKIP
ax = df.plot.bar(x='lab', y='val', rot=0)  # doctest: +SKIP
