getpval {LS2Wstat} | R Documentation |
Computes a p-value for the output of the test for stationarity.
Description
Computes and returns a p-value from the output of the bootstrap test for stationarity.
Usage
getpval(statvec, verbose = TRUE)
Arguments
statvec |
A vector of test statistics, such as that given by |
verbose |
If TRUE then the p-value is printed and a sentance declaring "stationary" or "not stationary" is printed. |
Value
p |
The p-value of the test. |
Author(s)
Sarah L. Taylor
References
Taylor, S.L., Eckley, I.A., and Nunes, M.A. (2014) A Test of Stationarity for Textured Images. Technometrics, 56 (3), 291-301.
See Also
Examples
#Generate a stationary image
testimage <- matrix(rnorm(64*64), nrow=64, ncol=64)
# Run test of stationarity
## Not run: TestofStat<-TOS2D(testimage)
# Obtain p-value
getpval(TestofStat$samples)
## End(Not run)
[Package LS2Wstat version 2.1-5 Index]