rmrow.folder {dad} | R Documentation |
Remove rows in all elements of a folder
Description
Remove some rows in all data frames of a folder.
Usage
rmrow.folder(object, name)
Arguments
object |
object of class |
name |
character vector. The names of the rows to be removed in each data frame of the folder. |
Value
A folder with the same number of elements as object
. Its k^{th}
element is a data frame, and its rows are the rows of object[[k]]
, except those given by name
.
Author(s)
Rachid Boumaza, Pierre Santagostini, Smail Yousfi, Gilles Hunault, Sabine Demotes-Mainard
See Also
folder
: object of class folder
.
getrow.folder
: select rows in all elements of a folder.
getcol.folder
: select columns in all elements of a folder.
rmcol.folder
: remove columns in all elements of a folder.
Examples
data(iris)
iris.fold <- as.folder(iris, "Species")
rmrow.folder(iris.fold, as.character(seq(1, 150, by = 2)))
[Package dad version 4.1.2 Index]