Nothing
#' The `cgeneric` class for [cgeneric()].
setClass(
"cgeneric",
slots = c(f = "list"),
validity = function(object) {
all(c("model", "n", "cgeneric") %in%
names(object$f))
}
)
#' The `rgeneric` class for [rgeneric()].
setClass(
"rgeneric",
slots = c(f = "list"),
validity = function(object) {
all(c("model", "n", "rgeneric") %in%
names(object$f))
}
)
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.