# Get the argument (arg) from the info matrix
# arg: name of the argument returned
# argname: name of the argument to look for in the info matrix
getArg <- function(arg, info, argname, can.be.absent=FALSE) {
if (is.null(arg)) {
start <- paste("impossible to get argument", argname, "it was not given directly and");
if (!is.matrix(info)) {
stop(paste(start, "the info matrix was not given"))
}
if (!(argname %in% colnames(info))) {
if (can.be.absent) {
return(NULL)
} else {
stop(paste(start, "is not in the info matrix"))
}
}
if (nrow(info) < 1) {
stop(paste(start, "the info matrix has no row"))
}
arg <- info[1,argname]
if (is.na(arg)) {
stop(paste(start, "it is NA in the info matrix"))
}
}
return(arg)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.