Econometrics 4: ML, Logit and Probit Flashcards

1
Q

What is a parametric model? How does it differ from a non-parametric or semi-parametric model?

A

In a parametric model, we specify a functional form for our equation and aim to estimate the parameters that best fit this model to the data. Examples include OLS, NLLS, and ML estimation.

Nonparametric models aim instead to estimate the function that best fits the data.

Semiparametric models use a combination.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does it mean for a parametric model to be ‘nonlinear in the variables’, as opposed to ‘nonlinear in the parameters’?

A

If a parametric model can be written in the form f(y) = ∑β_ig(x1,…xn), it is linear in parameters. If f and g are linear, the model is also linear in the variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Can we use OLS to estimate models that are nonlinear in the variables, but not in the parameters?

A

Yes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Suppose we estimate the model lny ~ x. How do we interpret β?

A

When x increases by one unit, y increases by 100β%.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Suppose we estimate the model y ~ ln x. How do we interpret β?

A

When x increases 1%, Y increases 0.01β units.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Suppose we estimate ln y ~ ln x. How do we interpret β?

A

Elasticity of y w.r.t. x.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is nonlinear least squares?

A

Nonlinear least squares is an extremum estimator that estimates parameters by minimising the sum of squared residuals ∑(y - g(x,θ))^2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is an ML estimator?

A

Maximum likelihood estimators find estimates of parameters that maximise the likelihood of seeing the data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Why is linear regression poorly suited for binary choice models?

A
  • The error term is guaranteed to be heteroscedastic.
  • Predicted probabilities may not fall between 0 and 1.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is pseudo-R^2?

A

1-l(θ)/l(y)
The amount of variation explained by the model, compared to that explainable by a constant.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Are the ML estimators of binary choice models asymptotically normal?

A

Yes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Explain how Gauss-Newton approximation works.

A

If we have a system of nonlinear equations to solve, we can numerically approximate the solution using the Gauss-Newton method.

We start by taking the first-order Taylor approximation of the system around some initial estimate, generating a system we can solve using OLS. Iterate with this new value as the estimate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Discuss the asymptotic properties of MLE.

A

Under fairly general conditions, the ML estimators are asymptotically normal and consistent.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly