- 1、本文档共64页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
W05_lecture04_模型推广北大光华计量
第四章.古典线性回归模型的推广
Outline
数据问题
异方差问题
时间系列数据问题
第一节、数据问题
多重共线性问题
奇异观测值问题
1.多重共线性
Perfect multicollinearity is where there is exact linear relationship between explanatory variables included in the regression
Perfect multicollinearity never happens in practice, unless you fall in a dummy variable trap
But you may encounter some degree of multicollinearity
Feature of sample, not populations
最可能发生的情形:多重交叉变量
比如,不同企业在金融危机前后的saving propensity的不同
一般尽量避免三重交叉
后果:精度、稳定性
因为参数估计方差为
Informal assessment of Multicollinearity (Signs of collinearity): rules of thumb
Correlation matrix of regressors, 0.75 (say)
Very large SEs
Contradiction between t-and F-statistics
t-statistics individual coefficient(s) not significant
F-statistic coefficient(s) jointly significant
Take out one variable and re-estimatebing changes in the value of coefficient(s)
Formal assesment:
VIF=1/(1-R2) ,一般认为10没问题
proc reg data=one;
model eret=beta beta2/vif;
run;
What to do about multicollinearity
Using prior information to explicitly restrict the parameters
Sample problem: get more data!
multicollinearity = problem of lack of data
Time series: 1st differencing the data
1st differences usually less correlated
Drop some control variables
But do not drop key variables! –Omitted variables problem
Ridge regression
Principal components
Form linear combination of correlated variables such that it maximizes its variability
Drawback: may lack economic reasoning
Do nothing if it is significant and stable (Woodridge)
做一些估计对数据稳健性的检验,比如分成几个小样本、去掉几个观察值等。
2. 奇异值问题
观察到的数据中可能有些奇异值,即与大多数观测值太不一致
可能是由于数据采集错误
可能是上帝疯狂了几次
比如,作业1中的资产负债率数据,最大值与99%分位数差很远,即有1%的观察值与大多数观测值太不一致。
Exer3.sas
PROC IMPORT OUT=two DATAFILE= F:\current_teaching\econometrics_II_2\data\FS_Combas1 DBMS=EXCEL REPLACE;
SHEET=FS_Combas1; GETNAMES=YES; MIXED=YES; USEDATE=YES;
RUN;
PROC IMPORT OUT=one DATAFILE= F:\current_teaching\econometrics_II_2\data\FS_Combas DBMS=EXCEL REPLACE;
SHEET=FS_Combas; GETNAMES=YES; MIXED=YES; USEDATE=YES;
文档评论(0)