Learn R Programming

qdap (version 2.2.1)

NAer: Replace Missing Values (NA)

Description

Replace missing values (NA) in a vector or dataframe.

Usage

NAer(x, replace = 0)

Arguments

x
A vector or dataframe with missing values (NA).
replace
The value to replace missing values (NA) with.

Value

  • Returns a vector or dataframe with missing values replaced.

Examples

Run this code
set.seed(10)
(x <- sample(c(rep(NA, 4), 1:10), 20, rep=T))
NAer(x)

set.seed(10)
(y <- data.frame(matrix(x, 5, 4))                           )
NAer(y)
NAer(y, "MISSING")

Run the code above in your browser using DataLab