I have a data set U1 over which I run a classifier and get a vector of labels
pred.U1.nb.c <- predict(NB.C, U1[,2:6])
table(pred.U1.nb.c)
pred.U1.nb.c
S unlabeled
148 5852
> head(pred.U1.nb.c)
[1] S S S S S S
Levels: S unlabeled
Now I want to pull out those rows of U1 which were classified as S in U1.S. What is the most efficient way to do this?