describe | R Documentation |
This generic function should be used for creating a
description of a shared resource and is used in conjunction with
attach.resource()
to utilize shared resources from an R session.
describe(x)
x |
the object to create the descriptor for. |
A user-defined description of a shared resource.
[bigmemory.sri::attach.resource()]
# Create a concrete function.
setMethod(
"describe",
signature(x = "list"),
function (x) {
print(x$value)
}
)
# Create an object to describe.
tst = list(loc = "in_ram_not_shared", value = "hello world")
# Describe it
describe(tst)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.