SAS多个数据集逻辑顺序
很抱歉问这个问题,但是我的英语很差,我不知道在Google上输入什么以获得结果。
我想做:
data test;
set mytable1 to mytable999;
run;
我该如何告诉SAS将所有桌子从1到999设置在不编写的情况下(因为很长时间这样做)。像mytable1-999这样的东西
非常感谢,我知道这是一个基本功能,但我不记得英语的名字是什么
I'm sorry to ask this question but my English is poor and I don't know what to type on google to get results.
I want to do :
data test;
set mytable1 to mytable999;
run;
how can I tell SAS to set all the tables from 1 to 999 without writing them (cause it's long to do so). something like mytable1-999
thank you very much, I know it's a basic function but I don't remember what is the name in English
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在SAS中使用“:”的通牌函数。在
mytable中:
等效于所有表的列表,其名称以mytable
开头。结果就是
Just use the wild-card function of ´:´ in SAS. In
myTable:
is equivalent with the list of all tables of which the name starts withmyTable
.The result is