Jupyter StackOverflow - historgram
# Historgram of the top 20 countries
first20.hist(bins = 20)
# Plot using Seaborn
plot = sns.relplot(data = first20)
plot.set_xticklabels(rotation=90)
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
# Historgram of the top 20 countries
first20.hist(bins = 20)
# Plot using Seaborn
plot = sns.relplot(data = first20)
plot.set_xticklabels(rotation=90)