Answers for "plt.scatter(dataframe.x1,dataframe.x2,c=dataframe.label)"

1

scatter plot of a dataframe in python

>>> ax2 = df.plot.scatter(x='length',
...                       y='width',
...                       c='species',
...                       colormap='viridis')
Posted by: Guest on December-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language