I've got many dataframes I have to filter by ordinal likert-scaled variables. Instead of selecting them by x == "Strongly disagree" | x == "Disagree"
and so on, I would like to select them by x < 3
. How can I do that?
xl <- sample(1:5, 20, replace = T)
x <- factor(xl,labels=c("Strongly disagree","Disagree","Neither agree nor disagree","Agree", "Strongly agree"),ordered=TRUE)
y<-sample(2:40,20)
z<-data.frame(x,y)
a<-subset(z,x == "Strongly disagree" | x == "Disagree")
a
thanks
Ordered factors know that they're orderd, so all you need is:
etc