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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 2038 views
  • 4 likes
  • 3 in conversation