sysuse auto, clear
regress price weight // OLS
aaplot price weight // 图示拟合情况
// *-OLS 的估计系数是一个随机变量, SE 衡量了其不确定程度;
regress price weight
dis "t-value = " %4.2f _b[weight]/_se[weight]
twoway function y=tden(72, x), ///
rang(-6 6) xline(5.2, lp(dash) lc(red))
sysuse auto, clear
reg price weight, robust
regress price weight
predict price_fit, xb // 拟合值, xb 选项可以省略,默认
gen price_fit2 = _b[_cons] + _b[weight]*weight //手动计算
predict e, residual // 残差, residual 选项是必须的, 可以简写为 r
gen e2 = price - price_fit //手动计算
br price weight price_* e*
计算正常工资和超额工资
sysuse nlsw88, clear
global x "age hours tenure collgrad married south"
reg wage $x
keep if e(sample) //仅保留参与回归的观察值, 参见 D3_miss.do
predict normal_wage //正常工资(线性拟合值)
predict excess_wage, res //超额工资(残差, 可正可负)
// *-进一步分析
histogram excess_wage //直方图, 参见 G3_histogram.do
tabstat excess_wage, by(industry) c(s) /// //统计分析
s(mean N sd p50 min max) f(%4.2f)
global z "i.race union never_married"
reg excess_wage $z //影响因素,不完整
sysuse auto, clear
graph matrix price weight length mpg
sysuse nlsw88, clear
// *-stata 官方命令
global x "age grade wage hours ttl_exp tenure"
pwcorr $x //缺陷: (1)小数点后两位为宜; (2)没有标注显著水平;
pwcorr $x, sig //整理起来很麻烦
pwcorr $x, star(0.05) //小数点后两位不易调整;
// 自编命令 _a与_c的主要区别就是标星的时候a会根据显著性水平标1-3颗星
pwcorr_a $x, format(%7.3f)
pwcorr_c $x, star(0.05) format(%7.2f) //比较符合多数期刊的要求
sysuse nlsw88, clear
// *-stata 官方命令
global x "age grade wage hours ttl_exp tenure"
spearman $x, star(0.05)
Spearman 和 Pearson 相关系数矩阵的合并呈现
sysuse nlsw88, clear
// *-stata 官方命令
global x "age grade wage hours ttl_exp tenure"
corsp $x, format(%7.3f)
corsp $x, format(%7.3f) pvalue
注意:
Spearman 和 Pearson 相关系数的区别
sysuse nlsw88, clear
ttest wage, by(collgrad)
ttest wage, by(race) //错误命令
ttest wage if race!=3, by(race) //限定为两组即可
本质上是多个单变量合并的结果
sysuse nlsw88, clear
global x "wage hours tenure ttl_exp" //待检验变量列表
ttable3 $x, by(collgrad)
normdiff 命令: 输出 t 值 或 p 值
sysuse nlsw88, clear
global x "wage hours tenure ttl_exp" //待检验变量列表
normdiff $x, over(collgrad) ///
diff t p n(below) f(%16.2f) quietly nonormdiff
normdiff:标准化差异
sysuse nlsw88, clear
global x "wage hours tenure ttl_exp" //待检验变量列表
qui reg $x
keep if e(sample) //保证所有的变量有相同的观察值个数
normdiff $x, over(collgrad) ///
diff t p n(below) f(%16.2f) quietly
本质上就是单变量运行多个分组合并的结果
sysuse nlsw88, clear
ttestplus wage, by(married union collgrad south)
// Group1: var=0; Group2: var=1
sysuse nlsw88, clear
global x "ttl_exp race age industry hours"
reg wage $x
est store homo
reg wage $x, robust // White(1980)
est store robust
esttab homo robust, mtitle(Homo Het_Robust) nogap
注意:
思想:
sysuse nlsw88, clear
global x "ttl_exp race age industry hours"
reg wage $x, vce(cluster industry)
// 二维 cluster: industry occupation
egen indoccu = group(industry occupation) //D5_egen.do
sort industry occupation
br industry occupation indoccu
reg wage $x, vce(cluster indoccu)
基本思想:假设样本是母体中随机抽取的,通过反复从样本中抽取样本来模拟母体的分布;
reg wage hours, vce(bs,reps(300) noheader nodots)
reg wage hours, robust noheader // White s.e.
注意:
reg price weight, vce(bs,reps(1000) seed(13579))
regfit
: 输出线性拟合表达式reg price weight length mpg trunk i.foreign i.rep78
regfit
dis in g "R-square = " in y %4.2f e(r2) in g " F = " in y %4.2f e(F)
ereturn
回归后的返回值reg price weight length mpg trunk i.foreign i.rep78
ereturn list
logout
将结果输出到文档中// 调入数据
sysuse nlsw88.dta, clear
global xx "wage age tenure ttl_exp hours married"
logout, save("Tab1_statis") excel replace: ///
tabstat $xx, stat(mean p50 sd min max) ///
format(%3.2f) column(statis)
est store
暂存结果esttab
将暂存结果显示// 调入数据
sysuse nlsw88.dta, clear
global xx "wage age tenure ttl_exp hours married"
reg $xx
est store full
reg $xx if race==1
est store white
reg $xx if race==2
est store black
reg $xx i.occupation
est store occu
esttab full white black occu, nogap // 基本设定
// 接上面
// local s "using Tab3_reg.csv" // 输出 Excel 文档的暂元
local m "full white black occu" // 放置模型名称的暂元
// esttab `m' `s', nogap compress replace 能直接输出到csv文档中
esttab `m' , nogap compress ///
mtitle("Full" "White" "Black" "with_occu") ///
b(%4.3f) t(%4.2f) ///
scalar(N r2_a) ///
star(* 0.1 ** 0.05 *** 0.01) ///
drop(*.*)
其中:
nogap
去掉空行compress
以比较紧凑的形式呈现结果replace
覆盖已经存在的旧文件b(%4.3f)
系数保留小数点后三位t(%4.2f)
t 值保留小数点后两位scalar()
最后两行的统计量: N-样本数; r2_a-adj-R2