Nothing
dcirc <- function(u, rads = TRUE, mu, kappa, rho, type = "vm", logden = FALSE) {
if ( type == "vm" ) {
den <- Directional::dvm(u, mu, kappa, rads = rads, logden = logden)
} else if ( type == "cp" ) {
den <- Directional::dcircpurka(u, mu, kappa, rads = rads, logden = logden)
} else if ( type == "pn" ) {
mu <- kappa * c( cos(mu), sin(mu) )
den <- Directional::dspml(u, mu, rads = rads, logden = logden)
} else if ( type == "gcpc" ) {
den <- Directional::dgcpc(u, omega = mu, g = kappa, rho = rho, rads = rads, logden = logden)
} else if ( type == "cipc" ) {
den <- Directional::dcipc(u, omega = mu, g = kappa, rads = rads, logden = logden)
}
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.