Fix exercise indenting.

Closes #16
This commit is contained in:
hadley 2016-02-11 08:17:17 -06:00
parent 2f85ba936b
commit 302528634e
1 changed files with 14 additions and 12 deletions

View File

@ -709,18 +709,20 @@ ggplot(data = mpg) +
##### Exercises ##### Exercises
1. What graph will this code make? 1. What graph will this code make?
```{r eval = FALSE}
ggplot(data = mpg) + ```{r eval = FALSE}
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy)) + geom_point(mapping = aes(x = displ, y = hwy)) +
facet_grid(drv ~ .) facet_grid(drv ~ .)
``` ```
1. What graph will this code make? 1. What graph will this code make?
```{r eval = FALSE}
ggplot(data = mpg) + ```{r eval = FALSE}
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy)) + geom_point(mapping = aes(x = displ, y = hwy)) +
facet_grid(. ~ cyl) facet_grid(. ~ cyl)
``` ```
### The layered grammar of graphics ### The layered grammar of graphics