Thanks for the tips, I use the filter function and the range you suggested and I got what I needed. thanks again.
filter (Foldchage> 0.75 | Foldchage < 1.25)
hello everyone
I'm working on an RNA-SEQ analysis and I want to select the genes that have a fold change between 1.25 and 0.75 from a data.frame, this it locates the genes in the rows and the statistics in the columns, so the data I want get are from the same column.
How can I do this?
thank you
Since you said
a fold change between 1.25 and 0.75
I think your command should be
select (Foldchage> 0.75 | Foldchage < 1.25)
Does that help?
I added code markup to your post for increased readability. You can do this by selecting the text and clicking the 101010 button. When you compose or edit a post that button is in your toolbar, see image below:

Thanks for the tips, I use the filter function and the range you suggested and I got what I needed. thanks again.
filter (Foldchage> 0.75 | Foldchage < 1.25)
Log in to answer this question.
It would be useful to show us how your dataframe looks like. But this looks like a standard R dataframe slicing question, so googling will give you some ideas.
dear, my data.frame looks like this, I have searched how to do the selection of the genes that have a range of Fold Chage, but when I observe the data.frame filtered they are not what I want.
I used this command