| iplot.list {iplots} | R Documentation |
These functions are used to manage currently open iPlots. Exactly one
of the open iPlots is the current plot. Every newly created iPlot
automatically becomes the current plot. Any plot specific functions, such
as ilines operate on the current plot.
iplot.list returns all currently registered iPlots
(even if they are hidden).
iplot.cur returns the ID of the current plot.
iplot.next and iplot.prev return the ID
of the next resp. previous plot in the list relative to the plot
specified by the argument.
iplot.set makes the plot with the specified ID current.
iplot.off closes the plot.
iplot.list() iplot.cur() iplot.next(which=iplot.cur()) iplot.prev(which=iplot.cur()) iplot.set(which=iplot.next()) iplot.off()
which |
An integer specifying a plot number. |
data(iris) attach(iris) iplot(Sepal.Width,Petal.Width) ibar(Species) iplot.list()