其他
统计计量 | 重磅:面板数据学习教程
本文转载自公众号计量经济学服务中心
综合整理自:http://dss.princeton.edu/training/
1、面板设定方法: xtset
xtset country year
varlist: country: string variable not allowed
encode country, gen(country1)
2、探索面板数据
use Panel101.dta,clearxtset country yearxtline y
xtline y, overlay
3、面板数据之固定效应模型
首先我们进行传统的OLS回归:
reg y x1
xi: regress y x1 i.country
两个模型对比命令如下:
regress y x1
estimates store ols
xi: regress y x1 i.country
estimates store ols_dum
estimates table ols ols_dum, star stats(N)
固定效应模型操作:
xtreg y x1, fe
xi: regress y x1 i.country
y表示Outcomevariable
x1表示Predictor variable(s)
Number of obs 表示Total number of cases (rows)
Number of groups Total number of groups (entities)
areg y x1, absorb(country)
areg y x1, absorb(country)
xtreg y x1 x2 x3, fe
estimates store fixed
xi: regress y x1 x2 x3 i.country
estimates store ols
areg y x1 x2 x3, absorb(country)
estimates store areg
estimates table fixed ols areg, star stats(N r2 r2_a)
4、随机效应估计操作
xtreg y x1, re
5、随机效应VS固定效应估计操作选择
xtreg y x1, fe
estimates store fixed
xtreg y x1, re
estimates store random
hausman fixed random
6、其他检验
xtreg y x1 i.year, re
testparm i.year
7、其他检验
xtreg y x1, re
xttest0
xtreg y x1, fe
xtcsd, pesaran abs
ssc install xtest3
xttest3
ssc install xtserial
xtserial y x1
8、命令汇总简介
点击阅读原文,进入CCAD数据库
·END·
星标⭐我们不迷路!
想要文章及时到,文末“在看”少不了!
点击搜索你感兴趣的内容吧
往期推荐
数据Seminar
这里是大数据、分析技术与学术研究的三叉路口
文丨计量经济学服务中心
推荐丨青酱
欢迎扫描👇二维码添加关注