菜单

设置文件路径和间隔符为逗号

data test2_10;
infile ‘E:源文件及数据文件\数据文件\test2.dat’ delimiter=’,’; /*设置文件路径和间隔符为逗号*/
input x y @@; /*输入变量x和y*/
put x= y=; /*输出输入的数据集*/
proc print;
run;

发表评论

邮箱地址不会被公开。 必填项已用*标注