| get_anything | R Documentation |
This function extends base::get() to support package namespace scoping (e.g., "pkg::var").
It's particularly useful when working with package exports and namespace-qualified objects.
get_anything(x)
x |
Character string specifying the object to retrieve. Can be either a simple object name or a namespace-qualified name (e.g., "pkg::var") |
The requested object
# Get a namespace-qualified object
plnr::get_anything("plnr::nor_covid19_cases_by_time_location")
# Get a simple object (same as base::get)
x <- 1
get_anything("x")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.