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
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
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.