R/celsius_to_kelvin.R

Defines functions celsius_to_kelvin

celsius_to_kelvin <- function(temp_C) {
  temp_K <- temp_C + 273.15
  return(temp_K)
}
jrobledob/docfun documentation built on Dec. 21, 2021, 3:15 a.m.