Stata:如何找到改变时间序列数据集状态的公司

时间:2015-01-08 17:06:14

标签: statistics stata economics

我有一个包含不同公司信息的数据集。及时表现。它有变量:公司ID,年份,公司的出口状态(如果是出口商,基本上是1)。我想知道有多少公司(在特定的时间间隔内,在特定的时间间隔内)作出了出口决定,例如:将导出状态从0更改为1.我想通过转换为csv然后通过python脚本解析来避免暴力攻击。

1 个答案:

答案 0 :(得分:0)

这是使用滞后运算符的一种方法:

clear

input firm_id   t   exp
0   1   0
0   2   1
1   1   0
1   2   1
1   3   1
2   1   0
2   2   1
2   3   0
3   1   1
3   2   1
4   1   0
4   2   0
end

xtset firm_id t
gen start_exp = cond(exp==1 & L.exp==0,1,0)
bys t: sum start_exp