#Importation des bibliothèques nécessaires.
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
# Data Description (very Quick). Rename the DataFrame variable (df) if needed.
df = pd.read_csv('./data_exploration.csv', sep=';')
print(f'\n ** Noms et Types des attributs **: \n{df.dtypes}\n\n------\n')
print(f'\n ** Apercu des données **: \n{df.head(5)}')
** Noms et Types des attributs **: Username object Subscribers float64 Views int64 Country object dtype: object ------ ** Apercu des données **: Username Subscribers Views Country 0 Colors TV 77.6 76490031656 IN 1 shripraashant 53.9 3237975581 IN 2 Alan Walker 46.2 14996804659 NO 3 SonyMusicIndiaVEVO 53.2 33399550869 US 4 LUCCAS NETO - LICCAS TOON 50.1 29698114509 BR
Figure 2D (nuage de points) avec :
https://seaborn.pydata.org/generated/seaborn.scatterplot.html
Figure 2D (boxplots) avec :
https://seaborn.pydata.org/generated/seaborn.boxplot.html#