pajuan commited on
Commit
e54ec21
verified
1 Parent(s): 6523d37

Update global.R

Browse files
Files changed (1) hide show
  1. global.R +4 -4
global.R CHANGED
@@ -28,7 +28,7 @@ head(x)
28
  mean(x)
29
  ```
30
  ## Seccion 2
31
- you can load datasets and libraries
32
  ```{r}
33
  library(magrittr)
34
  library(datasets)
@@ -42,10 +42,10 @@ iris %>%
42
  group_by(Species) %>%
43
  summarise(mean = mean(Sepal.Length), sd = sd(Sepal.Length))
44
  ```
45
- ## Secci贸n 4
46
- Ahora es su turno, construya un chunk sencillo.
47
  ```{r}
48
- # Escriba aqui algo
49
  ```
50
  "
51
 
 
28
  mean(x)
29
  ```
30
  ## Seccion 2
31
+ you can use datasets and some libraries
32
  ```{r}
33
  library(magrittr)
34
  library(datasets)
 
42
  group_by(Species) %>%
43
  summarise(mean = mean(Sepal.Length), sd = sd(Sepal.Length))
44
  ```
45
+ ## Secci贸n 3
46
+ Now it's your turn, build a simple chunk.
47
  ```{r}
48
+ # Write here something
49
  ```
50
  "
51