library(dplyr) # help splitting, applying and combining data
library(data.table) # extension to data.frame format, optimized for huge datasets
library(ggplot2) # The grammar of graphics, it improves the quality and aesthetic of your graphs
library(DT)
library(ggplot2) # for graphics
library(plotly)
library(RColorBrewer) # package with pre-defined color palette
```
## Récupération des données
Le fichier est téléchargé à partir de l'url puis lu via la fonction fread pour avoir un objet data.table. Le nom des colonnes est vérifié pour remplacer les caractères spéciaux par des ".".
Le fichier est téléchargé à partir de l'url [https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv](https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv) puis lu via la fonction fread pour avoir un objet de type data.table afin de faire facilement des graphiques avec ggplot2. Le nom des colonnes est vérifié pour remplacer les caractères spéciaux par des ".".