Skip to content

Commit ffd31a5

Browse files
authored
Update week5-ggplot2.Rmd
1 parent 55b490b commit ffd31a5

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

week5-ggplot2.Rmd

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
2-
title: "Week 8: Intro to ggplot"
2+
title: "Week 5: Intro to ggplot"
33
output:
44
html_document:
55
toc: true
6-
include:
7-
after_body: footer.html
86
---
97

108
```{r setup, include=FALSE}
@@ -94,7 +92,6 @@ There are two different workflows that you need to decide on.
9492

9593
Gravitating to option 1 will make your life with `ggplot()` easier, but let's start with option 2.
9694

97-
![Important](images/Emblem-important-red.svg.png)
9895
*Fixed* lines, points attributes go *outside* of `aes()` in a `geom_...()` call. *Dynamic* attributes go *inside* of `aes()`.
9996

10097

@@ -441,4 +438,4 @@ A good set of basic ggplot commands when you are starting:
441438
* `facet_wrap()`
442439
* Changing the color, line, and points manually is a bit painful, but often unavoidable. Get to know the `scale_xyz_manual()` functions when you need to do that. `?scale_color_manual` to find them all.
443440

444-
ggplot's main downside for me is the lack of a manual legend function like `plot()`'s `legend()` and the amount of work needed to customize legends. But this is made up for in ggplot's other great features.
441+
ggplot's main downside for me is the lack of a manual legend function like `plot()`'s `legend()` and the amount of work needed to customize legends. But this is made up for in ggplot's other great features.

0 commit comments

Comments
 (0)