Transforming variables
When variables have skewed distributions, they often require a transformation in order to form a linear relationship with another variable so that correlation can be computed. In this exercise, you'll perform a transformation yourself.
pandas
as pd
, numpy
as np
, matplotlib.pyplot
as plt
, and seaborn
as sns
are imported, and world_happiness
is loaded.
Este exercício faz parte do curso
Introduction to Statistics in Python
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Scatterplot of happiness_score vs. gdp_per_cap
____
plt.show()
# Calculate correlation
cor = ____
print(cor)