🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 09-02-2021 03:52 PM
(2207 views)
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Output data only shows data sets. Results will show other output.
Ie if you run the following, both panes have output, that are different.
proc means data=sashelp.class N MIN MEAN MEDIAN MAX;
class sex;
var height weight;
output out=want N= MIN= MEAN= /autoname autolabel;
run;
@tianerhu wrote:
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Output data only shows data sets. Results will show other output.
Ie if you run the following, both panes have output, that are different.
proc means data=sashelp.class N MIN MEAN MEDIAN MAX;
class sex;
var height weight;
output out=want N= MIN= MEAN= /autoname autolabel;
run;
@tianerhu wrote:
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for your help.