Skip to content

substitute() on arguments in ellipsis ("dot dot dot")?

1 message · lmo

lmo
#
A potential solution, at least in terms of producing the desired output, is the base R function alist:
[[1]]
1 + 2

[[2]]
[1] "a"

[[3]]
rnorm(3)
List of 3
?$ : language 1 + 2
?$ : chr "a"
?$ : language rnorm(3)


luke