Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个包含变量 y1 到 y10 的 sas 表子集,其中 y1 到 y10 大于 0,
data work.dt; set work.x; **where y1 to y10> 0;** run;
这有捷径吗?
谢谢
您可以通过以下方式使用它if:
if
data work.dt; set work.x; if min(of y1-y10) > 0; run;
或者你可以写出来。 where主要使用 SQL 语言元素,并没有使用完整形式的变量列表等所有 SAS 语言元素。
where