
Last chance! 50% off unlimited learning
Sale ends in
## S3 method for class 'windrose':
plot(x, type=c("count","mean","median","fivenum"),
mgp=getOption("oceMgp"),
mar=c(mgp[1], mgp[1], 1+mgp[1], mgp[1]), col, ...)
windrose
object, e.g. as created by as.windrose
.fivenum
representation of
the values.par(mgp)
, and
also for par(mar)
, computed from this. The default is
tighter than the R default, in order to use more space for the
data and less for the axes.par("mar")
.c("red", "pink", "blue", "lightgray")
. For
the first three types of plot, the first colour in this list is
used to fill in the rose, the third is used for the as.windrose
creates a wind-rose object, and
summary.windrose
produces a numerical summary.library(oce)
opar <- par(no.readonly = TRUE)
xcomp <- rnorm(360) + 1
ycomp <- rnorm(360)
wr <- as.windrose(xcomp, ycomp)
par(mfrow=c(1,2))
plot(wr)
plot(wr, "fivenum")
par(opar)
Run the code above in your browser using DataLab