countmatch
countmatch counts observations for which each distinct value of var1 is matched by (is equal to) var2, whether for the same observation or for some different observation(s).
公卫家园
var1 and var2 should be both numeric or both string.
. input id1 id2
id1 id2
1. 1 5
2. 2 6
3. 3 7
公卫考场
4. 4 8
5. 5 9
6. end
.
. countmatch id1 id2, gen(count)
. list
id1 id2 count
-
1. 1 5 0
公卫考场
2. 2 6 0
3. 3 7 0
4. 4 8 0 公卫人
5. 5 9 1
. gen indicator = count > 0
.
. list
id1 id2 count indica~r 公卫家园
1. 1 5 0 0
2. 2 6 0 0 公卫百科
3. 3 7 0 0
4. 4 8 0 0 公卫家园
5. 5 9 1 1
.
end of do-file
.
公卫家园
附件列表
词条内容仅供参考,如果您需要解决具体问题
(尤其在法律、医学等领域),建议您咨询相关领域专业人士。