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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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