Update toy_document_fr.Rmd

parent 413d5b1a
...@@ -5,7 +5,6 @@ date: "25 juin 2018" ...@@ -5,7 +5,6 @@ date: "25 juin 2018"
output: html_document output: html_document
--- ---
```{r setup, include=FALSE} ```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE) knitr::opts_chunk$set(echo = TRUE)
``` ```
...@@ -33,7 +32,7 @@ Sinon, une méthode plus simple à comprendre et ne faisant pas intervenir d'app ...@@ -33,7 +32,7 @@ Sinon, une méthode plus simple à comprendre et ne faisant pas intervenir d'app
```{r} ```{r}
set.seed(42) set.seed(42)
N=1000 N = 1000
df = data.frame(X = runif(N), Y = runif(N)) df = data.frame(X = runif(N), Y = runif(N))
df$Accept = (df$X**2 + df$Y**2 <=1) df$Accept = (df$X**2 + df$Y**2 <=1)
library(ggplot2) library(ggplot2)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment