Hi, people.
Well, I've been trying to replicate a code I made on the work computer in my notebook. At some point, I do data filtering with dplyr
using the "<"
and ">"
signs. When I made the code on my notebook, the filtering did not work, it picks up all the values. The data looks like this:
The code looks like this:
pilo12h<-piloexpression %>% select(GeneSymbol,FC12h,QV12h) %>% filter(FC12h>1.5 , QV12h< 0.01)
The problem is that it is selecting from QV12h greater than 0.01, and I want only the smaller ones, which are significant for me. I use this same code on my work computer, and it works perfectly.