전체 글26 [SAS] Delete imported table/dataset proc delete data=db; run; 2022. 4. 25. [SAS] data type check proc contents data=db; run; 2022. 4. 24. [SAS] SQL in sas 1. Making table proc sql; create table db2 as select * from db quit; 2. create variable when certain variable containes specific words. proc sql; create table db2 as select * , case when fruit like '%apple%' then 1 else 0 end as apple, case when fruit like '%banana%' then 1 else 0 end as banana from db quit; 2022. 4. 24. [SAS] print the first 10 line of data /*Check the data*/ /*If you want to check 20 line, you can change (obs=10) to (obs=20)*/ proc print data=db (obs=10); run; 2022. 4. 24. 이전 1 2 3 4 ··· 7 다음