R/convertTemperatures.R
convert2Kelvin.Rd
Converts temperature measurements into Kelvin
convert2Kelvin(temp, input = "C")
The value of the temperature to convert
The unit of the temperature to convert, allowed values are "C", "F".
Numeric value in Kelvin
convert2Kelvin(15, input="C") #> [1] 288.15 convert2Kelvin(15, input="F") #> [1] 263.7056