问题:我不明白为什么脚注3和脚注4没有显示在输出中?
footnote1 ‘Sales Report for Last Month’;
footnote2 ‘Selected Products Only’;
footnote3 ‘All Regions’;
footnote4 ‘All Figures in Thousands of Dollars’;
proc print data = sashelp.cars;
footnote2 ‘All Products’;
run;
答案 0 :(得分:3)
当为给定的行指定了FOOTNOTE语句时,它会取消该行的前一个FOOTNOTE语句以及所有更高数字的脚注行。
因此,proc proc中的脚注2取消了脚注3和4。
例如,简单的陈述
脚注;
用于删除所有先前定义的脚注。 对于标题,情况也是如此。