Skip to content
Prev 17672 / 63421 Next

Lists and data frames (PR#8143)

fwagner at fh-lausitz.de wrote:

            
NO!

1. No, this is not a bug!
2. No, this was not an error but a *warning* which tells you that the 
length does not match.
Each Element of *vector* mylist must be a list of length one, hence you 
cannot assign one of length two. Instead you can say:

mylist[1:2] <- list(value1=3, value2=5)

This is a question that might go to R-help, if you do not understand 
what is described in the docs. The manual is correct, hence this is not 
a bug.
Please read the docs on how to post bugs and how a bug is defined ...

Uwe Ligges