如何用SAS语句将数据集中相同的观测值去掉
1个回答
展开全部
给你贴个两变量的程序吧,unique就是所有不一样的观测数据集。tmp是原始的数据集
proc sort data=work.tmp; by X1-X2;run;
data unique else;
set tmp;
by X1 X2;
if first.X1 then x1last=999;
if first.X2 then x2last=999;
if X1 ne x1last then do;
output unique;
x1last=X1;
if X2 ne x2last then x2last=X2;
end;
else do;
if X2 ne x2last then do;
output unique;
x2last=X2;
end;
else output else;
end;
retain x1last x2last;
drop x1last x2last;
run;
proc sort data=work.tmp; by X1-X2;run;
data unique else;
set tmp;
by X1 X2;
if first.X1 then x1last=999;
if first.X2 then x2last=999;
if X1 ne x1last then do;
output unique;
x1last=X1;
if X2 ne x2last then x2last=X2;
end;
else do;
if X2 ne x2last then do;
output unique;
x2last=X2;
end;
else output else;
end;
retain x1last x2last;
drop x1last x2last;
run;
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询