gutils {rioja} | R Documentation |
Graphic utilities.
Description
Functions to perform simple graphics or enhance existing plots.
Usage
hulls(x, y, gr, col.gr=NULL)
figCnvt(fig1, fig2)
Arguments
x , y |
vectors of x, y coordinates. |
gr |
factor to grop observations. |
col.gr |
a single colour or a vector of colours of length nG, where nG is the number of groups. |
fig1 , fig2 |
original |
Details
Function hulls
is a wrapper for chull
to add convex hulls to a scatterplot, optionally specifying a different colour for each hull.
Function figCnvt
projects a set of fig
dimensions fig2
with respect to an original set fig1
. Useful for laying out plots where the ploting region has already been partitioned using fig
.
Value
Function figCnvt
returns a vector of 4 values specifying the new new figure dimensions.
Author(s)
Steve Juggins
Examples
data(iris)
with(iris, plot(Sepal.Width, Sepal.Length, col=as.integer(Species)))
with(iris, hulls(Sepal.Width, Sepal.Length, gr=(Species)))
[Package rioja version 1.0-6 Index]