Create a list environment
Create a list environment
listenv(...) as.listenv(...)
... |
(optional) Named and/or unnamed objects to be assigned to the list environment. |
An environment of class listenv
.
x <- listenv(c = 2, a = 3, d = "hello") print(names(x)) names(x)[2] <- "A" x$b <- 5:8 y <- as.list(x) str(y) z <- as.listenv(y)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.