ch_polar_plot {CSHShydRology} | R Documentation |
Polar plot of daily streamflows
Description
Produces a polar plot similar to that used in Whitfield and Cannon, 2000. It uses output
from the function ch_binned_MannWhitney
or a data structure created using
the function ch_polar_plot_prep
.
Usage
ch_polar_plot(
bmw,
lcol1 = c("black", "gray50"),
lcol2 = c("black", "gray50"),
lfill = c("yellow", "green"),
lsig = c("red", "blue")
)
Arguments
bmw |
output from |
lcol1 |
line colour, default is |
lcol2 |
point colour, default is |
lfill |
fill colour, default is |
lsig |
significance symbol colour, default is |
Value
No value is returned; a standard R graphic is created.
Author(s)
Paul Whitfield
References
Whitfield, P.H. and A.J. Cannon. 2000. Polar plotting of seasonal hydrologic and climatic data. Northwest Science 74: 76-80.
Whitfield, P.H., Cannon, A.J., 2000. Recent variations in climate and hydrology in Canada. Canadian Water Resources Journal 25: 19-65.
See Also
ch_binned_MannWhitney
ch_polar_plot_prep
Examples
range1 <- c(1970,1979)
range2 <- c(1990,1999)
b_MW <- ch_binned_MannWhitney(CAN05AA008, step = 5, range1, range2,
ptest <- 0.05)
ch_polar_plot(b_MW)