Re: [R] Appending Data to A n Existing List...

2010-02-18 Thread Jason Rupert
tuff=cost_limits)) [[1]] [1] "house" [[2]] [1] "brick" "wood" [[3]] [1] 1600 1800 2000 2400 [[4]] [1] 20.2 350010.2 $CostStuff [1] 20.2 350010.2 - Original Message From: Bert Gunter To: Jason Rupert ; R-help@r-project.org Sent: Thu, Februar

Re: [R] Appending Data to A n Existing List...

2010-02-18 Thread Bert Gunter
roject.org [mailto:r-help-boun...@r-project.org] On Behalf Of Jason Rupert Sent: Thursday, February 18, 2010 3:16 PM To: R-help@r-project.org Subject: [R] Appending Data to A n Existing List... What steps can be take to append data to a list? Suppose I have the following list and want to append

Re: [R] Appending Data to A n Existing List...

2010-02-18 Thread David Winsemius
On Feb 18, 2010, at 6:15 PM, Jason Rupert wrote: 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?

[R] Appending Data to A n Existing List...

2010-02-18 Thread Jason Rupert
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... ___