From 35d464049f7851cce9698f853a8608e74ad7072a Mon Sep 17 00:00:00 2001 From: "Etienne B. Racine" Date: Tue, 9 Aug 2016 12:15:37 -0400 Subject: [PATCH] Not applicables -> Not availables (#242) I think it's more accurate. ref.: (https://stat.ethz.ch/R-manual/R-devel/library/base/html/NA.html) --- transform.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transform.Rmd b/transform.Rmd index 5f439e5..488d5ae 100644 --- a/transform.Rmd +++ b/transform.Rmd @@ -145,7 +145,7 @@ Whenever you start using complicated, multipart expressions in `filter()`, consi ### Missing values -One important feature of R that can make comparison tricky are missing values, or `NA`s ("not applicables"). `NA` represents an unknown value so missing values are "contagious": almost any operation involving an unknown value will also be unknown. +One important feature of R that can make comparison tricky are missing values, or `NA`s ("not availables"). `NA` represents an unknown value so missing values are "contagious": almost any operation involving an unknown value will also be unknown. ```{r} NA > 5