Seaborn Scatterplot

Python

 1|  plt.figure(figsize=(10,5))
 2|  plt.title('Price v Sales')
 3|  plt.xlabel('Price')
 4|  plt.ylabel('Sales')
 5|  sns.scatterplot(df['Price'],df['Sales'])
 6|  plt.show()
Did you find this snippet useful?

Sign up for free to to add this to your code library