Seaborn Histogram

Python

 1|  plt.figure(figsize=(10,5))
 2|  plt.xlim(0,2000)
 3|  plt.xlabel('Price')
 4|  plt.ylabel('Records')
 5|  sns.distplot(data['price'],bins=100,kde=False)
 6|  plt.show()
Seaborn Histogram
Did you find this snippet useful?

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