diff --git a/module2/exo1/toy_document_fr.Rmd b/module2/exo1/toy_document_fr.Rmd index 18c63143217b6be0310b3d632e9605fc591faf8c..bb7b20f1c090ddac35c179762c4e6f1fd5fc83c5 100644 --- a/module2/exo1/toy_document_fr.Rmd +++ b/module2/exo1/toy_document_fr.Rmd @@ -5,7 +5,6 @@ date: "25 juin 2018" output: html_document --- - ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` @@ -33,7 +32,7 @@ Sinon, une méthode plus simple à comprendre et ne faisant pas intervenir d'app ```{r} set.seed(42) -N=1000 +N = 1000 df = data.frame(X = runif(N), Y = runif(N)) df$Accept = (df$X**2 + df$Y**2 <=1) library(ggplot2)