PetrOtahal
Technical User
I'm running the following GLM code:
And in order to format the number of decimal places in the output of the Parameter Estimates I use the following code:
The problem is that this doesn't change the number of decimal places for the Confidence Limits produce by the CLParm command.
Can you help?
Code:
proc glm data=shbg;
model &modelDep = &BMImodelInd / solution clparm;
run;
And in order to format the number of decimal places in the output of the Parameter Estimates I use the following code:
Code:
proc template;
edit Common.ParameterEstimates.Estimate; format=7.3; end;
edit Common.ParameterEstimates.StdErr; format=7.3; end;
run;
The problem is that this doesn't change the number of decimal places for the Confidence Limits produce by the CLParm command.
Can you help?