preparePlot | R Documentation |
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. |
The function opens the graphical output device based on fileName
extension.
The extensions .pdf, .ps, .jpg, .bmp, .tif, .png, .tiff or none select pdf
, postscript
,
jpeg
, bmp
, tiff
,png
, bitmap
or a default (interactive) graphical 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()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.