Entering edit mode
Is this a limitation in the R language or am I missing something
fundamental (like an operator)
> a <- list("hello"<-c(1,2,3), "goodbye"<-c(1,2,3))
> a$hello
[1] 1 2 3
> b <- "hello"
> a$b
NULL
So how could we do the following for example.
> info <- names(a)
> for (i in 1:length(info)){cat(a$info[i]);}
Chris