append过程
proc datasets lib=work nolist;
delete null;
quit;*程序运行前清空null数据集,防止重复拼接;
proc append base=null data=sashelp.class(where=(sex='女'));run;
*将class的部分观测值纵向拼接到null数据集后面;
append过程
proc datasets lib=work nolist;
delete null;
quit;*程序运行前清空null数据集,防止重复拼接;
proc append base=null data=sashelp.class(where=(sex='女'));run;
*将class的部分观测值纵向拼接到null数据集后面;