exactLoglikelihood: Exact log-likelihood and MLE for variance

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Provides an exact log-likelihood that is exactly equal to the value of the probability density function with the random variables replaced by data and the parameters replaced by their estimated value. The corresponding estimate of the variance term is return.

Usage

1
exactLoglikelihood(r, z, innovationVarianceQ = TRUE)

Arguments

r

the portion of autocovariance function which when multiplied by the variance term equals the full autocovariance function.

z

the time series assumed to have mean zero

innovationVarianceQ

When TRUE, the variance term is the innovation variance and when FALSE it is the variance of the time series. For ARFIMA models, set to TRUE. But FGN requires setting innovationVarianceQ to FALSE since only the innovation variance is not known and so the likelihood has a slightly different form.

Details

This function uses the trench algorithm that is implememented in C. This function is provided to include all multiplicative constants. For many purposes, such as MLE, we only need to likelihood function up to a multiplicative constant. But for information criteria, we may need the constant terms so we can compare our results with other types of models or with other software such as arima(). The arima() function also computes the exact log-likelihood and uses it in the computation of the AIC and BIC.

Value

LL

exact log-likelihood

sigmaSq

MLE for the variance term. If innovationVarianceQ is TRUE, is the an estimate of the residual variance otherwise it is an estimate of the variance of the time series.

Author(s)

A. I. McLeod, aimcleod@uwo.ca

See Also

TrenchLoglikelihood, DLLoglikelihood

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
set.seed(7773311)
n <- 200
z <- arima.sim(model=list(ar=0.9, ma=-0.6), n=n, n.start=10^4)
out <- arima(z, order=c(1,0,1), include.mean=FALSE)
out
#note
#sigma^2 estimated as 0.9558:  log likelihood = -279.66,  aic = 565.31
r <- tacvfARMA(phi=coef(out)[1], theta=-coef(out)[2], maxLag=n-1)
exactLoglikelihood(r, z, innovationVarianceQ = TRUE)
#agrees!

Example output

Call:
arima(x = z, order = c(1, 0, 1), include.mean = FALSE)

Coefficients:
         ar1      ma1
      0.9561  -0.7443
s.e.  0.0274   0.0619

sigma^2 estimated as 0.9558:  log likelihood = -279.66,  aic = 565.31
$LL
[1] -279.6552

$sigmaSq
[1] 0.9558039

ltsa documentation built on May 2, 2019, 4:01 a.m.