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
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!
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.