Answers for "scatter plot of datframe column in python"

3

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