Looking for 4EK631 Econometric Modelling (2025/2026 Summer) test answers and solutions? Browse our comprehensive collection of verified answers for 4EK631 Econometric Modelling (2025/2026 Summer) at moodle.vse.cz.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Suppose the two variables, x and y, are integrated of order one, and their linear combination is tested using the Augmented Dickey–Fuller (ADF) test, yielding the following results: test statistic = −4.15 and critical value = −3.97.
You want to construct either
(a) an Error Correction Model (ECM), or
(b) a model in differences:
Which model is most appropriate?
library('wooldridge')library('urca')data(inven)inven$gdp
Consider the real money (lrm1 ) and real income ( package. Both time series are integrated of order 1.
Use a classical linear regression model and the Augmented Dickey-Fuller Unit Root (ADF) test via the ur.df function to determine whether there is a cointegration relationship
library(urca)data(finland)lm(lny ~ lrm1, data = finland)
Model the daily closing prices of DAX (Deutsche Aktienindex) on the prices of FTSE (Financial Times Stock Exchange) using a finite distributed lag
data(EuStockMarkets) m3 <- lm(DAX[3:100] ~ FTSE[3:100] + FTSE[2:99] + FTSE[1:98], data=EuStockMarkets)
Report the impact multiplier (propensity) using at least 2 decimal places.
Suppose you want to model the stopping distances of cars (dist) based on their speed (speed). Your task is to test for the presence of outliers in the data using Grubbs' test.
library(outliers) data("cars") head(cars)
Use the grubbs.test function from the
Select all correct statements about Grubbs’ test. Note that multiple answers may be correct, and incorrect answers will result in point deductions.
Your task is to model the stopping distances of cars (dist) using a classical linear model (lm function), with the speed of the cars (speed) as the explanatory variable.
data("cars") head(cars)
Report the Cook's distance value for the most influential observation using the cooks.distance function.
Select all correct statements about the finite distributed lag model. Note that multiple answers may be correct. (A wrong answer will result in negative points.)
Model the daily closing prices of DAX (Deutsche Aktienindex) on the prices of FTSE (Financial Times Stock Exchange) using a finite distributed lag model:
data(EuStockMarkets)m3 <- lm(DAX[3:100] ~ FTSE[3:100] + FTSE[2:99] + FTSE[1:98], data=EuStockMarkets)
Report the long-run multiplier (propensity) using at least 2 decimal places.
Your task is to model the the flow of the River Nile . Use the following snippet of the script:
data("Nile")
Estimate the following model using the
Is the linear trend statistically significant