Description Usage Arguments Examples
Fill missing values in a column with the mean of the column
1 | meanImpute(x)
|
x |
a data frame or matrix where each row represents a different record |
1 2 3 4 | x = matrix(rnorm(100),10,10)
x.missing = x > 1
x[x.missing] = NA
meanImpute(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.