From a8a6d1bfbd35e90e9e878dd7c0fc6b0dd8b7fd8f Mon Sep 17 00:00:00 2001 From: Mine Cetinkaya-Rundel Date: Wed, 24 May 2023 13:12:36 -0500 Subject: [PATCH] Clarify what +ve and -ve are, closes #1496 --- logicals.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logicals.qmd b/logicals.qmd index e778322..3fe5151 100644 --- a/logicals.qmd +++ b/logicals.qmd @@ -426,7 +426,7 @@ You'll always use the first three argument of `if_else()`. The first argument, ` [^logicals-4]: dplyr's `if_else()` is very similar to base R's `ifelse()`. There are two main advantages of `if_else()`over `ifelse()`: you can choose what should happen to missing values, and `if_else()` is much more likely to give you a meaningful error if your variables have incompatible types. -Let's begin with a simple example of labeling a numeric vector as either "+ve" or "-ve": +Let's begin with a simple example of labeling a numeric vector as either "+ve" (positive) or "-ve" (negative): ```{r} x <- c(-3:3, NA)