Plotting

This means drawing a 2-D plot from dataframes.

# predefined df
print('{}\n'.format(df))

df.plot()                    # Produce plot visualizations
plt.show()
plt.savefig('df.png')        # save to PNG file

df.plot(kind='hist')         # create other plots like histograms or boxplots
df.plot(kind='box')
plt.show()