in sas studio
Tasks
Graph
Bar Chart
@zhawasli1 wrote:
data rel frequency;
input frelfreq mrelfreq;
datalines;
0.44444444 0.28571429
0.33333333 0.14285714
0.22222222 0.42857143
0 0.14285714;
run;
* Bar Charts;
PROC SGPLOT DATA = Rel frequency;
VBAR sex;
TITLE 'relative frequency';
RUN;
Do you mind pointing out to me why this command is not working?
If you follow the method I provided earlier, going through the SAS Studio menus, you won't run into these problems.
On the left, it is under Tasks and Utilities
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.