seas.temp.plot {seas} | R Documentation |
Plot seasonal temperature normals
Description
Plot seasonal temperature normals using boxplots, and also plot seasonal diurnal variability between minimum and maximum temperature.
Usage
seas.temp.plot(x, width = 11, start = 1, rep = 0, start.day = 1,
var = c("t_min", "t_max", "t_mean"),
add.alt = FALSE, ylim, main, ylab, ...)
Arguments
x |
a |
width |
size of bin; see |
start |
starting bin number; e.g., if |
rep |
repetition of the bins in the boxplots |
start.day |
if |
var |
array specifying the names of the columns in |
add.alt |
|
ylim |
|
main |
title for plot; if it is missing, then it will automatically be generated |
ylab |
y-axis label; if it is missing, then it will automatically be generated |
... |
ignored |
Details
Plots boxplots for seasonal temperature normals from mean daily temperature, and diurnal variability with the mean difference of daily minimum and maximum temperatures (red vertical lines). If the mean is not supplied, it is calculated from the mean of daily maximum and minimum temperatures.
Value
Returns values from boxplot
statistics on mean temperature.
Note
This function was formerly named plot.seas.temp
, but required
renaming as it is not an S3 method.
Author(s)
Mike Toews
See Also
seas.var.plot
, plot.seas.norm
,
year.plot
Use mksub
to make a subset of x
.
Examples
data(mscdata)
dat <- mksub(mscdata, id=1108447)
seas.temp.plot(dat)
seas.temp.plot(dat, width="mon", add.alt=TRUE)
# starting and ending elsewhere
seas.temp.plot(dat, start=18, rep=3)