你可以这样,想要将其他形式文件导入成SAS ——PROC IMPORT / 直接读入其他形式文件proc import datafile = "c:\data\hsb2.sav" out= work.hsb2; run; proc contents data=hsb2; run; SAS导入数据:SAS recognizes the file type to be imported by file extension.
proc import out=数据集
datafile=" .xls" //物理地址
replace;
getnames=yes;
run;
开始两句后面没有分号的