I am working with a script that looks something like this:
testplot <- plot(fit, uniform=TRUE,
main="Classification Tree for MRC")
text(fit, use.n=TRUE, all=TRUE, cex=.8)
post(fit, file = "tree.ps",
title = "Classification Tree")
I'm not that familiar with how R handles images/plotting, but is there any way to generate a png or pdf file of the image instead of postscript format? I see in some tutorials that the demo images are in PNG's, but they all only show the post method of saving the plot. Do I have to convert the image outside of the script?