The SAS homework is as follows.
A researcher was interested in comparing three methods of dropout prevention in at-risk high school students: a structured work-study program, a peer-buddy program, and teacher mentoring program. Thirty at-risk students were randomly assigned to each of these three treatments at the beginning of their sophomore year. At the end of the year, the researcher noted how many students were still enrolled in school and how many appeared to have dropped out. These are the data that were obtained:
| End of Year Status | |
Program | Still Enrolled | Not Enrolled |
Work-Study | 11 | 19 |
Peer Buddy | 16 | 14 |
Teacher Mentor | 20 | 10 |
What am I doing wrong in SAS?
input program $ persist dropout $;
datalines;
study 11 19
buddy 16 14
mentor 20 10
;
run;
proc anova data=case1;
class program;
model persistence dropout = program;
means / tukey;
run;
It sounds you need Cochran-Armitage Trend Test of PROC FREQ .
It sounds you need Cochran-Armitage Trend Test of PROC FREQ .
SAS one way ANOVA is not completely solved.
The proc freq idea only deals with the procedure. It does not expain why the input codes are not being accepted by SAS.
SAS one way ANOVA is not completely solved. The input data is providing many errors
Your data should look like this :
data have;
input program $ persist dropout ;
datalines;
study 11 19
buddy 16 14
mentor 20 10
;
run;
And Trend Test is for the ordinal variable , but your PROGRAM is nominal variable, so change their position for different Trend Test.
But I think the original order in your data is looking good .
TTest is testing the mean between two level(group), But your data doesn't have one group variable, it looks like a Contingecy Table .
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.