logo

Crowdly

Browser

Add to Chrome

4EK631 Econometric Modelling (2025/2026 Summer)

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?

View this question
What is the order of integration of the time series gdp from the Wooldridge package? Use a 5% significance level and the appropriate variant of the Augmented Dickey-Fuller Unit Root Test in the ur.df function from the urca package.

library('wooldridge')

library('urca')

data(inven)

inven$gdp 

View this question

Consider the real money (lrm1

) and real income

(

lny) time series from the urca

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

between these two time series.

library(urca)

data(finland)

lm(lny ~ lrm1, data = finland)

View this question

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 impact multiplier

 (propensity)

using at least 2 decimal places.

View this question

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 

outliers package and select the correct answer.

View this question

Select all correct statements about Grubbs’ test. Note that multiple answers may be correct, and incorrect answers will result in point deductions.

View this question

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.

View this question

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.)

View this question

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.

View this question

Your task

is to model the 

linear trend in

the

flow of the River Nile

. Use

the following snippet of the script:

data("Nile")

Estimate

the following model using the

 lm function with a linear trend: 

Is the linear trend 

statistically

significant

?

0%
0%
0%
View this question

Want instant access to all verified answers on moodle.vse.cz?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome