Nothing
plot.tscgm <- function(x, mat=c("precision","autoregression"),...){
mat = match.arg(mat)
if (mat == "precision") {
prec <- x$theta
#colnames(prec) <- rownames(prec) <- colnames(data)
nw_full <- network(prec)
plot.network(nw_full,label = network.vertex.names(nw_full), usearrows = FALSE,
displayisolates = FALSE,...)
}
if (mat == "autoregression") {
autoR <- x$gamma
#colnames(autoR) <- rownames(autoR) <- colnames(data)
nw_full <- network(autoR, loops=TRUE)
plot.network(nw_full,label = network.vertex.names(nw_full), usearrows = TRUE,
displayisolates = FALSE,...)
}
}
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.