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.
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
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
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.
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.
Ready to level-up your skills? Choose your own adventure.