I am considering teaching my introductory statistics course in the SAS Enterprise Guide. I want my students to be able to calculate p-values ββand percentiles for different distributions (binomial, normal, t, chi-square) with drop-down menus, if at all possible. For example, is there a way to do both:
DATA pval;
pval=1-PROBBNML(0.5,25,15);
RUN;
PROC PRINT DATA=pval;
RUN;
and
DATA chi;
qchi=CINV(0.95,4);
RUN;
PROC PRINT DATA=chi;
RUN;
through the dropdown menus?
source
share