Entering edit mode
mark salsburg
▴
30
@mark-salsburg-1360
Last seen 10.2 years ago
> ok I created a matrix C with
>
> A B D A1 B1 D1
> ..................................
> .................................
>
> the columns contain the gene expression values for tissues...
>
> I ran the following t.test:
>
> apply(C, 1, function(x) t.test( x[1:3], x[4,6] )$p.value )
>
> which outputs out 16063 pvalues (the number of rows)
>
> I just want to output 3 pvalues showing if A's column is different
from A1 etc..
>
> any help would be great.. thank you..
>