plot specific columns pandas

Solutions on MaxInterview for plot specific columns pandas by the best coders in the world

showing results for - "plot specific columns pandas"
Kelley
15 Feb 2016
1#For one column
2import matplotlib.pyplot as plt
3df['Name Of Column'].plot()
4plt.show()
5#For Multiple Columns
6import matplotlib.pyplot as plt
7df[['Name Of Column1', 'Name Of Column2']].plot()
8plt.show()