Nothing
generateUCMSigmaThetaExprList <- function(fit) {
wavesCombination <- expand.grid(t = seq(fit$info$T), tlinha = seq(fit$info$T))
sigmaThetaExpr <- mapply(function(t, tlinha) {
if (t == tlinha) {
parse(text = paste0("sigma2u + sigma2v"))
} else {
parse(text = paste0("sigma2u"))
}
}, wavesCombination$t, wavesCombination$tlinha, SIMPLIFY = FALSE)
sigmaThetaExprList <- list(
expr = sigmaThetaExpr,
paramsNames = c("sigma2u", "sigma2v")
)
return(sigmaThetaExprList)
}
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.