# Converts temperature parameters from C to K
tempsC2K <- function(pars, ll) {
for (i in which(grepl('T_', names(pars)))) {
pars[[i]][pars[[i]] < ll] <- pars[[i]][pars[[i]] < ll] + 273.15
}
return(pars)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.