View source: R/tool-environment.R
| btw_this.environment | R Documentation |
Describe the contents of an environment
## S3 method for class 'environment'
btw_this(x, ..., items = NULL)
x |
An environment. |
... |
Additional arguments are silently ignored. |
items |
Optional. A character vector of objects in the environment to describe. |
A string describing the environment contents with #> prefixing
each object's printed representation.
btw_tool_env_describe_environment()
Other btw formatting methods:
btw_this(),
btw_this.character(),
btw_this.data.frame()
env <- new.env()
env$cyl_6 <- mtcars[mtcars$cyl == 6, ]
env$gear_5 <- mtcars[mtcars$gear == 5, ]
btw_this(env)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.