View source: R/activity_code.r
| dvmkern | R Documentation |
Optionally weighted Von Mises kernel probability densities.
dvmkern(x, dat, wt = NULL, bw = NULL, adj = 1)
x |
Numeric vector of radian times at which to evaluate the PDF. |
dat |
Numeric vector of radian time data to which the PDF is fitted. |
wt |
A numeric vector of weights for each |
bw |
Numeric value for kernel bandwidth. |
adj |
Numeric kernel bandwidth multiplier. |
If bw not provided it is calculated internally using bw.calc. The adj argument is used to adjust bw to facilitate exploration of fit flexibility.
Numeric vector of probability densities evaluated at x.
bwcalc
#Example with made up input
tt <- runif(100,0,2*pi)
xx <- seq(0,2*pi, pi/256)
pdf <- dvmkern(xx, tt)
plot(xx, pdf, type="l")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.