Does sugar improve happiness?
A new column has been added to world_happiness called grams_sugar_per_day, which contains the average amount of sugar eaten per person per day in each country. In this exercise, you'll examine the effect of a country's average sugar consumption on its happiness score.
pandas as pd, matplotlib.pyplot as plt, and seaborn as sns are imported, and world_happiness is loaded.
This exercise is part of the course
Introduction to Statistics in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Scatterplot of grams_sugar_per_day and happiness_score
____
plt.show()
# Correlation between grams_sugar_per_day and happiness_score
cor = ____
print(cor)