From 6d9629d3eb785fbc759b087d9382ca80867068ad Mon Sep 17 00:00:00 2001 From: 8f7726592c23135ae5b65a064228781a <8f7726592c23135ae5b65a064228781a@app-learninglab.inria.fr> Date: Thu, 5 Aug 2021 14:25:18 +0000 Subject: [PATCH] Update toy_document_fr.Rmd --- module2/exo1/toy_document_fr.Rmd | 2 -- 1 file changed, 2 deletions(-) diff --git a/module2/exo1/toy_document_fr.Rmd b/module2/exo1/toy_document_fr.Rmd index cb7872d..964bdb0 100644 --- a/module2/exo1/toy_document_fr.Rmd +++ b/module2/exo1/toy_document_fr.Rmd @@ -37,10 +37,8 @@ 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