dropRows {crunch} | R Documentation |
Permanently delete rows from a dataset
Description
Permanently delete rows from a dataset
Usage
dropRows(dataset, expr)
Arguments
dataset |
a |
expr |
a |
Value
dataset
without the rows indicated by expr
See Also
exclusion for a non-destructive way to suppress rows
Examples
## Not run:
ds <- dropRows(ds, ds$gender == "Male")
## End(Not run)
[Package crunch version 1.30.4 Index]