Displaying 1 result from an estimated 1 matches for "a12564175".
Did you mean:
a12154175
2007 Sep 07
3
enable object name to be called as object (a dataset)
What I am trying to do is as follows:
- I have listed names of all wanted objects (datasets A,B,C... ) in current
workspace as a vector:
obj <- c('A','B','C')
- then i need to use these objects, say to extract all the 1st columns and
bind to an existing dataset ('data'):
for ( i in 1:3){
newdata <- obj[i]
data <- cbind(data,newdata [[1]] )
}