Hello to al,
Do someone know how to get the CDF And Quantile Functions for a Student distribution.
I already looked here:
http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000208980.htm
Best Regards
Wouldn't combining those functions, using the t distribution, provide what you want?
Art, CEO, AnalystFinder.com
Wouldn't combining those functions, using the t distribution, provide what you want?
Art, CEO, AnalystFinder.com
The CDF and QUANTILE functions support the Student t distribution. The doc shows "T" as a valid distribution.
data Want;
df = 11;
do x = -3 to 3 by 0.1;
pdf = pdf("T", x, df);
cdf = cdf("T", x, df);
q = quantile("T", cdf, df);
output;
end;
run;
title "PDF and CDF for t(df=11) distribution";
proc sgplot data=want;
series x=x y=pdf;
series x=x y=cdf;
run;
title "Quantile function for t(df=11) distribution";
proc sgplot data=want;
series x=cdf y=q;
run;
Yes absolutly, both work very well with the t distribution. Thanks so much to all.
Thank you Dr Rick W. for this very clear example.
B Regards
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.