Nothing
"pois.approx" <-
function(x, pt = 1, conf.level = .95) {
Z <- qnorm(0.5*(1 + conf.level))
SE.R <- sqrt(x/pt^2)
lower <- x/pt - Z*SE.R
upper <- x/pt + Z*SE.R
data.frame(x = x,
pt = pt,
rate = x/pt,
lower = lower,
upper = upper,
conf.level = conf.level
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.