PC-SAS 从另一个数据集中读取变量
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您想要类似以下内容:
这可能过于简化,但如果您详细说明遇到的任何问题,我们可以提供更多详细信息。
I think you want something like the following:
This might be overly simplified, but we can provide more detail if you expound on any issues you run across.