Skip to content
Prev 302932 / 398503 Next

indexing in data frames

Amazing. You have to create the data frame and then add a variable
containing the list to keep R from checking the number of rows and
objecting:

This does not work
data.frame(b = c(1988, 1989),c = list(c(1985, 1982, 1984),c(1988, 1980)))

Nor this
data.frame(a$b, a$c)

-------
David