Pandas scattering plot

Im new for Python and Pandas, but has a CSV file with multiple columns that I read in a dataframe. I would like to plot the scatter plot of x = Index and y = 'data'. If the index is the index of the data frame and is the date. Thanks heaps Jason

+7
source share
1 answer

You can use plot_date :

 plot_date(df.index, df.data) 
+6
source

All Articles