tableMiss | R Documentation |
Create a reactable
table that highlights missing values and imputed values
with the same colors as histMiss()
tableMiss(x, delimiter = "_imp")
x |
a vector, matrix or |
delimiter |
a character-vector to distinguish between variables and
imputation-indices for imputed variables (therefore, |
data(tao) x_IMPUTED <- kNN(tao[, c("Air.Temp", "Humidity")]) tableMiss(x_IMPUTED[105:114, ]) x_IMPUTED[106, 2] <- NA x_IMPUTED[105, 1] <- NA x_IMPUTED[107, "Humidity_imp"] <- TRUE tableMiss(x_IMPUTED[105:114, ])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.