filter {perturbatr} | R Documentation |
Takes a perturbation data set and filters the rows by some criterion. The filtered object will have the same type as the previous object.
filter(obj, ...)
obj |
the object to be filtered |
... |
variable number of logical predicates in terms of the column
names in |
returns an object of the same type filtered by some criteria
data(rnaiscreen) flt.dat <- filter(rnaiscreen, Condition=="V1") flt.dat <- filter(rnaiscreen, Condition=="V1", RowIdx==1)