--- title: "Data analysis" output: html_document date: "2025-02-10" --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ### data import ```{r} # setwd(D:\MOOC\Recherche Reproductible) my_data = read.csv("mockdata_cases.csv" , header = TRUE , dec = ";") ``` ### Data analysis ```{r} summary(my_data) ``` ```{r} summary(my_data$total) plot(my_data$month) ```