Learn R Programming

RecordTest (version 2.0.0)

score.test: Score Test for the Likelihood of the Record Indicators

Description

This function performs score (or Lagrange multiplier) tests for the likelihood of the record indicators \(I_t\) to study the hypothesis of the classical record model.

Usage

score.test(
  X,
  record = c("upper", "lower"),
  alternative = c("two.sided", "greater", "less"),
  probabilities = c("different", "equal"),
  simulate.p.value = FALSE,
  B = 1000
)

Arguments

X

A numeric vector, matrix (or data frame).

record

A character string indicating the type of record, "upper" or "lower".

alternative

A character indicating the alternative hypothesis ("two.sided", "greater" or "less"). Different statistics are used in the one-sided and two-sided alternatives (see Details).

probabilities

A character indicating if the alternative hypothesis assume all series with "equal" or "different" probabilities of record.

simulate.p.value

Logical. Indicates whether to compute p-values by Monte Carlo simulation.

B

An integer specifying the number of replicates used in the Monte Carlo estimation.

Value

A list of class "htest" with the following elements:

statistic

Value of the statistic.

parameter

Degrees of freedom of the approximate \(\chi^2\) distribution.

p.value

P-value.

method

A character string indicating the type of test.

data.name

A character string giving the name of the data.

alternative

A character string indicating the alternative hypothesis.

Details

The null hypothesis of the score tests is that in every vector (columns of the matrix X), the probability of record at time \(t\) is \(1/t\) as in the classical record model (i.e., sequences of independent and identically distributed realizations), and the alternative depends on the alternative and probabilities arguments. The probability at time \(t\) is any value, but equal in the \(M\) series if probabilities = "equal" or different in the \(M\) series if probabilities = "different". The alternative hypothesis is more specific in the first case than in the second one. Furthermore, the "two.sided" alternative is tested with the usual Lagrange multiplier statistic, while the one-sided alternatives use specific statistics based on scores. (See Cebri<U+00E1>n, Castillo-Mateo and As<U+00ED>n (2021) for details on these tests.)

If alternative = "two.sided" & probabilities = "equal", under the null, the Lagrange multiplier statistic has an asymptotic \(\chi^2\) distribution with \(T-1\) degrees of freedom. It has been seen that for the approximation to be adequate \(M\) should be greater than \(T\). Otherwise, a simulate.p.value can be computed.

If alternative = "two.sided" & probabilities = "different", the asymptotic behavior of the Lagrange multiplier statistic is not fulfilled, but the Monte Carlo approach to simulate the p-value is applied.

If alternative is one-sided and probabilities = "equal", the statistic of the test is $$\mathcal{T} = \sum_{t=2}^T \frac{(t S_t-M)^2}{M(t-1)} I_{\{S_t > M/t\}}.$$ The p-value of this test is estimated with Monte Carlo simulations, since the compute the exact distribution of \(\mathcal{T}\) is very expensive.

If alternative is one-sided and probabilities = "different", the statistic of the test is $$\mathcal{S} = \frac{\sum_{t=2}^T t (t S_t - M) / (t - 1)}{\sqrt{M \sum_{t=2}^T t^2 / (t - 1)}},$$ which is asymptotically standarnd normal distributed in \(M\). It is equivalent to the statistic of the weighted number of records N.test with weights \(\omega_t = t^2 / (t-1)\) \((t=2,\ldots,T)\).

References

Cebri<U+00E1>n A, Castillo-Mateo J, As<U+00ED>n J (2021). <U+201C>Record Tests to detect non stationarity in the tails with an application to climate change.<U+201D> Unpublished manuscript.

See Also

lr.test, global.test

Examples

Run this code
# NOT RUN {
set.seed(23)
# two-sided and different probabilities of record, always simulated the p-value
score.test(ZaragozaSeries, probabilities = "different")
# equal probabilities
score.test(ZaragozaSeries, probabilities = "equal")
# equal probabilities with simulated p-value
score.test(ZaragozaSeries, probabilities = "equal", simulate.p.value = TRUE)

# one-sided and different probabilities of record
score.test(ZaragozaSeries, alternative = "greater", probabilities = "different")
# different probabilities with simulated p-value
score.test(ZaragozaSeries, alternative = "greater", probabilities = "different", 
  simulate.p.value = TRUE)
# equal probabilities, always simulated the p-value
score.test(ZaragozaSeries, alternative = "greater", probabilities = "equal")
# }

Run the code above in your browser using DataLab