BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
scarico
Calcite | Level 5

Dear SAS-Community,

I estimated regression coefficients their standard error and the corresponding t-statistic.

Is there a possibility in SAS to calculate the p-value out of the given values? (Comparable to "TDIST" in Excel?)

Thank you very much!

Holger

1 ACCEPTED SOLUTION

Accepted Solutions
Keith
Obsidian | Level 7

The TDIST equivalent function in SAS is PROBT (or more precisely 1-PROBT)

View solution in original post

2 REPLIES 2
Keith
Obsidian | Level 7

The TDIST equivalent function in SAS is PROBT (or more precisely 1-PROBT)

Rick_SAS
SAS Super FREQ

PROBT is an older function. Use the CDF function instead, like this:

prob = 1 - CDF("T", x, df);

For reasos why you should use CDF instead of PROBT, see reasons 4-6 of this article: Six reasons you should stop using the RANUNI function to generate random numbers - The DO Loop

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 2647 views
  • 4 likes
  • 3 in conversation