norm.ci = function(x,se,alpha=0.05) {
x + qnorm(1-alpha/2)*c(-1,1)*se
}
lognorm.ci = function(x,se,alpha=0.05) {
x*exp(qnorm(1-alpha/2)*c(-1,1)*sqrt(log(1+(se/x)^2)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.