Seaborn Boxplot

Python

 1|  plt.figure(figsize=(10,5))
 2|  plt.xlim(0,1000)
 3|  plt.ylabel('Price')
 4|  sns.boxplot(x=data['price'])
 5|  plt.show()
Seaborn Boxplot
Did you find this snippet useful?

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