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

Hello,

using the GLM procedure I tryed to expand the number of decimals (more than 4) in the PROBT (Pr > |t|) and PROBF (Pr > F) using "format probt pvalue12.10;" following the suggestion indicated on the on-line documentation at page http://support.sas.com/kb/37/106.html but I was not able to find were to find such variables.

Could anyone explain me how to increase the number of decimals in the output?

Many tahnks.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

I don't know why you cann't find this variable , you can chech it by opening the dataset you saved .

ods trace on;

proc glm data=sashelp.class ;

class sex;

model weight=sex height;

ods output  ModelANOVA= ModelANOVA;

quit;

ods trace off;

proc print data= ModelANOVA;

format probf pvalue12.10;

run;

Ksharp

View solution in original post

1 REPLY 1
Ksharp
Super User

I don't know why you cann't find this variable , you can chech it by opening the dataset you saved .

ods trace on;

proc glm data=sashelp.class ;

class sex;

model weight=sex height;

ods output  ModelANOVA= ModelANOVA;

quit;

ods trace off;

proc print data= ModelANOVA;

format probf pvalue12.10;

run;

Ksharp

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1 reply
  • 1510 views
  • 0 likes
  • 2 in conversation