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;
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;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.