This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Design matrix for maSigPro library

edesign matrix fro masig pro

I would like to create a design matrix as such i made it but it seems the rows which should contain my time-point is being read as column in the matrix .Any suggestion how to create that matrix.I m making a csv file and read it in R but it seems its not the right way..

rna-seq r

The replicate column is wrong too. Shouldn't it be 1,2,3,1,2,3...instead of 1,1,1,2,2,2...?

i dont know its in the masigpro library data...inbuit data.

1 answer

You can input the file into R like

x = as.matrix( data.frame( file, ..., row.names=1, ... )

In the R command line you can write

?data.frame

for more detail.

Log in to answer this question.