Nothing
.Vec2Mat <- function(x) {
prefix <- unique(
gsub("_\\d+_\\d+$", "", names(x))
)
output <- lapply(
X = prefix,
FUN = function(prefix) {
if (
prefix %in% c(
"theta",
"psi",
"sigma",
"sigma0"
)
) {
out <- .Vec2SymMat(
x = x,
prefix = prefix,
row_names = NULL,
col_names = NULL
)
} else {
out <- .Vec2FullMat(
x = x,
prefix = prefix,
row_names = NULL,
col_names = NULL
)
}
out
}
)
names(output) <- prefix
output
}
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.