Create a vector of temperatures in Celsius from a vector of temperature in Fahrenheit
创建一个矢量从矢量的温度在华氏的温度在摄氏
用法----------Usage----------
fahrenheit.to.celsius(T.fahrenheit, round = 2)
参数----------Arguments----------
参数:T.fahrenheit
a vector of temperature values in Fahrenheit
华氏温度值的向量
参数:round
number of digits to round the converted value
24转换后的值的位数
值----------Value----------
A vector of temperature values in Celsius
在摄氏温度值的矢量
注意----------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----------
celsius.to.fahrenheit
celsius.to.fahrenheit
实例----------Examples----------
## Convert from Fahrenheit to Celsius[#转换到华氏摄氏度]
data(norfolk)
norfolk$TempC <- fahrenheit.to.celsius(norfolk$TemperatureF)
norfolk