Task 4: Advanced Visualizations#

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

Seaborn Configuration from Task 1#

Please use the code from Task 1 in the cell below to configure Seaborn and set your prefered theme.

# Your Solution here

Load Dataset from Task 2#

Since we are working in a new Jupyter Notebook, the first task is to import the CSV dataset (data/task2.csv) we saved in Task 2.

# Your Solution here

Task 5: Advanced Visualizations#

5.1. Create a “Ridgeline” plot fron the plots from B7.2 and B7.3 .#

Here is the goal:

../../../_images/ridgeline.png
# Your Solution Here