Description Format Source Examples
The monthly precipitation (in mm) in Paris from 1688 to 2009.
A uts
object.
This dataset was imported by download_paris_precipitation
in January 2016 from a website by the NOAA National Climatic Data Center.
Slonosky, V.C. 2002. Wet winters, dry summers? Three centuries of precipitation data from Paris Geophys. Res. Lett., Vol. 29(19), 1895
1 2 3 4 5 6 7 8 9 10 11 12 | data(paris_precipitation)
plot(paris_precipitation, max_dt=ddays(31), type="o", cex=0.25)
# Most consecutive observations are one month apart
table(round(diff(time(paris_precipitation)) / 365 * 12))
# Plot 20-year two-sided rolling average
if (requireNamespace("utsOperators", quietly=TRUE)) {
roll_avg <- utsOperators::rolling_apply(paris_precipitation, width=dyears(20), FUN=mean,
align="center", interior=TRUE)
plot(roll_avg, max_dt=dyears(1))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.