--- title: "À propos du calcul de pi" author: "__*Emilie Rojas*__" date: "__*15 avril 2020*__" output: html_document --- ```{r, echo=FALSE} setwd("~/Desktop") test <- read.table("exo2.txt") ``` ```{r} hist(test$V1, col="blue", ylim=c(0,25), xlim=c(0,25), xlab="", ylab="", main="") plot(test$V1, type="l", ylim=c(0,25), xlim=c(0,100), col="blue", xlab="", ylab="") ```