SAS Enterprise P-value and percentiles

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?

+4
source share
3 answers

When you open a dataset in SAS, the "Analysis" button appears at the top. It has some built-in functions, although they are slightly more advanced than calculating p values.

0
source

EG, , , PROMPTS.

, -, . , , , .

re prompts

,

0

(File/New/Data) . / . " ", , , (CINV, PROBBNML ), .

It is better to use only one set of data on functions, but you can show the result for different parameter values ​​that may be of interest to your students.

0
source

All Articles