Exploring a multivariate normal distribution
In this exercise, you'll be working with a DataFrame called house_price_size, which contains two columns called price and size, representing the price and size of houses, respectively.
You'll first explore the data to gain some understanding of the distribution and relationship of the two variables price and size, and then you will obtain a covariance matrix for these two variables.
The following packages have been imported for you: seaborn as sns, pandas as pd, and matplotlib.pyplot as plt.
Cet exercice fait partie du cours
Monte Carlo Simulations in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Generate a pairplot of the data
____
plt.show()