The attempt made was to reproduce exactly the example you reported (of
course).
Notice that this is incorrect usage, as you are trying to replace one
element by 2. We have since found another example of this, and fixed it,
but it is nothing new in 2.2.0. Please try a current version of R
(R-
When an attempt was made to reproduce this on other platforms,
how high was the index? For one of my Apples, I need to take
it very high, maybe 100? Sorry, I guess I edited that part
out.
--
zi <- vector()
for(i in 1:100) {
zi[i] <- c(1,2)
}
zi[,1]
--
___