Prepare graphics device
Based on provided fileName opens and sets appropriate graphical device: pdf, postscript,
interactive graphical window, or (only on windows) windows metafile,.
preparePlot(fileName="Rplot",...)
fileName |
Name of the file to store the output to. |
... |
Further parameters passed to device. |
On Windows also .emf extension is supported which opens win.metafile
and creates vector graphics in windows enhanced metafile format.
The extension .tiff opens bitmap device which produces bitmap via postscript device.
Therefore it requires Ghostscript to be installed and on the executable path.
Some sensible default values are passed to created devices, but further options can be
passed via ....
A plot device is opened and nothing is returned to the R interpreter.
Marko Robnik-Sikonja
CORElearn,
plot.ordEval,
pdf,
postscript,
jpeg,
bmp,
tiff,
png,
Devices
# prepare a data set
dat <- ordDataGen(200)
# evaluate ordered features with ordEval
oe <- ordEval(class ~ ., dat, ordEvalNoRandomNormalizers=200)
# the folowing line if uncommented will create a separate
# postscript file with given filename for each attribute
# preparePlot("myGraph%03d.ps")
plot(oe)
dev.off()Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.