On Mon, 10 Jan 2005, Peter Dalgaard wrote:
A screen shot of a ps file? That sounds ... weird. If you can view it, presumably you have Ghostscript and that can do png files.
However, will textual output do?
plot(0,type="n",axes=FALSE, xlab="", ylab="") con <- textConnection("txt","w") sink(con); ftable(UCBAdmissions); sink() close(con) par(family="mono") text(1,0,paste(txt,collapse="\n"))
and the middle three lines could also be done with
txt<-capture.output(ftable(UCBAdmissions))
-thomas
______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
