Re: [R] update search path for attached data

2008-07-05 Thread Ulrich Leopold
On Fri, 2008-07-04 at 15:13 +0100, Prof Brian Ripley wrote: > On Fri, 4 Jul 2008, Ulrich Leopold wrote: > > > Dear list, > > > > is there a way of updating the search path when using attach() for a data set. > > > > I am overwriting a variable in a data frame. To update teh search path I do > > the

Re: [R] update search path for attached data

2008-07-04 Thread Prof Brian Ripley
On Fri, 4 Jul 2008, Ulrich Leopold wrote: Dear list, is there a way of updating the search path when using attach() for a data set. I am overwriting a variable in a data frame. To update teh search path I do the follwoing: attach(dataset) some data manipulation of dataset detach(dataset) att

[R] update search path for attached data

2008-07-04 Thread Ulrich Leopold
Dear list, is there a way of updating the search path when using attach() for a data set. I am overwriting a variable in a data frame. To update teh search path I do the follwoing: > attach(dataset) > some data manipulation of dataset > detach(dataset) > attach(dataset) # to update the search pa