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