Re: [R] writing data to file

2012-03-22 Thread Peter Ehlers
On 2012-03-22 08:35, mail me wrote: Hi: I created a data frame df<- data.frame( person = c('John','Bob','Mary'), team = c('a','b','c'), stringsAsFactors = F); and obtained the expected output df person team 1 John a 2Bob b 3 Mary c now I want to save the whole

Re: [R] writing data to file

2012-03-22 Thread Gaurav Sood
look up dump On Thu, Mar 22, 2012 at 11:35 AM, mail me wrote: > Hi: > > I created a data frame > > df <- data.frame( person = c('John','Bob','Mary'), team = > c('a','b','c'), stringsAsFactors = F); > > and obtained the expected  output > >  df >  person   team > 1   John      a > 2    Bob      b