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

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

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
  • 1369 views
  • 0 likes
  • 2 in conversation