I have a data array called data1 that contains values ββfrom 0 to over a thousand. I only want to have a histogram and KDE of these values ββfrom 0 to 10. Therefore, I wrote:
sns.distplot(data1, kde=True, hist=True, hist_kws={"range": [0,10]}) plt.show()
However, I get a histogram of all values ββ(in the 2000s).
source share