aosat(UsingR)
aosat()所属R语言包:UsingR
Artic Oscillation data based on SAT data
北极涛动数据的基础上SAT数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A time series of January, February, and March measurements of the annular modes from January 1851 to March 1997.
的环形模式,从1851年1月至1997年一月,二月,三月测量的时间序列。
用法----------Usage----------
data(aosat)
格式----------Format----------
The format is: first column is date in years with fraction to indicate month. The second column is the measurement.
格式为:第一列是在用分数来表示年月日。第二列是测量。
Details
详细信息----------Details----------
See http://jisao.washington.edu/ao/ for more details on the importance of this time series.
http://jisao.washington.edu/ao/的重要性,这种时间序列的详细信息。
源----------Source----------
This data came from the file AO\_SATindex\_JFM\_Jan1851March1997.ascii at http://www.atmos.colostate.edu/ao/Data/ao\_index.html
该数据从文件AO \ _SATindex \ _JFM \ _Jan1851March1997.ascii,在http://www.atmos.colostate.edu/ao/Data/ao \ _index.html中
实例----------Examples----------
data(aosat)
## Not run: [#不运行:]
library(zoo)
z = zoo(aosat[,2], order.by=aosat[,1])
plot(z)
## yearly[#每年]
plot(aggregate(z, floor(index(z)), mean))
## decade-long means[#十年之久的手段]
plot(aggregate(z, 10*floor(index(z)/10), mean))
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|