Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions episodes/07-plot-ggplot2.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ library(dplyr)

Plotting our data is one of the best ways to quickly explore it and the various
relationships between variables. There are three main plotting systems in R,
the [base plotting system](https://www.statmethods.net/graphs/), the
[lattice](https://www.statmethods.net/advgraphs/trellis.html) package, and the
[ggplot2](https://www.statmethods.net/advgraphs/ggplot2.html) package. Today
the base plotting system, the lattice package, and the ggplot2 package. Today
and tomorrow we'll be learning about the ggplot2 package, because it is one of
the most popular for creating publication quality graphics. In this episode, we
will introduce the key features of a ggplot and make a few example plots. We
Expand Down
Loading