why can't I subset data that have values from -9998 to 1000. I want to subset the data with only values greater than 0. I used the following code:
ECC1<-subset(ECC, value > 0, select = c (sensor, value))
The error says: In Ops.factor(value, 0): > not meaningful for factor.
Any clue...