qdap (version 2.4.3)

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
# NOT RUN {
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