SAS导入数据

1.外部文件(txt/excel等)导入到SAS

例如:将c:\mydb\temp1.txt导入sas逻辑库(mydb)

--写法1

libname mydb 'c:\mydb';

filename f1 'c:\mydb\temp1.txt'; /*f1表示文件逻辑名称 c:\mydb\temp1.txt 表示物理名称*/

data mydb.student;

infile f1;

input id name $ sex $ score;

run;

--写法2

libname mydb 'c:\mydb';

data mydb.student;

infile "c:\mydb\temp1.txt";

input id name $ sex $ score;

run;

--写法3

libname mydb 'c:\mydb';

data mydb.student;

filename f1 'c:\mydb\temp1.txt';

infile f1

input id name $ sex $ score;

run;

2.外部数据集(sas7bdat文件)导入SAS

例:将c:\mydb\temp1.txt导入sas逻辑库(mydb)

libname mydb 'c:\mydb';

data temp;

set mydb.student;

run;