标签:drop roc 合并 写入 一个 set rop inpu print
纵向合并
横向合并
多个数据的交集
if
if 表达式 表示表达式成立
if 表达式 then delete
set aa;
if gender=”M” and age>40;
where
利用obs 和 firstobs选择观测
选择观测3-7
data pop;
do id=1 to 10;
output;
end;
;
data sam;
set pop(firstobs=3 obs=7);
proc print;
run;
对变量的选择
keep
drop
vset ht;
keep gender age height1 height2;
数据集选项
data ht1;
set ht(keep=gender age height1 height2);
proc sort <out=数据集>
by by
查找重复值
proc sort out=rep nouniquekey;
pby name;
标签:drop roc 合并 写入 一个 set rop inpu print
原文地址:https://www.cnblogs.com/yangzilaing/p/13057816.html