BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Gabs289
Calcite | Level 5

I have a table with 12 rows for 12 months and 2 columns, the other column is called average. How can I get a bar chart that gives me 12 bars with the size of average? I always get 12 bars with the size of 1 because it's 1 stat per month, but that's not what I am interested in

proc sgplot data=my_data;
vbar avg / group=month;
run;

What do I need to change?

1 ACCEPTED SOLUTION

Accepted Solutions
svh
Lapis Lazuli | Level 10 svh
Lapis Lazuli | Level 10
If i'm following you correctly, when your data set is composed of summary statistics, you can use VBARPARM (instead of VBAR) to chart the actual values and not mean (or some other statistic) that is computed from your data set.

View solution in original post

1 REPLY 1
svh
Lapis Lazuli | Level 10 svh
Lapis Lazuli | Level 10
If i'm following you correctly, when your data set is composed of summary statistics, you can use VBARPARM (instead of VBAR) to chart the actual values and not mean (or some other statistic) that is computed from your data set.

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!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 824 views
  • 0 likes
  • 2 in conversation