Hi everyone,
I have calculated each column of the ANOVA table for the factorial design I have been working at. Now I need to combine them together to have the full ANOVA table:
I would like to define ANOVA to equal the concatenation of the Degrees of Freedom, Sum of Squares, Mean Square, F-ratio, P-value with a column of (the main factors and interaction between factors given in character variables):
ANOVA = Factors || DF || SS || MS || Fratio || Pvalue ; print ANOVA;
However, because the factors are in character variable rather than numerical its given me the following error:
ERROR: All specified variables must be the same type.
So I changed it to the following. I was able to adjust the format of specific columns which is even better. However with the method below I cant label the graph as ANOVA !!.
print Factors || DF SS MS[format=10.03] Fratio[format=10.03] Pvalue[format=10.03];
Can anyone help?
THanks,
DJ
... View more