I'm looking to finish my dissertation and the last of my analysis requires ANOVA with weighted data. I also need to get a mean score value. Can you use the same code as used for a t test to get ANOVA data? Right now, I have use this (example) for the t test. I'm using SAS v9.3. proc surveymeans data=XXXX t; class vary varx; *categorical variables; weight weightvar; var vary varx; run; If this is the correct code, then how do I get the mean score value? Am I doing this correctly? Any advice would be greatly appreciated!
... View more