Showing posts with label every 5 observation. Show all posts
Showing posts with label every 5 observation. Show all posts

Wednesday, February 29, 2012

Find Every nTh Observation from SAS / BASE , SAS /SQL



Data analysis;
set a1;
if mod( _n_ ,5)=0;
run;