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