#https://stirlingcodingclub.github.io/SCC_R_package/notebook/Rpackage_notes.html
F_to_C <- function(F_temp){
C_temp <- (F_temp - 32) * 5/9;
return(C_temp);
}
C_to_F <- function(C_temp){
F_temp <- (C_temp * 9/5) + 32;
return(F_temp);
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.