try this just for checking.just a 2 way freq.
proc freq data = mytest; tables patient*test_type /missing ;
where test_type in ('A','B','C','D','E');run;
It's more efficient to put the where clause as a datset option than as a statement, it prevents the whole record being read in before the where clause is tested.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.