🔒 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-01-2019 12:20 PM
(701 views)
Hi,
Would you have an example (short program) which uses the NOZEROBARS option with proc sgplot and the vbar statement.
I could not find any.
The only documentation I could find is here:
Best Regards,
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
A very simple example
data have;
cat=1; var=-10; output;
cat=2; var= 0; output;
cat=3; var= 10; output;
run;
proc sgplot data=have;
vbar cat / response=var stat=mean nozerobars;
run;
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
A very simple example
data have;
cat=1; var=-10; output;
cat=2; var= 0; output;
cat=3; var= 10; output;
run;
proc sgplot data=have;
vbar cat / response=var stat=mean nozerobars;
run;