I used to produce stem-and-leaf and box plot in proc univariate by specifying PLOT in the PROC UNIVARIATE statement
proc univariate data=data plot;
var var ;
run;
Cannot get this result anymore and I don't know why 😞
no error messages or warnings, and can't figure why - I am missing something... any help nice community?
Are you outputting to HTML or with ODS GRAPHICS ON?
produces a stem-and-leaf plot (or a horizontal bar chart), a box plot, and a normal probability plot in line printer output
ods listing;
ods graphics off;
proc univariate data=sashelp.class plot;
var age;
run;
Are you outputting to HTML or with ODS GRAPHICS ON?
produces a stem-and-leaf plot (or a horizontal bar chart), a box plot, and a normal probability plot in line printer output
ods listing;
ods graphics off;
proc univariate data=sashelp.class plot;
var age;
run;
Reeza you are awesome! I had the graphics on. Thank you community!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.