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

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 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.

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