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