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

I have a dataset with aggregated date and I would like to create a VBAR to show the distribution of the variables.  I thought using the weight option would work, but it doesnt.  For example, in the example below all the frequencies stand at "1", instead of using the count variable which should be somewhere between 1 and 5.

 

What is going on?  I'm using SAS 9.3 on a windows machine.

Cheers!

 

 

proc sql;
create table class as
select distinct age, count(*) as count
from sashelp.class
group by age;
quit;

proc sgplot data=class;
vbar age / weight=count;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
Use response instead of weight.

proc sgplot data=class;
vbar age / response=count;
run;

View solution in original post

4 REPLIES 4
Reeza
Super User
Use response instead of weight.

proc sgplot data=class;
vbar age / response=count;
run;
morglum
Quartz | Level 8
thanks for this!
FreelanceReinh
Jade | Level 19

You can also use FREQ= instead of WEIGHT= if you prefer "Frequency" over "count (Sum)" as the label of the y-axis.

proc sgplot data=class;
vbar age / freq=count;
run;
morglum
Quartz | Level 8
Thanks for the reply!

"Frequency" does look better, but it wont graph non-integer numbers properly (such as count minus 0.5), which happens with surveys with probabilistic weights.

Cheers!

proc sql;
create table class as
select distinct age, count(*)-0.5 as count
from sashelp.class
group by age;
quit;

proc sgplot data=class;
vbar age / response=count;
yaxis label="frequency";
run;

proc sgplot data=class;
vbar age / freq=count ;
yaxis label="frequency";
run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1787 views
  • 2 likes
  • 3 in conversation