Entering edit mode
I now have an expression profile of an organ at various developmental time periods, such as 3 replicates in the first week, 5 replicates in the second week, 4 replicates in the third week, and 5 replicates in the fourth week, without any experimental controls. How can I use masigpro to make an experimental design.
such
make a single series edesign
Time <- rep(c(1,5,10,24), each = 3) Replicates <- rep(c(1:4), each = 3) Group <- rep(1,12) ss.edesign <- cbind(Time,Replicates,Group) rownames(ss.edesign) <- paste("Array", c(1:12), sep = "")