I have the following data frame:
df <- structure(list(BoneMarrow = c(30, 0, 0, 31138, 2703), Pulmonar
How about try this by using base R Boolean
df[rowSums(df>8)==dim(df)[2],] BoneMarrow Pulmonary ATP1B1 30 3380 PRR11 2703 27
EDIT1: Or you can do df[!rowSums(df<8),] (as per @user20650) will give back you same result.
df[!rowSums(df<8),]