how can i see all rows of the table

$AveLogCPM
[1] 7.3141052 5.4215261 4.6065015 -0.1639583 -2.4712009
32223 more elements ...

$table
logFC logCPM LR PValue
LOC109800275 1.0352203 7.3141052 2.5055326 0.113447124
LOC109800242 -0.4206668 5.4215261 0.4150096 0.519437725
LOC109796614 -1.9571650 4.6065015 8.2213064 0.004140139
LOC109795854 -3.9469827 -0.1639583 10.2132948 0.001394319
LOC109795875 0.0000000 -2.4712009 0.0000000 1.000000000
32223 more rows ...

$comparison
[1] "groupTTR"

$df.test
[1] 1 1 1 1 1
32223 more elements ...

I am not sure there is any really easy way but it looks like you have a list there and
AveLogCPM
table
comparison
df.test

are data.frames in the list. If we call the list
"listname" , then something ike

listname[[1]] should print the first 4 or 5 hundred rows of AveLogCPM.

liistname[[2]] should do the same for table and so on....

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.