# FCdegree package
# fahrenheit_to_celsius()
fahrenheit_to_celsius <- function(temp_F) {
temp_C <- (temp_F - 32) * 5 / 9
return(temp_C)
}
#fahrenheit_to_celsius(90)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.