[R] exporting the whole output

Jim Lemon jim at bitwrit.com.au
Sat Jun 5 13:10:43 CEST 2010


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



More information about the R-help mailing list