The math behind distribution tables is complicated. Does SAS University Edition provide the means to calculate such values without specifying all the mathematical details in a program.
For example calculate the critical value or Inverse Cumulative Probability for F distribution (for 2-Way ANOVA) given Numerator degrees of freedom = xx, Denominator degrees of freedom = xx, alpha = 0.05 (input constant = 0.95). Can you point me to a code example?
thanks,
Alexim
Check the functions under the probability section:
@alexim wrote:
The math behind distribution tables is complicated. Does SAS University Edition provide the means to calculate such values without specifying all the mathematical details in a program.
For example calculate the critical value or Inverse Cumulative Probability for F distribution (for 2-Way ANOVA) given Numerator degrees of freedom = xx, Denominator degrees of freedom = xx, alpha = 0.05 (input constant = 0.95). Can you point me to a code example?
thanks,
Alexim
Check the functions under the probability section:
@alexim wrote:
The math behind distribution tables is complicated. Does SAS University Edition provide the means to calculate such values without specifying all the mathematical details in a program.
For example calculate the critical value or Inverse Cumulative Probability for F distribution (for 2-Way ANOVA) given Numerator degrees of freedom = xx, Denominator degrees of freedom = xx, alpha = 0.05 (input constant = 0.95). Can you point me to a code example?
thanks,
Alexim
Thanks, haven't found exactly what I'm looking for but you've got me headed in the right direction I believe.
Alexim
You want the Quantile function then 🙂
data demo;
CriticalValueNormal = quantile('Normal', 0.025);
CriticalValueF = quantile('F', 0.025, 2, 3);
run;
proc print data=demo;
run;
https://communities.sas.com/t5/General-SAS-Programming/alpha-and-z-value/td-p/254023
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.