proc freq data=rawdata noprint; table year_cat * A--P / trend norow nocol nopercent out=Output_of_trend; run;
Dear all,
I have a code as written above. I would like to produce the count result of all the variables from A to P such that it all gets to store in output year_cat dataset. Is there any direct ODS option or any other method in sas to avail that.
under year-cat column i have multiple year categories like (2010-2012), (2013-2014), (2015-2018), (2019-2020)...... and multiple columns like A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P . So i have used A--P. But when i run the code it only captures results produced from year_cat*P in my output dataset where as in the result window it captures for all the variables from A to P.
Kindly share if any one knows any shortcut way by ODS or any other options
... View more