1. Learn
  2. /
  3. Courses
  4. /
  5. Monte Carlo Simulations in Python

Exercise

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.

Instructions 1/2

undefined XP
    1
    2
  • Using pairplot(), generate scatterplots and histograms to explore the patterns of the data in house_price_size.