tempsalinity(UsingR)
tempsalinity()所属R语言包:UsingR
Temperature/Salinity measurements along a moving Eddy
温度/盐度测量沿移动涡流
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simulated measurements of temperature and salinity in the center of 'Eddy Juggernaut', a huge anti-cyclone (clockwise rotating) Loop Current Ring in the Gulf of Mexico. The start date is October 18, 1999.
模拟测量的温度和盐度“埃迪剑圣”的中心,一个巨大的反气旋(顺时针旋转)在墨西哥湾的回路电流环。起始日期是1999年10月18日。
用法----------Usage----------
data(tempsalinity)
格式----------Format----------
The data is stored as multivariate zooreg object with variables longitude, latitude, temperature (Celsius), and salinity (psu - practical salinity units http://www.toptotop.org/climate/psu.php).
数据存储对象变量的经度,纬度,温度(摄氏度)和盐度(PSU - 实用的盐度单位http://www.toptotop.org/climate/psu.php)作为多元zooreg的。
Details
详细信息----------Details----------
The temperature salinity profile of body of water can be characteristic. This data shows a change in the profile in time as the eddy accumulates new water.
水体温度盐度剖面特征。此数据显示在配置文件中的变化时间为涡积累新的水。
源----------Source----------
Data from simulation by Andrew Poje.
从模拟的数据由安德鲁·Poje。
实例----------Examples----------
data(tempsalinity)
if(require(zoo)) {
plot(tempsalinity[,3:4])
## overide plot.zoo method[#此改变plot.zoo方法]
plot.default(tempsalinity[,3:4])
abline(lm(salinity ~ temperature, tempsalinity, subset = 1:67))
abline(lm(salinity ~ temperature, tempsalinity, subset = -(1:67)))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|