PC-SAS 从另一个数据集中读取变量

发布于 2024-11-06 07:42:11 字数 222 浏览 0 评论 0原文

我在 PC SAS 中有一个数据集,是我不久前制作的,每天都会创建一个新版本(触发器文件)。

我想从该数据集中提取两个或三个变量到我要创建的新 PC SAS 数据集,并且我想编写代码来导入它,而不是使用导入向导。

有人可以给我一个如何写的例子吗?

我从来没有想要过我之前制作的数据集中的数据,我通常会 proc sql 数据 - 尽管出于经济原因我宁愿在这种情况下从这个数据集中提取数据。

I have a dataset in PC SAS which I made some time ago and daily a new version is created ( a trigger file).

There are two, or maybe three variables which I want to pull in from this dataset to a new PC SAS data set that I am going to create and I want to write the code to import this rather than use import wizard.

Could someone please give me an example of how this would be written?

I have never wanted data from previous datasets I have made, I normally proc sql the data - although for reasons economic reasons I would rather pull from this dataset on this occasion.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十级心震 2024-11-13 07:42:11

我认为您想要类似以下内容:

data new_dataset;
   set existing_dataset(keep = variable1 variable2 variable3);
run;

这可能过于简化,但如果您详细说明遇到的任何问题,我们可以提供更多详细信息。

I think you want something like the following:

data new_dataset;
   set existing_dataset(keep = variable1 variable2 variable3);
run;

This might be overly simplified, but we can provide more detail if you expound on any issues you run across.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文