Removes rows/columns in an array-like object using a predicate function.
Usage
discard(x, ...)
discard_columns(x, ...)
discard_rows(x, ...)
# S4 method for class 'ANY'
discard(
x,
f,
margin = 1,
negate = FALSE,
all = FALSE,
na.rm = FALSE,
verbose = getOption("arkhe.verbose"),
...
)
# S4 method for class 'ANY'
discard_rows(
x,
f,
negate = FALSE,
all = FALSE,
na.rm = FALSE,
verbose = getOption("arkhe.verbose"),
...
)
# S4 method for class 'ANY'
discard_columns(
x,
f,
negate = FALSE,
all = FALSE,
na.rm = FALSE,
verbose = getOption("arkhe.verbose"),
...
)Arguments
- x
An R object (should be a
matrixor adata.frame).- ...
Further arguments to be passed to
f.- f
A predicate
function.- margin
A length-one
numericvector giving the subscripts which the function will be applied over (1indicates rows,2indicates columns).- negate
A
logicalscalar: should the negation offbe used instead off?- all
A
logicalscalar. IfTRUE, only the rows/columns whose values all meet the condition defined byfare considered. IfFALSE(the default), only rows/columns where at least one value validates the condition defined byfare considered.- na.rm
A
logicalscalar: shouldNAvalues be stripped before the computation proceeds?- verbose
A
logicalscalar: should R report extra information on progress?
See also
Other data preparation tools:
append_column(),
append_rownames(),
assign(),
compact(),
count(),
detect(),
get(),
keep(),
seek()
Examples
## Create a data matrix
X <- matrix(sample(1:10, 25, TRUE), nrow = 5, ncol = 5)
## Add NA
k <- sample(1:25, 3, FALSE)
X[k] <- NA
X
#> [,1] [,2] [,3] [,4] [,5]
#> [1,] NA 5 6 6 NA
#> [2,] 9 6 4 1 3
#> [3,] NA 1 6 4 3
#> [4,] 10 5 8 4 5
#> [5,] 9 4 2 7 2
## Remove row with any NA
discard(X, f = is.na, margin = 1, all = FALSE)
#> [,1] [,2] [,3] [,4] [,5]
#> [1,] 9 6 4 1 3
#> [2,] 10 5 8 4 5
#> [3,] 9 4 2 7 2
## Remove column with any NA
discard(X, f = is.na, margin = 2, all = FALSE)
#> [,1] [,2] [,3]
#> [1,] 5 6 6
#> [2,] 6 4 1
#> [3,] 1 6 4
#> [4,] 5 8 4
#> [5,] 4 2 7
