getSearchPath | R Documentation |
Returns a list with the environments or names of the environments on the search path. These functions are used for testing, use search instead.
getSearchPath(where = parent.frame())
getSearchPathNames(where = parent.frame())
getSearchPathContent(where = parent.frame())
getSearchPathDuplicates(where = parent.frame())
where |
(environment | module | function) the object for the search path should be investigated. If we supply a list with functions (e.g. a module), the environment of the first function in that list is used. |
getSearchPath()
getSearchPathNames()
getSearchPathContent()
m <- module({
export("foo")
import("stats", "median")
foo <- function() "foo"
bar <- function() "bar"
})
getSearchPathContent(m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.