Nothing
###########################################################################
# is.stationary #
# #
# The purpose of the is.stationary function is to provide a logical test #
# regarding whether or not a vector, matrix, or demonoid object is #
# stationary. The Geweke.Diagnostic function is used. #
###########################################################################
is.stationary <- function(x)
{
if(missing(x)) stop("The x argument is required.")
stationary <- FALSE
if(is.vector(x)) {
if(is.constant(x)) return(TRUE)
options(warn=-1)
test <- try(as.vector(Geweke.Diagnostic(x)), silent=TRUE)
options(warn=0)
if(!inherits(test, "try-error") & is.finite(test))
if((test > -2) & (test < 2)) stationarity <- TRUE
}
else if(is.matrix(x)) {
options(warn=-1)
test <- try(as.vector(Geweke.Diagnostic(x)), silent=TRUE)
options(warn=0)
if(!inherits(test, "try-error") & all(is.finite(test)))
if(all(test > -2) & all(test < 2)) stationary <- TRUE
}
else if(identical(class(x), "demonoid")) {
if(x$Rec.BurnIn.Thinned < nrow(x$Posterior1)) stationary <- TRUE}
else if(identical(class(x), "laplace")) {
warning("x is an object of class laplace.")
stationary <- TRUE}
else warning("x is an unrecognized object.")
return(stationary)
}
#End
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.