The title says it all, I'm trying to generate a scatterplot similar what PRISM can do. Has anyone tried to do something similar in SAS?
http://i.stack.imgur.com/z53zB.gif
Trying a categorical x-axis only creates a column of dots with the corresponding values.
proc sgplot data=sashelp.class;
scatter x=sex y = height
/MARKERATTRS =(symbol=circlefilled);
run;
I appreciate your feedback.
Cross-posted and answered at https://communities.sas.com/thread/58623
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.