From 2b5b238b5d1b99803791836c7d18f3853b7e6966 Mon Sep 17 00:00:00 2001 From: Stephen Balogun <77954949+stephenbalogun@users.noreply.github.com> Date: Tue, 17 Jan 2023 14:35:34 +0100 Subject: [PATCH] Update data-transform.qmd (#1231) Line 206. Changed "you'll want to the distinct..." to "you'll want the distinct..." --- data-transform.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-transform.qmd b/data-transform.qmd index 4caccf8..a0c6b28 100644 --- a/data-transform.qmd +++ b/data-transform.qmd @@ -203,7 +203,7 @@ flights |> ### `distinct()` `distinct()` finds all the unique rows in a dataset, so in a technical sense, it primarily operates on the rows. -Most of the time, however, you'll want to the distinct combination of some variables, so you can also optionally supply column names: +Most of the time, however, you'll want the distinct combination of some variables, so you can also optionally supply column names: ```{r} # This would remove any duplicate rows if there were any