Hi, I used command
y<-DGEList(data, genes = genes, group=diagroup, remove.zeros = T)
to filter zero counts and then used two filtering aproach
keep<-rowSums(y$counts) >500
gave ![enter image description here][1] [1]: https://ibb.co/kSk0nc and second approach
keep<-rowSums(cpm>1)>=3
gave figure ![enter image description here][1] [1]: https://ibb.co/e6ymSc
which one should I use before proceeding to downstream analysis Additional information : minimum lib.size is 1768648 while maximum is 5856985
Thanks