what does y axis represent in sea born histogram of the Fare column using the seaborn.distplot() – in mission152- conditional-plots (data scientist path)
import seaborn as sns
import matplotlib.pyplot as plt
sns.distplot(titanic[“Fare”])
plt.show()