What steps can be take to append data to a list? Suppose I have the following list and want to append a z axist to the list? pts <- list(x=cars[,1], y=cars[,2]) z<-rnorm(max(dim(cars))) How would I go about appending z to an existing list? Thanks a ton...