histplot python code example
Example 1: distribution seaborn
x = np.random.normal(size=100)
sns.distplot(x);
Example 2: python matpotlib histplot
import matplotlib.pyplot as plt
plt.hist(x) #x is a array of numbers
plt.show()
Example 3: kde = false
kdebool, optional
Whether to plot a gaussian kernel density estimate.