如何将excel文件导入sas

2024-12-14 16:46:41
推荐回答(2个)
回答1:

你可以这样,想要将其他形式文件导入成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.

回答2:

proc import out=数据集
datafile=" .xls" //物理地址
replace;
getnames=yes;
run;
开始两句后面没有分号的