如何在SAS中没有输入数据的情况下生成测试数据?

时间:2019-07-19 09:29:22

标签: sas

如何在SAS中没有输入数据的情况下生成测试数据?

2 个答案:

答案 0 :(得分:2)

为什么不使用SASHELP库中的示例数据集之一?

例如

proc print data=help.class;
run;

More examples can be found here

另一种选择是使用内联数据,

喜欢

data person;
   infile datalines delimiter=','; 
   input name $ dept $;
   datalines;                      
John,Sales
Mary,Acctng
;
run;

如果您真的不想使用任何输入,请使用带有循环的数据步骤。

喜欢

data whatever;
   do Key = -99 to 99 by 2;
      Square= Key*Key;
      Value= rand("Uniform"); 
      output;
   end;
run;

答案 1 :(得分:0)

sashelp库,但是如果您要查找其他内容,请在此处查看Bizarro Ball数据:https://github.com/allanbowe/BizarroBall

要导入,只需运行以下命令:

filename bizarro url 
  "https://raw.githubusercontent.com/allanbowe/BizarroBall/master/bizarroball.sas";
%inc bizarro;