NA
Table of Contents
Overview
- Stands for Not Available
- Most functions have
na.rm
parameter that excludesNA
when it'sTRUE
Remove NA
values howto
- To create a new dataframe without
NA
, usena.omit(dataframe)
. - Most functions working with vectors have
na.rm
boolean parameter. - When
na.rm
isTRUE
, the functions filterNA
- Otherwise,
d <- d[!is.na(d)]