On 03/03/2008, at 22.20, [EMAIL PROTECTED] wrote: > Is there a way to rename R objects? > I am looking for a way to rename objects > without making new objects. > > #For example: > x = c(1:40) > # I wish to use a function to rename x, already created, to y, > perhaps by > obj.rename(x,y) > # or > obj.rename("x","y") y <- x # changes x to y with same values.
Ericka ______________________________________________ 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.