R/ingarch.var.R

Defines functions ingarch.var

Documented in ingarch.var

ingarch.var <- function(intercept, past_obs=NULL, past_mean=NULL){
#Theoretical marginal variance of a Poisson INGARCH(p,q) process
##############################
  tsglm.parametercheck(param=list(intercept=intercept, past_obs=past_obs, past_mean=past_mean, xreg=NULL), link="identity")
  result <- ingarch.acf(intercept=intercept, past_obs=past_obs, past_mean=past_mean, lag.max=0, type="acvf", plot=FALSE)[[1]]
  return(result)
}

Try the tscount package in your browser

Any scripts or data that you put into this service are public.

tscount documentation built on May 11, 2023, 3:04 p.m.