会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
helloyuen
订阅
管理
2023年9月8日
Three ways to conditionally remove variables in a dataset
摘要: # Method 1: ``` proc contents data=cars short out=outds00; run; data outds(keep=name); set outds00; vnam=substr(name, 1, 1); if vnam ne "M" then outpu
阅读全文
posted @ 2023-09-08 13:24 helloyuen
阅读(2)
评论(0)
推荐(0)
编辑