0byt3m1n1
Path:
C:
/
Users
/
Administrator
/
SYSTAT
/
SYSTAT_13
/
Gallery
/
[
Home
]
File: ANOVA Interaction Plot.syc
REM This item was created using AFIFI, with SYSINCR as the response, DISEASE as the first factor, and DRUG as the second factor. TOKEN TOKEN &message / TYPE = MESSAGE PROMPT = 'This item creates plots, corresponding to the two-way ANOVA interaction Quick, Graphs. You must identify the continuous response, variable and two categorical independent variables. , Upon completion, the data file in use contains the, original data and ANOVA diagnostic statistics.' TOKEN &resp / TYPE = NVARIABLE PROMPT = 'Select a continuous response, variable.' IMMEDIATE TOKEN &fact1 / TYPE = VARIABLE PROMPT = 'Select the first categorical, factor.' TOKEN &fact2 / TYPE = VARIABLE PROMPT = 'Select the second categorical, factor.' TOKEN &outfile / TYPE = SAVE PROMPT = 'Save Output File' OUTPUT / NOSCREEN PUSH GRAPH GRAPH NONE ANOVA SUBCAT &fact1 &fact2 DEPEND &resp WORK &outfile / RESID DATA ESTIMATE OUTPUT USE &outfile / NONAMES CATEGORY &fact1 &fact2 DOT &resp * &fact1 / GROUP = &fact2 LINE ERROR = sepred TITLE = 'Least, Squares Means' CATEGORY &fact1 &fact2 / OFF POP GRAPH TOKEN