temperature(SpherWave)
temperature()所属R语言包:SpherWave
The Surface Air Temperature
地面空气温度
译者:生物统计家园网 机器人LoveR
描述----------Description----------
the surface air temperature in Celsius observed by a network of weather stations in 1961 through 1990.
表面空气温度在摄氏观察到一个在1961年至1990年的气象观测网。
用法----------Usage----------
data(temperature)
格式----------Format----------
A list of year, latlon (global grid point in degree), obs (temperature)
今年的名单,latlon(度)的全球格点,观测值(温度)
源----------Source----------
This data set was organized by Jones, Raper, Cherry, Goodess, Wigley, Santer, and Kelly (1991). The primary sources of this data can be obtained from http://cdiac.esd.ornl.gov/ftp.
该数据集是由琼斯,强奸犯,樱桃,Goodess,威格利,桑特和Kelly(1991)。可以从http://cdiac.esd.ornl.gov/ftp获得这个数据的主要来源。
实例----------Examples----------
### Observations of year 1967[##1967年的观察]
data(temperature)
names(temperature)
# Temperatures on 939 weather stations of year 1967 [1967年的939个气象站的温度]
temp67 <- temperature$obs[temperature$year == 1967]
# Locations of 939 weather stations [939个气象站的位置]
latlon <- temperature$latlon[temperature$year == 1967, ]
# Plot of the observations[图的意见]
sw.plot(z = temp67, latlon=latlon, type="obs", xlab="", ylab="")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|