BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ruth
Fluorite | Level 6

PROC MEANS has the option of MAXDEC which can control the number of decimal places in the output. But this option cannot exert control for the output data.

PROC MEANS DATA=work.model MEAN;

VAR _all_;

OUTPUT OUT=work.param(DROP=_NAME_ _TYPE_ _FREQ_ modelid) MEAN=;

RUN;

In this way, all variables in the outoput will have many decimal places.

Maybe I need to manually use a FORMAT statement to change this?

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

In that case I would just use a format statment for the VARS in PROC MEANS.

View solution in original post

3 REPLIES 3
data_null__
Jade | Level 19

The mean should inherit the FORMAT associated with the analysis variables.  Then you can have difference formats for each variable if needed.

Ruth
Fluorite | Level 6

The decimal places are inherited from the proc logistic. They are the parameter estimates as

OUTEST=. So I need to control the decimal places at the proc logistic step.

data_null__
Jade | Level 19

In that case I would just use a format statment for the VARS in PROC MEANS.

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 25. 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
  • 3 replies
  • 5492 views
  • 0 likes
  • 2 in conversation