Task 3: 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 Lab 05 Task 1#

In last week’s lab, you worked on the pokemon dataset and added a column to the dataset, and then saved it to a csv file.

Since we would like to re-use that dataset, use a relative path to import the CSV file from Lab 5 (something like: ../lab05-demoFiras/data/filename.csv) we saved in Task 1 of Lab 5.

# Your Solution here

Task 3: Advanced Visualizations#

3.1. Create a “Ridgeline” to show the distribution of Weighted_Scores split by all the Pokémon types (Type 1)#

Important: When referring to Type of the pokemon, please use just the “Type 1” Column.

Here is the goal:

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