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 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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