Distplot dalam Python
sns.distplot(sample_df["baths"])
plt.show()
Sore Stork
sns.distplot(sample_df["baths"])
plt.show()
x = np.random.normal(size=100)
sns.distplot(x);