midas_r_plain: Restricted MIDAS regression

Description Usage Arguments Value Author(s) Examples

View source: R/midasreg.R

Description

Function for fitting MIDAS regression without the formula interface

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
midas_r_plain(
  y,
  X,
  z = NULL,
  weight,
  grw = NULL,
  startx,
  startz = NULL,
  method = c("Nelder-Mead", "BFGS"),
  ...
)

Arguments

y

model response

X

prepared matrix of high frequency variable lags

z

additional low frequency variables

weight

the weight function

grw

the gradient of weight function

startx

the starting values for weight function

startz

the starting values for additional low frequency variables

method

a method passed to optimx

...

additional parameters to optimx

Value

an object similar to midas_r object

Author(s)

Virmantas Kvedaras, Vaidotas Zemlys

Examples

1
2
3
4
5
6
7
8
9
data("USunempr")
data("USrealgdp")
y <- diff(log(USrealgdp))
x <- window(diff(USunempr),start=1949)
trend <- 1:length(y)

X<-fmls(x,11,12)

midas_r_plain(y,X,trend,weight=nealmon,startx=c(0,0,0))

midasr documentation built on Feb. 23, 2021, 5:11 p.m.