Nothing
`safeNormPDF` <-
function(x) {
G.THRESH.NORM.PDF <- 35; ## threshold used to avoid numerical problem
x[x < -G.THRESH.NORM.PDF] <- -G.THRESH.NORM.PDF;
x[x > G.THRESH.NORM.PDF] <- G.THRESH.NORM.PDF;
dnorm(x);
}
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.