Re: [R] Using the get() function on an object within a list

2010-03-30 Thread David Winsemius
On Mar 30, 2010, at 5:23 PM, klc wrote: Hi- I am trying use the get function to return the value of an object within a list. As an abbreviated example: "original" represents a list of several objects, one of which is "a. 1". original<-vector('list',5) names(original) <- c("a.1","a.

[R] Using the get() function on an object within a list

2010-03-30 Thread klc
Hi- I am trying use the get function to return the value of an object within a list. As an abbreviated example: "original" represents a list of several objects, one of which is "a.1". original<-vector('list',5) names(original) <- c("a.1","a.2","a.3","b.1","b.2") original$a.1 <- c(4,3)