我有一个 SAS 数据集chapter5.pressure
,我通过打印它验证了它是好的proc print
:
Obs SBPbefore SBPafter
1 120 128
2 124 131
3 130 131
4 118 127
5 140 132
6 128 125
7 140 141
8 135 137
9 126 118
10 130 132
11 126 129
12 127 135
所以,我想把它导出到.dat
文件中,下面的方法不起作用:
libname chapter5 'c:\users\owner\desktop\sas\chapter5';
data _null_;
set chapter5.pressure;
file 'c:\users\owner\desktop\sas\chapter5\xxx.dat';
put a b ;
run;
结果文件包含所有缺失值。为什么