首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
辅导program程序、讲解R编程、R程序讲解 讲解留学生Prolog|辅导Web开发
项目预算:
开发周期:
发布时间:
要求地区:
Advanced Econometrics 2020 - Homework 2
Deadline: 23:59:59, Friday November 27, 2020
Instructions1
:
• Form groups of three yourself.
• As a solution, provide one Jupyter Notebook with R source-code. Code should be properly
commented, interpretations of results as well as theoretical derivations2
should be written
in markdown cells. This is the only file you need to send.
• Use “set.seed()“ function, so I can replicate your results.
• Be concise (no lengthy essays please). Although, be sure to include all important things as
I cannot second-guess your work.
• The problem set is due on 27th November. Late submission automatically means
0 points.
• If you have any questions concerning the homework, do contact me by mail. Do it rather
sooner than later.
1The contact person for this homework is Matěj Nevrla, the same mail as for submission of
homeworks.
2
If you prefer not to write formulas in LATEX, you can send PDF with your derivations and
interpretations in additional file and R code in Jupyter Notebook.
1
Problem 1 Bootstrap
(1.5 points)
Consider dataset city from the package boot. Data consists of random sample
of size n = 10 from the population of big cities in the US and each observation
corresponds to the number of inhabitants of a given city (in thousands) in year 1920
(variable u) and number of inhabitants of a given city in year 1930 (variable x).
Let (U, X) be a random vector corresponding to the number of inhabitants in the
years 1920 and 1930, and (ui
, xi), i = 1, . . . , 10, be our random sample.
Consider the following ratio
R ≡
E(X)
E(U)
.
a) Draw the dependence between xi and ui using the dataset.
b) Estimate the value of R from the random sample.
c) Compute the bootstrap standard error and the bootstrap bias of the estimate of
R. Use both ”brute force” bootstrapping and function boot from the respective
package.
d) Compute the 95% confidence intervals using both percentile and normal approximation
method. Argue whether the normal approximation is valid in this case.
e) Test (without refinement) H0 that R = 1 against the alternative HA : R ̸= 1.
Calculate bootstrap t-statistic and compare it with critical values of the standard
normal distribution. Use also the percentile method for testing H0 and compare
the results.
2
Problem 2 Endogeneity
(2 points)
Let us follow the idea of the first exercise from Seminar 6 but for now we create
another artificial dataset containing 300 observations (note that although variance
of RVs is specified below, R commands often require to specify standard deviation
instead):
z1 ∼ N(2, 3
2
), z2 ∼ N(2, 1.5
2
), z3 ∼ N(0, 2
2
), z4 ∼ N(1.8, 2.5
2
)
ϵ1 ∼ N(0, 1.5
2
), ϵ2 ∼ N(0, 1.5
2
), ϵ3 ∼ N(0, 1.5
2
)
x1 = 0.3z1 − z2 + 0.9z4 + 0.75ϵ1
x2 = 0.75z2 + 0.75ϵ2
x3 ∼ N(0, 1)
y = 1 + 2.5x1 − x2 + 0.45x3 + ϵ3
On the dataset, we should estimate the following model:
y = const + β1x1 + β3x3 + ϵ
a) Discuss the nature of the endogeneity problem in the system above. You might
check important correlations and you should explain the difference between x1
and x3. Do you expect to observe any bias within the OLS estimation? Explain
why.
b) Estimate the model by OLS and interpret.
c) The data set includes some potential IV candidates: z1; z2; z3; z4. What assumptions
need to be satisfied in order to have a ‘good’ instrument? Which of these
candidates seem to be ‘good’ instruments and why? Test their relevancy statistically.
Is there any invalid, irrelevant, or weak instrument?
d) Based on section d), choose the best instrument and run the IV regression. Run
also 2SLS regression using all ‘good’ instruments. Compare coefficient estimates
and standard errors
e) Finally, test for the endogeneity using the Hausman test. Report and interpret
the results.
f) Using extended dataset (simulate more data from the data generating process),
show that OLS is not consistent estimator of β1 and β3. Show that 2SLS provides
consistent results.
3
Problem 3 GMM
(1.5 points)
In the dataset hw_data.csv, you have a time series which comes from Moving Average
process with q lags - MA(q) process. You will need libraries gmm and tseries
to answer the following questions. Note that if you do not answer correctly point a),
all consecutive questions will be wrong, hence no points can be earned.
a) How would you identify the lag q? What is the lag?
b) Derive the moment conditions function for the process you identified previously
and write a corresponding function in R. Use more moment conditions than is
the number of coefficients that you want to estimate.
c) Estimate the model using gmm and both identity and optimal weighting matrix.
Provide the output and interpret the coefficient significance and the J-test statistics.
4
Problem 4 CAPM beta of Apple Inc.
(3 points)
You are going to estimate CAPM betas for Apple Inc. on two different time periods
and compare the results. Inference on the estimated parameters will be performed
using bootstrap.
CAPM beta for company i can be estimated by regressing its returns on market
returns using simple OLS
is risk-free interest rate, all at time t.
1. Download adjusted daily prices of Apple Inc. (ticker 'aapl') for year 2008
and 2017, separately. Download daily data for Nasdaq Composite Index (ticker
'^ixic'), which will be used as a proxy variable for market. Chicago Board
Options Exchange (CBOE) 10y interest rate T-note (ticker ’^tnx’) will be used
as a risk-free rate.
2. Compute log-returns for all series.
3. Draw histogram and kernel density approximation of Apple log returns. Compare
it with normal distribution with the same mean and standard deviation.
Does samples considerably deviate from normality? Which noticeable features
do you observe in the data? Perform this whole analysis on both time periods
separately.
4. Compute CAPM beta for Apple using simple OLS on each time period separately.
Compare the obtained results.
5. Use the nonparametric bootstrap to compute bootstrap standard error of CAPM
beta estimate based on 1000 bootstrap replications and bootstrap sample size
equal to the size of the original sample. Use boot command. Perform this
whole analysis on both time periods separately.
5
6. Graphically compare histogram and kernel density approximation (use gaussian
kernel only) of the boot-based set of 1000 bootstrapped CAPM betas with normal
distribution. Compute 95% percent confidence intervals for CAPM beta
for both time periods using percentile method and method based on normal
approximation. Which method is in this case probably more suitable. Based
on the estimated confidence intervals, do the estimates of CAPM beta significantly
differ over these 2 periods?
7. Another approach how to use bootstrap is instead of resampling the observations
is to resample the estimated residuals. Estimate CAPM beta by OLS,
save the estimated residuals, and perform bootstrap by resampling the residuals
and generating new values of dependent variables as
are resampled from empirical distribution function. In each bootstrap
replication, calculate values of dependent variable for all values of independent
variable. The rest of the procedure is the same as in the case of resampling the
observations. Perform this analysis on one time period of your choice. Compare
the results obtained from this approach and from the traditional approach from
above. Why this method may not be the optimal in this case?
6
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!