Skip to contents

This function perform a test for the significance of the autocorrelation estimated by the iAR package models. This test is based in to take N disordered samples of the original data.

Usage

iARPermutation(
  series,
  times,
  series_esd = 0,
  iter = 100,
  coef,
  model = "iAR",
  plot = TRUE,
  xlim = c(-1, 0),
  df = 3
)

Arguments

series

Array with the time series observations.

times

Array with the irregular observational times.

series_esd

Array with the variance of the measurement errors.

iter

Number of disordered samples of the original data (N).

coef

autocorrelation estimated by one of the iAR package models.

model

model used to estimate the autocorrelation parameter ("iAR", "iAR-Gamma", "iAR-T", "CiAR" or "BiAR").

plot

logical; if true, the function return a density plot of the distribution of the bad fitted examples; if false, this function does not return a plot.

xlim

The x-axis limits (x1, x2) of the plot. Only works if plot='TRUE'. See plot.default for more details.

df

degrees of freedom parameter of the iAR-T model.

Value

A list with the following components:

coef

MLE of the autocorrelation parameter of the model.

bad

MLEs of the autocorrelation parameters of the models that has been fitted to the disordered samples.

norm

Mean and variance of the normal distribution of the disordered data.

z0

Statistic of the test (log(abs(phi))).

pvalue

P-value computed for the test.

Details

The null hypothesis of the test is: The autocorrelation coefficient estimated for the time series belongs to the distribution of the coefficients estimated on the disordered data, which are assumed to be uncorrelated. Therefore, if the hypothesis is accepted, it can be concluded that the observations of the time series are uncorrelated.The statistic of the test is log(phi) which was contrasted with a normal distribution with parameters corresponding to the log of the mean and the variance of the phi computed for the N samples of the disordered data. This test differs for iARTest in that to perform this test it is not necessary to know the period of the time series.

References

Eyheramendy S, Elorrieta F, Palma W (2018). “An irregular discrete time series model to identify residuals with autocorrelation in astronomical light curves.” Monthly Notices of the Royal Astronomical Society, 481(4), 4311-4322. ISSN 0035-8711, doi:10.1093/mnras/sty2487 , https://academic.oup.com/mnras/article-pdf/481/4/4311/25906473/sty2487.pdf.

See also

Examples

data(Planets)
t<-Planets[,1]
res<-Planets[,2]
y=res/sqrt(var(res))
#res3=iARloglik(y,t,standardized=TRUE)[1]
#res3$coef
#set.seed(6713)
#require(ggplot2)
#test<-iARPermutation(series=y,times=t,coef=res3$coef,model="iAR",plot=TRUE,xlim=c(-9.6,-9.45))