This is definitely a basic question, but I can't seem to find a straight answer online. I am running DGE through R Studio and just calculated my normalization values, however, I have 12 lines of samples the the "e" command is only showing me 5 rows. What command can I use to few the last 7 rows of my $sample data?
What is the "e" command in R? In R Studio, in the Environment, you can click on the square to the right of your data to view all of it. Alternatively, you can simply type the name of your sample data in the console and hit ENTER.
There is no e command in base R. However, if your data is in an object with a $samples slot, chances are, that part of it is a dataframe. For instance, in edgeR if you have a DGEList object called y, the samples are stored in a dataframe called y$samples. To see all of them you can use indexes to specify the rows, or accessor functions like head() or tail().
What is the "e" command in R? In R Studio, in the Environment, you can click on the square to the right of your data to view all of it. Alternatively, you can simply type the name of your sample data in the console and hit ENTER.