From b2b2863ca32d525ab498b72fa16d5a5d2dbff6c9 Mon Sep 17 00:00:00 2001 From: Graeme Grimes Date: Wed, 20 Sep 2023 15:34:10 +0100 Subject: [PATCH] Update 06-data-visualization.Rmd changed `geom_point` to `geom_line` as this example needs to use a different geom from the previous example to illustrate the point --- episodes/06-data-visualization.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/06-data-visualization.Rmd b/episodes/06-data-visualization.Rmd index 37db05815..f4a998ffb 100644 --- a/episodes/06-data-visualization.Rmd +++ b/episodes/06-data-visualization.Rmd @@ -193,7 +193,7 @@ Notice that we can change the geom layer and colors will be still determined by ```{r color-by-sample-2, purl=FALSE} ggplot(data = variants, aes(x = POS, y = DP, color = sample_id)) + - geom_point(alpha = 0.5) + geom_line(alpha = 0.5) ``` To make our plot more readable, we can add axis labels: