Answers for "seaborn plot histogram for all columns"

5

plot histogram in seaborn

sns.distplot(gapminder['lifeExp'], kde=False, color='red', bins=100)
plt.title('Life Expectancy', fontsize=18)
plt.xlabel('Life Exp (years)', fontsize=16)
plt.ylabel('Frequency', fontsize=16)
Posted by: Guest on May-30-2020
-1

seaborn plot histogram for all columns

df.plot.hist(subplots=True, legend=True, layout=(1, 3))
Posted by: Guest on March-24-2022

Code answers related to "seaborn plot histogram for all columns"

Python Answers by Framework

Browse Popular Code Answers by Language