append过程

proc datasets lib=work nolist;
  delete null;
quit;*程序运行前清空null数据集,防止重复拼接;

proc
append base=null data=sashelp.class(where=(sex='')); run;
*将class的部分观测值纵向拼接到null数据集后面;

 

 

相关文章:

  • 2022-02-23
  • 2022-12-23
  • 2022-01-14
  • 2021-08-10
  • 2022-01-09
  • 2021-07-02
  • 2021-10-25
  • 2022-12-23
猜你喜欢
  • 2022-01-01
  • 2021-12-12
  • 2021-11-12
  • 2021-06-26
  • 2021-12-09
  • 2022-12-23
相关资源
相似解决方案