Wednesday, June 24, 2015

SAS CODE - "DROP VARIABLE"

*this code snippet takes data demos1, and drops 3 unnecessary ;
*variables from it;
*obs =max is a safe thing to put in if you've been messing with less obs;

options obs = max;
data demos1;
set work.demos1;
drop wtper sample cntry;
run;

No comments:

Post a Comment