If I understand you correctly,
> I would like to export the esvr.pred object to a file so that I can > draw a graph of it against my original data in other software that I'm > using. > you cannot do this. You can export **data**, but of course any R "object" is either a binary or text (via dput) representation of an R structure, which can only be understood by R, not another software system. See ?write, ?write.table, or the R import/export manual for how to export data (as text) to be imported by other software. Cheers, Bert Bert Gunter Genentech Nonclinical Biostatistics ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.