| pageList | R Documentation |
When your current session has registered shared memory variables via registerVariables internally the variable is tracked until it is released via releaseVariables.
This function serves as a tool to check whether all variables have been free'd after usage or to see what variables are currently held by the session.
pageList()
The string of each element of the output list has the format environment, backslash, backslash <namespace name>.<variable name>. Default is lokal environment.
An [1:m] list of characters of the registered p namespaces, each of them having up to k variables, m<=p*k. Each element of the list is a combination of namespace and variable name
Use alongside viewList to ensure all views and pages are cleared before shutdown.
Julian Maerte
viewList, registerVariables, releaseVariables
pageList()
## Not run:
# = list()
## End(Not run)
mat = matrix(0,5,5)
registerVariables("ns_pageL", list(mat=mat))
pageList()
## Not run:
# = list("mat")
## End(Not run)
releaseVariables("ns_pageL", c("mat"))
pageList()
## Not run:
# = list()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.