Re: [R] #Keeping row names when using as.data.frame.matrix

2013-05-17 Thread arun
c: Sent: Friday, May 17, 2013 12:46 PM Subject: [R] #Keeping row names when using as.data.frame.matrix #question I have the following data set: Date<-c("9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/8/2010

Re: [R] #Keeping row names when using as.data.frame.matrix

2013-05-17 Thread David Winsemius
On May 17, 2013, at 9:46 AM, Tim wrote: > #question I have the following data set: > > Date<-c("9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/8/2010") > > EstimatedQuantity<-c(3535,2772,3279,3411,3484,3274,3305) > > ScowNo<-c("4001","3002","4002","BR 8","4002","BR 8","400

[R] #Keeping row names when using as.data.frame.matrix

2013-05-17 Thread Tim
#question I have the following data set: Date<-c("9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/7/2010","9/8/2010") EstimatedQuantity<-c(3535,2772,3279,3411,3484,3274,3305) ScowNo<-c("4001","3002","4002","BR 8","4002","BR 8","4001") dataset<- data.frame(EstimatedQuantity,Date,ScowNo)