Tell SAS not to add newly generated tables on the Process Flow

前端 未结 3 704
迷失自我
迷失自我 2021-02-08 12:26

I have a SAS code that creates a lot of intermediary tables for my calculations. Thing is, I don\'t really care about this tables after the job is done, I only care to the final

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-08 13:24

    I know this question is a year and a half old now, but if you are working with intermediate tables that can be deleted after you get the final results, SAS EG has a built in macro you can use for deleting these tables:

    %_eg_conditional_dropds([table1], [table2], ... ,[table-n]);
    

提交回复
热议问题