FST_teststat_TN {STFTS}R Documentation

Test Statistic T_N in Functional Stationarity Test

Description

Calculate test statistic T_N for functional stationarity test, which was constructed in Horvath et al. (2014).

Usage

FST_teststat_TN(X)

Arguments

X

The functional time series being tested, inputted in a matrix form with each row representing each observation of the functional data values on equidistant points of any prespecified interval.

Value

The value of test statistic T_N calculated for functional stationarity test.

References

Horvath, L., Kokoszka, P., & Rice, G. (2014). Testing stationarity of functional time series. Journal of Econometrics, 179(1), 66-82.

Examples

N<-100
EX<-matrix(rep(0,N*100),ncol=100)
set.seed(1)
for (i in 1:N) {
temp<-rnorm(100,0,1)
EX[i,1]<-temp[1]
for (j in 2:100) {
EX[i,j]<-EX[i,j-1]+temp[j]
}
}
FST_teststat_TN(EX)

[Package STFTS version 0.1.0 Index]