COMANDERA (SVAR) Flashcards

1
Q

Que librerias ocupamos en modelos SVAR

A
  1. library(tidyverse)
  2. library(dynlm)
  3. library(forecast)
  4. library(tseries)
  5. library(vars)
  6. library(aTSA)
  7. library(lmtest)
  8. library(quantmod)
  9. library(mFilter)
  10. library(nlme)
  11. library(graphics)
  12. library(fimport)
  13. library(stats)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Como se diferencia la base de datos para dos variables en SVAR?

A

X<-ts(Base_Monetaria_M2_e_IPC2$IPC, start=c(2001,12), freq=12)

Y<-ts(Base_Monetaria_M2_e_IPC2$M1, start=c(2001,12), freq=12)

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

Como generamos un grafico donde se pueda ver las tendencias de las variables?

A

ts.plot(X)
ts.plot(Y)
ts.plot(lnY, lnX, col = c(“red3”, “blue”), main =”Tendencia”)

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

como se transforman las variables en log?

A

lnY = log(Y)
lnX = log(X)

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

Como se comprueba si las variables tienen raíz unitaria o no?

A

adf.test(lnY)
pp.test(lnY)

adf.test(lnX)
pp.test(lnX)

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

como creo un grafico que me indique que el modelo ya esta estacionarizado?

A

ts.plot(dlnY, dlnX, col=c(“red3”, “blue”))

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

Como aplicar las restricciones a travez de una matriz identidad?

A

matriz <- diag(2)
diag = diagonal (2)= dos variables
matriz
matriz[2,1] <- NA
matriz

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

Como se combina dos variables en una sola base?

A

sv<- cbind(dlnx, dlny)

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

como se selecciona el numero optimo de rezagos?

A

lagselect<-VARselect(sv, lag.max =14, type = “both”)

lagselect$selection (criterios akaike)

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