I have a atomic vector and want to filter out all the rows that scores above 20%.
The data looks as follows:
Gain
ch1_500001 0.0000000
ch1_1500001 0.0000000
ch1_2500001 0.3157895
ch1_3500001 0.1578947
ch1_4500001 0.1578947
ch1_5500001 0.1578947
So i want ch1_2500001 to be selected.
I’ve tried several options:
freqsnormg<- freqsnorm==0.20 gives only FALSE
freqsnormg<- freqsnorm[,1]==0.20 gives only FALSE
How to get a new table that holds only the values above the 20%. And do not changes the values in a logical.
To see the values above 20%
to see the values below 20%