Nothing
WB <- function(d, h) {
if(is.na(d) | is.na(h)) {
return(NA)
} else if (d == 0 | h == 0) {
return(0)
}
WB = round(0.0058*((d^2)*h)^1.0380, 5)
return(WB)
}
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.