I'm wondering if I can display all values of the "make" variable in PROC SGPLOT. The results display every second maker from the list: Audi, Buick, Chevrolet...I would like to know how to make this graph readable by itself.
Relatedly, can I make this graph larger? Perhaps it would be a good solution.
PROC FREQ is included below so that you can check the full list of makers. Thanks!
proc sgplot data= sashelp.cars;
hbar make; run;
proc freq data= sashelp.cars;
table make; run;
Hi:
You can use ODS GRAPHICS statement to change the size and you can use the YAXIS statement to control the "fit policy" which is what ODS Graphics uses to avoid the tick marks colliding with each other.
Hope this helps,
Cynthia
Hi:
You can use ODS GRAPHICS statement to change the size and you can use the YAXIS statement to control the "fit policy" which is what ODS Graphics uses to avoid the tick marks colliding with each other.
Hope this helps,
Cynthia
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.
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.