DrawEllipse.Rd
Draw one or several ellipses on an existing plot.
the x and y co-ordinates for the centre(s) of the ellipse(s).
a scalar or a vector giving the semi-major axis of the ellipse.
a scalar or a vector giving the semi-minor axis of the ellipse.
angle of rotation in radians.
number of vertices to draw the ellipses.
color for borders. The default is par("fg")
. Use border = NA
to omit borders.
color(s) to fill or shade the annulus sector with. The default NA
(or also NULL
)
means do not fill (say draw transparent).
line type for borders and shading; defaults to "solid"
.
line width for borders and shading.
logical. If TRUE
the structure will be plotted. If FALSE
only the points are
calculated and returned. Use this if you want to combine several geometric
structures to a single polygon.
Use DegToRad
if you want to define rotation angle in degrees.
The function invisibly returns a list of the calculated coordinates for all shapes.
par(mfrow=c(1,2))
Canvas()
DrawEllipse(rot = c(1:3) * pi/3, col=SetAlpha(c("blue","red","green"), 0.5) )
plot(cars)
m <- var(cars)
eig <- eigen(m)
eig.val <- sqrt(eig$values)
eig.vec <- eig$vectors
DrawEllipse(x=mean(cars$speed), y=mean(cars$dist), radius.x=eig.val[1] , radius.y=eig.val[2]
, rot=acos(eig.vec[1,1]), border="blue", lwd=3)