Description Usage Arguments Examples
Create a canvas to represent the timing and the regularity of seasonal measures in a polar coordinate system.
1 | SeasonPlot(..., xlab = "Timing", ylab = "Regularity")
|
... |
Other parameters passed to ggplot. |
xlab, ylab |
Axis labels. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | library(CSHShydRology)
library(ggplot2)
## Basic plot
SeasonPlot()
## Plot with points
xd <- DemoData('region')
stat.season <- as.data.frame(SeasonStat(date~site, xd))
SeasonPlot() +
geom_point(data = stat.season, aes(x = angle, y = radius),
colour = 'blue') +
theme_bw()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.