s*******t 发帖数: 65 | 1 请大牛帮忙,这个问题实在是搞不定。主要是自己比较菜。
ID
A
A
B
B
B
B
C
C
我想创建另外一个variable,来累计重复的ID的数目,最后的output是:
ID var
A 1
A 2
B 1
B 2
B 3
B 4
C 1
C 2
用手输入这些值,不带玩儿的哦。 求SAS code, 谢谢! |
d*******o 发帖数: 493 | 2 DATA ONE;
input letter $;
cards;
A
A
B
B
B
B
C
C
;
run;
data two;
retain count;
set one;
by letter notsorted;
if first.letter then count=0;
count+1;
run; |
x*****n 发帖数: 5 | 3 by letter notsorted;
notsorted能解释下吗? |
l*********s 发帖数: 5409 | 4
It means data are not necessarily sorted, but nontheless grouped in
some other logical order.
【在 x*****n 的大作中提到】 : by letter notsorted; : notsorted能解释下吗?
|