From 87923647c1c5fd59ccbc3ed98e3a951ac40d4eda Mon Sep 17 00:00:00 2001 From: fce93069b4bce444fe8565ce6d49f908 Date: Fri, 3 Apr 2020 20:21:13 +0000 Subject: [PATCH] Update toy_document_fr.Rmd --- module2/exo1/toy_document_fr.Rmd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/module2/exo1/toy_document_fr.Rmd b/module2/exo1/toy_document_fr.Rmd index 18c6314..bb7b20f 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) -- 2.18.1