Create a vector of temperatures in Fahrenheit from a vector of temperatures in Celsius
创建一个矢量的温度在华氏的温度在摄氏一个向量
用法----------Usage----------
celsius.to.fahrenheit(T.celsius, round = 2)
参数----------Arguments----------
参数:T.celsius
a vector of temperature values in Celsius
在摄氏温度值的矢量的
参数:round
number of digits to round converted value
24转换后的值的位数
值----------Value----------
A vector of temperature values in Fahrenheit
华氏温度值的矢量
注意----------Note----------
Equations are from the source code for the US National Weather Service's online heat index calculator (http://www.hpc.ncep.noaa.gov/html/heatindex.shtml).
方程是从美国国家气象局的网上热指数的计算器(http://www.hpc.ncep.noaa.gov/html/heatindex.shtml)的源代码。
(作者)----------Author(s)----------
Brooke Anderson and Roger Peng
参见----------See Also----------
fahrenheit.to.celsius
fahrenheit.to.celsius
实例----------Examples----------
## Convert from Celsius to Fahrenheit[#从摄氏转换到华氏]
data(lyon)
lyon$TemperatureF <- celsius.to.fahrenheit(lyon$TemperatureC)
lyon