Skip to content
Prev 140496 / 398503 Next

Dynamic string as element name in a list

Hi Henrique,
On Thu, Mar 27, 2008 at 2:52 PM, Henrique Dallazuanna <wwwhsd at gmail.com> wrote:
That easy ... Hadn't thought of it.  But now I have a refinement in foo()

foo <- function(x) {
out <- list()
lapply(x$clipno, function(c) {
  clipname <- x$clipname
  # stuff
  out[[clipname]] <- rnorm(5)
})
return(out)
}

But this returns the/an empty list?


Best regards,
Paul Lemmens