From 63cbf8a90d8c284a694f57e46e33662b6462e21d Mon Sep 17 00:00:00 2001 From: Jonathan Kitt Date: Wed, 1 Mar 2023 21:04:54 +0100 Subject: [PATCH] Fixed typos (#1307) Fixed typos in figure explanation : top/middle/bottom rather than left/middle/right, due to the display of figures in the text. --- layers.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layers.qmd b/layers.qmd index b1771a3..fa0882a 100644 --- a/layers.qmd +++ b/layers.qmd @@ -397,7 +397,7 @@ For example, the histogram and density plot below reveal that the distribution o #| Three plots: histogram, density plot, and box plot of highway #| mileage. -# Left +# Top ggplot(mpg, aes(x = hwy)) + geom_histogram(binwidth = 2) @@ -405,7 +405,7 @@ ggplot(mpg, aes(x = hwy)) + ggplot(mpg, aes(x = hwy)) + geom_density() -# Right +# Bottom ggplot(mpg, aes(x = hwy)) + geom_boxplot() ```