From b2eb3a567a9afbd6b633c6754ada3ab7a361dd2b Mon Sep 17 00:00:00 2001 From: Zeki Akyol <40212849+zekiakyol@users.noreply.github.com> Date: Sun, 25 Dec 2022 19:23:42 +0300 Subject: [PATCH] Fix plaintext typos (#1196) --- iteration.qmd | 2 +- joins.qmd | 2 +- workflow-pipes.qmd | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/iteration.qmd b/iteration.qmd index 190af78..5f4e0ad 100644 --- a/iteration.qmd +++ b/iteration.qmd @@ -687,7 +687,7 @@ Now when you come back to this problem in the future, you can read in a single c unlink("gapminder.csv") ``` -If you're working in a project, we'd suggest calling the file that does this sort of data prep work something like `0-cleanup.R.` The `0` in the file name suggests that this should be run before anything else. +If you're working in a project, we'd suggest calling the file that does this sort of data prep work something like `0-cleanup.R`. The `0` in the file name suggests that this should be run before anything else. If your input data files change over time, you might consider learning a tool like [targets](https://docs.ropensci.org/targets/) to set up your data cleaning code to automatically re-run whenever one of the input files is modified. diff --git a/joins.qmd b/joins.qmd index c47f542..392bc6c 100644 --- a/joins.qmd +++ b/joins.qmd @@ -79,7 +79,7 @@ For example: - `flights$tailnum` is a foreign key that corresponds to the primary key `planes$tailnum`. - `flights$carrier` is a foreign key that corresponds to the primary key `airlines$carrier`. - `flights$origin` is a foreign key that corresponds to the primary key `airports$faa`. -- `flights$dest` is a foreign key that corresponds to the primary key `airports$faa` . +- `flights$dest` is a foreign key that corresponds to the primary key `airports$faa`. - `flights$origin`-`flights$time_hour` is a compound foreign key that corresponds to the compound primary key `weather$origin`-`weather$time_hour`. These relationships are summarized visually in @fig-flights-relationships. diff --git a/workflow-pipes.qmd b/workflow-pipes.qmd index 6af4505..122eac9 100644 --- a/workflow-pipes.qmd +++ b/workflow-pipes.qmd @@ -1,4 +1,4 @@ -# Workflow: Pipes {#sec-workflow-pipes} +# Workflow: pipes {#sec-workflow-pipes} ```{r} #| results: "asis"