Nothing
beast123 <- function(Y, metadata=list(), prior=list(), mcmc=list(), extra=list(),
season = c('harmonic','svd','dummy','none'),
method = c('bayes','bic', 'aic','aicc','hic','bic0.25','bic0.5','bic1.5','bic2'), ... )
{
# tmplist = list(...)
# if (!hasArg("Y") || is.list(Y) || length(Y)==1) {
if (!hasArg("Y")) {
warning("Something is wrong with the input 'Y'. Make sure the Y par is a vector, a matrix, or an 3D array.")
invisible(return(NULL))
}
season = match.arg(season)
if ( season=='none') {
if( is.numeric(metadata) ) {
tmp = metadata
metadata = list();
if (length(tmp)==1){
metadata$startTime=tmp(1)
} else if( length(tmp)==2 ){
metadata$startTime=tmp(1)
metadata$deltaTime=tmp(2)
}
}
else if (is.list(metadata)) {} # do nothing
else { metadata=list() } # this branch should be never touched!
} else {
if( is.numeric(metadata) ) {
tmp = metadata
metadata = list();
if(length(tmp)==1){
metadata$period=tmp(1)
}
}
else if (is.list(metadata)) {} # do nothing
else { metadata=list() } # this branch should be never touched!
}
if (is.null(metadata$season)) metadata$season=season
method = match.arg(method)
funstr = paste0("beast_",method)
if (hasArg("local")){ # run the local developer's version of Rbeast
#ANS = .xxxCall( "rexFunction1", list(funstr,Y,metadata,prior,mcmc,extra), 212345, PACKAGE="Rbeast.mexw64")
} else{
ANS = .Call( BEASTV4_rexFunction, list(funstr,Y,metadata,prior,mcmc,extra), 212345)
}
invisible(return(ANS))
}
meanfilter <- function(x,n=5){filter(x,rep(1,n), sides=2)}
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.