Thank you for the potential help.
I have a very long list of genes that I would like to run an ANOVA on. I am running a blocked ANOVA using the GLM command.
That was the was the easy part.
proc glm data=SamP.Expression;
by gene;
class block conc;
model exp= block conc;
run;
I can look through this list, and find the p-value for each gene to see if it is changed due to treatment conditions (conc). Is it possible to make a list of each gene and this p-value?
Thank you again, let me know if there is anything I can do.
Dez