BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Wouldn't combining those functions, using the t distribution, provide what you want?

 

Art, CEO, AnalystFinder.com

 

View solution in original post

3 REPLIES 3
art297
Opal | Level 21

Wouldn't combining those functions, using the t distribution, provide what you want?

 

Art, CEO, AnalystFinder.com

 

Rick_SAS
SAS Super FREQ

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;


 

DoumbiaS
Quartz | Level 8

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 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1441 views
  • 3 likes
  • 3 in conversation