Nothing
dcircbeta <- function(x, m, a, b, rads = FALSE, logden = FALSE) {
if ( !rads ) x <- x * pi/180
con <- cos(x - m)
den <- -(a + b) * log(2) - lbeta(a, b) + (a - 0.5) * log(1 + con) + (b - 0.5) * log(1 - con)
if ( !logden ) den <- exp(den)
den
}
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.