Hi all,
below is my data:

And I am using below code:
proc sort data=adsl(keep=trt01pn age); by trt01pn; run;
proc means data=adsl maxdec=2 noprint;
by trt01pn;
var age;
output out=age_ n=n1 mean=mean1 std=std1 median=med min=min1 max=max1;
run;
Getting below result with missing decimal places, what might be the reason for missing decimal places?

How can get values with decimal places?
Thanks,
Adithya