如何检测数据集中的所有空列并删除\删除它们?
正如标题中所建议的,我想删除所有空列\变量(其中所有记录均为空或等于 null 或“”),以减少以后执行的时间成本。
详细场景:
我有一个包含 1000 列的 dataset(),其中一些\很多是空的。现在我想创建一个新的数据集,其中需要在先前数据集的某些条件下添加列。
data new;
set old;
if oldcol1 ne "" then newcol1='<a>'||strip(oldcol1)||'</a>';
end;
if oldcol2 ne "" then newcol2='<a>'||strip(oldcol2)||'</a>';
end;
...
...;
drop oldcol1 oldcol2.....oldcol1000;
run;
由于以下原因,执行需要相当长的时间:
旧列的数量巨大
事实上,我需要在另一个数据集中执行循环来设置之后的数字oldcol
ColNumber
1
2
3
之后的数字...
1000
所以你可以想象,搜索、查找、设置值要执行多少次。
因此,我能想到的减少时间成本的一种方法是首先删除所有空列。但任何有关优化算法的意见也受到高度欢迎。
谢谢
As suggested in the title, I'd like to drop all empty columns\variables(where all records are empty or equal null or ""), so as to reduce time cost in later execution.
Detailed scenario:
I have a dataset() with 1000 columns, some\lots of which are empty. Now I want to create a new dataset in which I need to add columns under some conditions of previous dataset.
data new;
set old;
if oldcol1 ne "" then newcol1='<a>'||strip(oldcol1)||'</a>';
end;
if oldcol2 ne "" then newcol2='<a>'||strip(oldcol2)||'</a>';
end;
...
...;
drop oldcol1 oldcol2.....oldcol1000;
run;
It takes quite some time to execute given the following reason:
number of old columns is huge
in fact I need to do a loop in another dataset to set the number after oldcol
ColNumber
1
2
3
...
1000
So you can imagine how many times to be executed in terms of searching, finding and setting values.
Hence one way I could think of to reduce time cost is drop all empty columns first. But any inputs regarding optimizing the algorithm is highly welcomed as well.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下面是一个通用宏,您可以使用它来生成源数据集中的空列列表,然后可以将其传递给 drop 语句。它使用 proc 格式和 proc freq,因此速度相对较快。
以下是您可以如何使用它:
Here's a generic macro that you can use to generate a list of the empty columns in the source data set, which you can then pass to a drop statement. It uses proc format and proc freq so it is relatively fast.
Here is how you might use it:
我同意 proc 转置是一个好主意:
I agree that proc transpose is a good idea:
像这样的东西吗?
Something like this?