Nothing
###
### R routines for the R package mvmeta (c)
#
coef.mvmeta <-
function(object, format=c("vector","matrix"), ...) {
#
################################################################################
#
coef <- object$coefficients
format <- match.arg(format,c("vector","matrix"))
if(format=="matrix" || is.vector(coef)) return(coef)
names <- paste(rep(colnames(coef),each=nrow(coef)),
rep(rownames(coef),ncol(coef)),sep=".")
coef <- as.numeric(coef)
names(coef) <- names
#
coef
}
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.