Nothing
## File Name: log_dgnorm.R
## File Version: 0.06
## kernel of the generalized normal distribution
log_dgnorm <- function( x, loc, scale, power )
{
if ( power < 1E3 ){
y <- - ( abs( x - loc ) / scale )^power / power
} else {
y <- rep(0, length(x) )
}
return(y)
}
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.