You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/viz.Rmd
+1-20Lines changed: 1 addition & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -282,33 +282,14 @@ There are a few basic aspects of a plot that we need to specify:
282
282
- To create a geometric object, we use a `geom_*` function (see the [ggplot reference](https://ggplot2.tidyverse.org/reference/) for a list of geometric objects).
283
283
- Here, we use the `geom_point` function to visualize our data as a scatter plot.
284
284
285
-
Figure \@ref(fig:03-ggplot-function-scatter)
286
-
shows how each of these aspects map to code
287
-
for creating a basic scatter plot of the `co2_df` data.
288
-
Note that we could pass many other possible arguments to the aesthetic mapping
289
-
and geometric object to change how the plot looks. For the purposes of quickly
290
-
testing things out to see what they look like, though, we can just start with the
291
-
default settings.
292
-
\index{ggplot!aes}
293
-
\index{ggplot!geom\_point}
294
-
295
-
(ref:03-ggplot-function-scatter) Creating a scatter plot with the `ggplot` function.
0 commit comments