import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as snspandas visu¶
iris = sns.load_dataset("iris")Explore the dataset with info() and head()¶
# your codeIs there a correlation between any two metrics per species?¶
(hint: pairplot)
# your codeIs there a correlation between sepal_length and petal_length¶
(hint: relplot, lmplot)
# your codeWhat is the distribution of the sepal_width¶
(hint: displot, catplot)
# your code