attach.resource | R Documentation |
This generic function should be used to attach to a system-wide shared resource on a computer. It is used by other packages.
attach.resource(obj, ...)
obj |
a descriptor object describing the location and type of a shared resource. |
... |
other information needed for object-specific attaching. |
An R object that makes use of a share resource.
# Create a concrete function.
setMethod(
"attach.resource",
signature(obj = "NULL"),
function (obj, ...) {
NULL
}
)
# Describe it
attach.resource(NULL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.