The access of environment included in the qenv
that contains all data objects.
Examples
q <- qenv()
q1 <- within(q, {
a <- 5
b <- data.frame(x = 1:10)
})
get_env(q1)
#> <environment: 0x55f293578020>
The access of environment included in the qenv
that contains all data objects.
q <- qenv()
q1 <- within(q, {
a <- 5
b <- data.frame(x = 1:10)
})
get_env(q1)
#> <environment: 0x55f293578020>