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:
parent
a7815c9220
commit
a3b40d8dd8
|
@ -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"
|
||||
)
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue