From c7fa0d84137e39d0d50a5483274d658631a42092 Mon Sep 17 00:00:00 2001 From: 8f7726592c23135ae5b65a064228781a <8f7726592c23135ae5b65a064228781a@app-learninglab.inria.fr> Date: Thu, 5 Aug 2021 14:23:32 +0000 Subject: [PATCH] Update toy_document_fr.Rmd --- module2/exo1/toy_document_fr.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module2/exo1/toy_document_fr.Rmd b/module2/exo1/toy_document_fr.Rmd index 3b2fa4d..162a080 100644 --- a/module2/exo1/toy_document_fr.Rmd +++ b/module2/exo1/toy_document_fr.Rmd @@ -36,11 +36,11 @@ set.seed(42) N = 1000 df = data.frame(X = runif(N), Y = runif(N))df$Accept = (df$X**2 + df$Y**2 <=1) library(ggplot2)ggplot(df, aes(x=X,y=Y,color=Accept)) + geom_point(alpha=.2) + coord_fixed() + theme_bw() -``` +``` Il est alors aisé d'obtenir une approximation (pas terrible) de $\pi$ en comptant combien de fois, en moyenne, $X^2 + Y^2$ est inférieur à 1: ```{r} 4*mean(df$Accept) -``` \ No newline at end of file +``` -- 2.18.1