hey, I in my dataset i have one column with factor variables, "no" and "yes" i wuld like to create new dataset only with rows containg "no" option.
I was trying this:
data_with_only_no<-data[data$column!="yes",]
but nothing changed, no rows have been removed