- 阅读权限
- 255
- 威望
- 0 级
- 论坛币
- 1 个
- 通用积分
- 0.0024
- 学术水平
- 24 点
- 热心指数
- 17 点
- 信用等级
- 17 点
- 经验
- 298 点
- 帖子
- 27
- 精华
- 0
- 在线时间
- 66 小时
- 注册时间
- 2013-2-11
- 最后登录
- 2025-3-22
|
- data class;
- set sashelp.class;
- drop height;
- if _n_=1 then delete;
- run;
- ods output CompareSummary=out1;
- proc compare data=class compare=sashelp.class;
- run;
- ods output close;
- data tt;
- set out1;
- retain num;
- if strip(batch)="Variable Type Len Ndif MaxDif" then num=_n_;
- if _n_ gt num and num gt 0;
- batch=scan(batch,1);
- if ^missing(batch);
- drop num;
- run;
- proc sql noprint;
- select batch
- into:Unequal_list separated by " "
- from tt;
- quit;
- %put &unequal_list.;
复制代码
|
-
总评分: 经验 + 40
论坛币 + 40
学术水平 + 3
热心指数 + 2
信用等级 + 3
查看全部评分
|