kelvin.to.fahrenheit: Convert from Kelvin to Fahrenheit.

Description Usage Arguments Value Note Author(s) See Also Examples

Description

kelvin.to.fahrenheit creates a numeric vector of temperatures in Fahrenheit from a numeric vector of temperatures in Kelvin.

Usage

1
kelvin.to.fahrenheit(T.kelvin, round = 2)

Arguments

T.kelvin

Numeric vector of temperatures in Kelvin.

round

An integer indicating the number of decimal places to round the converted value.

Value

A numeric vector of temperature values in Fahrenheit.

Note

Equations are from the source code for the National Oceanic and Atmospheric Association's online temperature converter.

Author(s)

Joshua Ferreri joshua.m.ferreri@gmail.com, Brooke Anderson brooke.anderson@colostate.edu

See Also

fahrenheit.to.kelvin

Examples

1
2
3
4
# Convert from Kelvin to Fahrenheit.
data(angeles)
angeles$TemperatureF <- kelvin.to.fahrenheit(angeles$TemperatureK)
angeles

weathermetrics documentation built on May 2, 2019, 2:18 a.m.