#'Converts Fahrenheit to Celsius
#'
#'This function converts input temperatures in Fahrenheit to Celsius
#'@param temp_F The temperature in Fahrenheit
#'@return The temperature in Celsius
#'@export
#'@examples
#'fahrenheit_to_celsius(32)
fahrenheit_to_celsius <- function(temp_F){
temp_C <- (temp_F-32) * 5/9
return(temp_C)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.