Dear group, Here are my objects in my environment:
> ls() [1] "Pos100415" "Pos100416" "posA" "pose15" "pose16" "pose16t" "position" "trade" "x" I need to pass the object "Pos100415" to a function. This element is a data.frame, obtained through a function: Pos(x)<-myfun(x) with x<-100415 in this example. If I do this : >posA<-paste(c("Pos",100415),collapse="") #I can't use directly Pos100415.I need to access it via paste(c("Pos",x),collapse="") in general. Here is what I got : >> posA [1] "Pos100415" It is certainly not what I want, as I need to have posA as the same data.frame than Pos100415. Any help? TY ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.