statistics interpret data
data newyorkeducationalachievement;
input Race LessThanHighSchool HighSchoolOrEquiv SomeCollegeOrAssociates BachelorsOrHigher;
datalines;
1 11.072 28.205 24.961 35.762
2 19.753 31.041 28.632 20.574
3 24.105 30.372 29.189 16.334
4 22.013 17.874 14.312 45.802
6 38.936 28.134 19.999 12.931
7 20.738 24.126 25.859 29.276
8 35.226 27.387 21.495 15.893
;
run;
symbol v=none i=box00f co=black cv=black bwidth=2;
TITLE 'Less Than High School by Race';
PROC gplot DATA=newyorkeducationalachievement;
plot LessThanHighSchool*Race;
run;
symbol v=none i=box00f co=black cv=black bwidth=2;
TITLE 'High School or Equivalent by Race';
PROC gplot DATA=newyorkeducationalachievement;
plot HighSchoolOrEquiv*Race;
run;
symbol v=none i=box00f co=black cv=black bwidth=2;
TITLE 'Some College or Associates by Race';
PROC gplot DATA=newyorkeducationalachievement;
plot SomeCollegeOrAssociates*Race;
run;
symbol v=none i=box00f co=black cv=black bwidth=2;
TITLE 'Bachlors or Higher by Race';
PROC gplot DATA=newyorkeducationalachievement;
plot BachelorsOrHigher*Race;
run;
proc univariate data=newyorkeducationalachievement;
var LessThanHighSchool HighSchoolOrEquiv SomeCollegeOrAssociates BachelorsOrHigher;
run;
PROC REG DATA = newyorkeducationalachievement;
TITLE "Data Stats";
MODEL Race = LessThanHighSchool;
run;
PROC REG DATA = newyorkeducationalachievement;
TITLE "Data Stats";
MODEL Race = HighSchoolOrEquiv;
run;
PROC REG DATA = newyorkeducationalachievement;
TITLE "Data Stats";
MODEL Race = SomeCollegeOrAssociates;
run;
PROC REG DATA = newyorkeducationalachievement;
TITLE "Data Stats";
MODEL Race = BachelorsOrHigher;
run;