Changes to logicals.qmd (#1234)

* Update EDA.qmd

Using the "size" argument prints the warning: "#> Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
#> ℹ Please use `linewidth` instead."

* Update communication.qmd

Line 844: added *to* to the sentence "It is generally more useful if you want to *expand* the limits..."

Line 1101: changed the legend. Position argument to "top" to align with the statement on line 1053.

* Update logicals.qmd

because "x" does not have any value > 3, both evaluations above are not TRUE. Either the second expression use "x > 2" or "x >= 3".
This commit is contained in:
Stephen Balogun 2023-01-21 19:31:59 +01:00 committed by GitHub
parent a7815c9220
commit a3b40d8dd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ And note that if multiple conditions match, only the first will be used:
```{r}
case_when(
x > 0 ~ "+ve",
x > 3 ~ "big"
x > 2 ~ "big"
)
```