remove_singleton_columns {mikropml} | R Documentation |
Remove columns appearing in only threshold
row(s) or fewer.
Description
Removes columns which only have non-zero & non-NA values in threshold
row(s) or fewer.
Usage
remove_singleton_columns(dat, threshold = 1)
Arguments
dat |
dataframe |
threshold |
Number of rows. If a column only has non-zero & non-NA values
in |
Value
dataframe without singleton columns
Author(s)
Kelly Sovacool, sovacool@umich.edu
Courtney Armour
Examples
remove_singleton_columns(data.frame(a = 1:3, b = c(0, 1, 0), c = 4:6))
remove_singleton_columns(data.frame(a = 1:3, b = c(0, 1, 0), c = 4:6), threshold = 0)
remove_singleton_columns(data.frame(a = 1:3, b = c(0, 1, NA), c = 4:6))
remove_singleton_columns(data.frame(a = 1:3, b = c(1, 1, 1), c = 4:6))
[Package mikropml version 1.6.1 Index]