Re: [R] How do you convert this from S Plus to R - any help appreciated . thanks

2006-01-27 Thread Barry Rowlingson
Briggs, Meredith M wrote: exportData(MU.Cost,paste(C:/RAUDSL/S,as.character(MU.Cost$Run.Id[1]), .,as.character(MU.Cost$MU.Id[1]),.MU.PRICE.OUTPUT.txt,sep=),append = FALSE,type=ASCII,quote=FALSE) Looks like perfectly good R to me. Except there's no exportData function. I assume this is an

Re: [R] How do you convert this from S Plus to R - any help appreciated . thanks

2006-01-27 Thread Bill.Venables
: [R] How do you convert this from S Plus to R - any help appreciated . thanks Briggs, Meredith M wrote: exportData(MU.Cost,paste(C:/RAUDSL/S,as.character(MU.Cost$Run.Id[1]), .,as.character(MU.Cost$MU.Id[1]),.MU.PRICE.OUTPUT.txt,sep=),append = FALSE,type=ASCII,quote=FALSE) Looks like

Re: [R] How do you convert this from S Plus to R - any help appreciated . thanks

2006-01-26 Thread Prof Brian Ripley
There is an `R Data Import/Export' manual to guide you on how to do data export in R. Please consult it. I only know vaguely what format exportData(type=ASCII) uses, and it is probably easier to work out what you want and tailor write.table() to give that. (I am not aware that the fine