Update global.R
Browse files
global.R
CHANGED
@@ -42,16 +42,6 @@ iris %>%
|
|
42 |
group_by(Species) %>%
|
43 |
summarise(mean = mean(Sepal.Length), sd = sd(Sepal.Length))
|
44 |
```
|
45 |
-
## Seccion 3
|
46 |
-
you also can make graphics
|
47 |
-
```{r}
|
48 |
-
plot(iris$Sepal.Length, iris$Sepal.Width)
|
49 |
-
```
|
50 |
-
```{r}
|
51 |
-
library(ggplot2)
|
52 |
-
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +
|
53 |
-
geom_point()
|
54 |
-
```
|
55 |
## Secci贸n 4
|
56 |
Ahora es su turno, construya un chunk sencillo.
|
57 |
```{r}
|
|
|
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}
|