SAS输出CSV格式,分隔符为制表符 proc export csv tabl \t
PROC EXPORT DATA=<datasets>
DBMS=TAB
LABEL
OUTFILE=<"C:\Users\Username\Desktop\filename.csv">
REPLACE;
RUN;
The EXPORT procedure reads a SAS data set and writes the data to an external data file.
PROC EXPORT DATA=<libref.SAS data-set (SAS data-set-option(s))> DBMS=<data-source-identifier> LABEL OUTFILE=<'filename'>|OUTTABLE='tablename' REPLACE; |
版权声明:本文为博主原创文章,未经博主允许不得转载。