I would appreciate it if someone could advise me on how to print out the exact p-value from a simple proc reg statement.
The model p-value output shows p<0.001 for some covariates but I would like the exact value like 0.000000000542
Thank you very much!
TW
When you create an output data set from PROC REG using ODS OUTPUT, the p-value is automatically given a format which forces it to print as p<0.0001. If you give it a different format, it will print in whatever format you want. Although it's hard for me to envision a use for a p-value that is correct to 14 decimal places.
When you create an output data set from PROC REG using ODS OUTPUT, the p-value is automatically given a format which forces it to print as p<0.0001. If you give it a different format, it will print in whatever format you want. Although it's hard for me to envision a use for a p-value that is correct to 14 decimal places.
Adding:
I don't know what you are doing, but this seems like an abuse of the p-value, it seems like whatever use you might have for a p-value with 14 decimal places is invalid — with the possible except of confirming that your own algorithm to compute p-values matches SAS, and I'd be shocked if PROC REG was the right way to do this.
Generate an output set as @PaigeMiller indicated and display the values with proc print, report or tabulate setting the desired format.
Or delve into the wonders of Proc Template and change the format in the table definition (WAY Overkill but would be the way if you don't want to send output to a data set.)
Thank you for your help!
I needed it for a GWAS problem where there are lots of multiple comparisons 😃
Code that worked was:
ods output ParameterEstimates=pval1;
proc reg data= abc;
model aa = x1 x2 ;
run;
proc contents data=pval1; /*to identify label for pvalue*/
run;
data pval2;
set pval1;
format Probt pvalue15.13;
run;
Sorry, but you can't convince me that 14 decimal places are needed for multiple comparisons. This is improperly using the p-values.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.