Permanently delete rows from a dataset
dropRows(dataset, expr)
dataset | a |
---|---|
expr | a |
dataset
without the rows indicated by expr
exclusion for a non-destructive way to suppress rows
if (FALSE) { ds <- dropRows(ds, ds$gender == "Male") }