approx.CLM <- function(num, den, epsilon){
w.den <- which(den == epsilon)
w.num <- num[w.den]
res <- ifelse(10 * abs(w.num) > epsilon, w.num * epsilon, w.num)
num[w.den] <- res
return(num)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.