The code:
df=pd.DataFrame([770,215,179,107,83,82,70,60,57,54,52],index = [\'A\',\'B\',\'C\',\'D\',\'E\',\'F\',\'G\',\'H\',\'I\',\'J\',\'K\']) ax = df.plot(kind
You could use a logarithmic y-scale by providing ax.set_yscale('log')
ax.set_yscale('log')