Nothing
#' @title Order the Model
#' @description Orders the model and changes it to the correct format
#' @param models A vector of \code{string} that specifies the models
#' @details If the \code{models} are c("AR1", "WN", "AR1", "WN", "AR1+WN+AR1+WN"), it will be converted to
#' c("AR1-1", "WN-1", "AR1-2", "WN-2", "AR1+WN+AR1+WN").
#'
#' This function is used in \code{gen.lts()}
#' @keywords internal
#' @export
#' @examples
#' models = c("AR1", "WN", "AR1", "WN", "AR1+WN+AR1+WN")
#' new.models = orderModel(models)
#' new.models
#'
#' models = c('AR1', 'QN', 'WN', 'AR1+QN+WN')
#' new.models = orderModel(models)
#' new.models
orderModel = function(models){
count = table(models)
if( any(count>1)){
multi.models = names( count[count>1] )
for(model in multi.models){
num = count[model]
models[models == model] = paste( rep(model, num), rep('-', num), 1:num, sep = '' )
}
return(models)
}else{
return(models)
}
}
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.