From 4d8a4758466dcf86929f69a9fb209101031ac915 Mon Sep 17 00:00:00 2001 From: Kristi Liu <48770663+kristi-sara@users.noreply.github.com> Date: Wed, 19 Mar 2025 15:44:06 -0700 Subject: [PATCH] remove datacamp links remove datacamp links from lesson --- episodes/07-plot-ggplot2.Rmd | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/episodes/07-plot-ggplot2.Rmd b/episodes/07-plot-ggplot2.Rmd index 75c7834b..e3f7be8a 100644 --- a/episodes/07-plot-ggplot2.Rmd +++ b/episodes/07-plot-ggplot2.Rmd @@ -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