Simulated data | R Documentation |
tigerObs and pigObs are simulated data sets with times of observation. tigerTrue and pigTrue are densities from which the simulated observations were drawn.
data(simulatedData)
The data set consists of four vectors:
tigerObs is a vector of 100 observations of a crepuscular species in radians.
pigObs is a vector of 80 observations of a diurnal species in radians.
tigerTrue and pigTrue are vectors of densities at 128 times equidistant between 0 and 2\pi
inclusive.
The figures below show the true densities (solid line), the simulated data (rug at the foot of the plot) and a kernel density fitted to the simulated data (dotted line).
data(simulatedData)
xx <- seq(0, 2*pi, length=128)
plot(xx, tigerTrue, type='l') # True density from which sample was drawn
rug(tigerObs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.