Skip to content

Commit edde2c1

Browse files
committed
Minor updates
1 parent 2ce24d0 commit edde2c1

File tree

9 files changed

+949
-7
lines changed

9 files changed

+949
-7
lines changed

_freeze/posts/10-joining-data-in-r/index/execute-results/html.json

Lines changed: 3 additions & 2 deletions
Large diffs are not rendered by default.

_freeze/posts/13-ggplot2-plotting-system-part-2/index/execute-results/html.json

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.
2.44 KB
Loading
443 Bytes
Loading
8.81 KB
Loading
5.68 KB
Loading

_freeze/site_libs/plotly-binding-4.11.0/plotly.js

Lines changed: 941 additions & 0 deletions
Large diffs are not rendered by default.

posts/10-joining-data-in-r/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ To work with relational data you **need verbs that work with pairs of tables**.
7171
There are three families of verbs designed to work with relational data:
7272

7373
- [**Mutating joins**](https://r4ds.had.co.nz/relational-data.html#mutating-joins): A mutating join allows you to **combine variables from two tables**. It first matches observations by their keys, then copies across variables from one table to the other on the right side of the table (similar to `mutate()`). We will discuss a few of these below.
74-
- See @sec-mutjoins for Table of mutating joins.
74+
- See @sec-mutjoins for a table of mutating joins.
7575
- [**Filtering joins**](https://r4ds.had.co.nz/relational-data.html#filtering-joins): Filtering joins **match observations** in the same way as mutating joins, **but affect the observations, not the variables** (i.e. filter observations from one data frame based on whether or not they match an observation in the other).
7676
- Two types: `semi_join(x, y)` and `anti_join(x, y)`.
7777
- [**Set operations**](https://r4ds.had.co.nz/relational-data.html#set-operations): Treat **observations as if they were set elements**. Typically used less frequently, but occasionally useful when you want to break a single complex filter into simpler pieces. All these operations work with a complete row, comparing the values of every variable. These expect the x and y inputs to have the same variables, and treat the observations like sets:

posts/13-ggplot2-plotting-system-part-2/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ knitr::include_graphics("https://allisonhorst.github.io/palmerpenguins/reference
236236
\[**Source**: [Artwork by Allison Horst](https://github.com/allisonhorst/stats-illustrations)\]
237237

238238
```{r}
239-
library(palmerpenguins)
239+
library("palmerpenguins")
240240
```
241241

242242
```{r}

0 commit comments

Comments
 (0)