df.plot( color='red',x=' ',y=' ',kind='scatter'/'box'/'hist')
plt.title(' ')
plt.xlabel(' ')
plt.ylabel(' ')
plt.show()
df.plot(subplot=True)
df[column_list].plot()
1. subplot
2. df[column_list].plot()
df.plot( color='red',x=' ',y=' ',kind='scatter'/'box'/'hist')
plt.title(' ')
plt.xlabel(' ')
plt.ylabel(' ')
plt.show()
df.plot(subplot=True)
df[column_list].plot()
1. subplot
2. df[column_list].plot()