Skip to content
Prev 361195 / 398506 Next

subset data right

Hello,

Don't use subset, use indexing.

subdf <- df[df$quant %in% "VeryFast", ]

By the way, instead of %in% you can use ==, since you're interested in  
just one value of quant.

Hope this helps,

Rui Barradas

Citando ch.elahe via R-help <r-help at r-project.org>:
?