impute: Replace Missing Values

Description Usage Arguments Value Author(s) Examples

Description

Replaces missing values of a matrix or dataframe with the medians (what="median") or means (what="mean") of the respective columns.

Usage

1
impute(x, what = c("median", "mean"))

Arguments

x

A matrix or dataframe.

what

What to impute.

Value

A matrix or dataframe.

Author(s)

Friedrich Leisch

Examples

1
2
3
4
x<- matrix(1:10, ncol=2)
x[c(1,3,7)] <- NA
print(x)
print(impute(x))

molnplus/DasProjekt-e1071 documentation built on May 23, 2019, 6:06 a.m.