0

I am trying to learn SAS coding through WPS Workbench. I am confused about how if I have datasets e.g. height of humans, already, how do I refer or use these datasets in my code so I can begin to analyse it? Right now they are in separate windows (editor and dataset SAS7BDAT file). Sorry if this sounds confusing. I am quite confused.

4

1 回答 1

0

创建一个指向包含 SAS7BDAT 文件的目录的 libref。您可以为您的 libref 使用任何有效的 8 个字符或更少的 SAS 名称。

然后只需使用两级数据集引用来引用数据集。句点之前是您在 LIBNAME 语句中定义的 libref,句点之后是数据集(或成员)名称。该名称应与带有 SAS7BDAT 扩展名的文件的基本名称相匹配。

因此,要在名为 c:\myfiles\mydata.sas7bdat 的文件上运行 PROC MEANS,您可以使用如下代码:

libname mydat 'c:\myfiles';
proc means data=mydat.mydata;
run;

这种语法在真正的 SAS 中有效,我假设 WPS 也将支持这种简单的代码。

于 2022-01-11T23:50:52.953 回答