When I try to plot my data in the form of histogram using seaborn displot:
plot = sns.displot(
data=z, kde=True, kind="hist", bins=3000, legend=True, aspect=1.8
).set(title='Error Distribution')
The curve for KDE is plotted in the form of straight lines instead of curves like here:
Is there a way to make the KDE lines cover all the bins of the histogram in a curved manner?
Instead of zooming in, you could use the bins to restrict to a certain range (via
binrange=...
). To limit the range of the kde, you can use theclip
keyword. Here is an example, first without setting the range:Here is how it would look with limiting the ranges for the histogram and the kde: