'incorrect_bh' <- function(p_vals)
{
base_rate = 0.05
ox = order(p_vals, decreasing=FALSE)
xthreshold = base_rate*(1:length(ox))/length(ox)
over_flag = (xthreshold>p_vals[ox])
return(invisible(over_flag[ox]))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.