问题可能很简单, 大虾别笑话。
我有一个dataset
X Y Z
2005 1 A
2005 1 A
2005 1 B
2005 1 B
2005 1 B
2005 2 A
2005 2 A
2005 2 B
想得到一个frequency summary
X Y Z Count
2005 1 A 2
2005 1 B 3
2005 2 A 2
2005 2 B 1
多谢!
w*******n 发帖数: 469
2
proc sort; by x y z;run;
data b;
set a; by x y z;
if first.z then temp=0;
temp+1;
if last.z;
run;
proc print;run;