I'm still struggling with the EffectPlot procedure. I would like to graph the probability of getting treated (y-axis) per year (x-axis) with 95% confidence interval.
ODS GRAPHICS ON;
proclogistic data=data descending;
class year;
model treated=year;
effectplot slicefit(x=year)/noobs;
run;
ODS GRAPHICS Off;
I get the following error message:
ERROR: The X= variable must be a continuous variable used in the model.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.