So I am very new to this but I'm trying to make bunch of objects with sequential names. Box1 thru Box100 and have each be an object containing c(0,0). My first though is to make a for loop of
for (i in 1:100 ) {
Box"i" <- c(0,0)
}
obviously Box"i" isn't something that works and I'm having a hard time figuring out how to do this properly. Any help would be appreciated.