| d.river {plgraphics} | R Documentation |
Chemical Compounds in a Swiss River, Time Series
Description
This time series of chemical concentrations can be used to research the activities of photosynthesis and respiration in a river.
Usage
data("d.river")
Format
A time series with 9792 observations (10 minutes interval) on the following 12 variables.
dateDate of the observation, class
DatehourHour
pHpH
O2concentration of Oxygen
O2SOxygen saturation value
TTemperature [deg C]
H2CO3Carbon dioxide concentration in the water
CO2atmCarbon dioxide concentration in the atmosphere
Qflow
susunshine
prprecipitation
raradiation
Note
This is not a time series in the sense of ts of R.
The date-time information is contained in the variables date and
hour.
Source
The measurements have been collected in the river Glatt near Zurich.
Examples
data(d.river)
range(d.river$date)
t.i <- d.river$date < as.Date("2010-03-31")
plyx(~date, ~O2, data=d.river, subset=t.i & hour==14, smooth=FALSE)
d.river$Date <- gendateaxis(d.river$date, hour=d.river$hour)
plyx(O2~Date, data=d.river, subset=t.i, type="l")
plyx(O2+T+ra~Date, data=d.river, subset=t.i & hour==14,
smooth.par=0.5, smooth.xtrim=0.03, ycol=c(O2="blue",ra="red"))
[Package plgraphics version 1.2 Index]