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)
This commit is contained in:
Etienne B. Racine 2016-08-09 12:15:37 -04:00 committed by Hadley Wickham
parent 6af658f1b6
commit 35d464049f
1 changed files with 1 additions and 1 deletions

View File

@ -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