On 06/05/2010 07:31 PM, suman dhara wrote: > Sir, > I want to export the whole result generated by lda function.I have used the > following R-code.But, it is not working.Can you help me? > > > a<-lda(y~.,data=data) > write.table(a,file="G:/a.csv",sep=",") > Hi Suman, Try this: library(prettyR) delim.table(a,"G:/a.csv") Jim