R/Celsius.R

Defines functions fahrenheit_to_celsius

Documented in fahrenheit_to_celsius

#' Celsius
#'
#' @param temp_F
#'
#' @return
#' @export
#'
fahrenheit_to_celsius <- function(temp_F) {
  temp_C <- (temp_F - 32) * 5 / 9
  return(temp_C)
}
henriquesposito/LearningCurve documentation built on Aug. 31, 2020, 12:46 a.m.