quotes(sde)
quotes()所属R语言包:sde
Daily closings of 20 financial time series from 2006-01-03 to 2007-12-31
从2006-01-03到2007-12-31日关闭了20家金融时间序列
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This dataset contains the daily closings of 20 assets from NYSE/NASDAQ. Quotes from 2006-01-03 to 2007-12-31.
此数据集包含每天关闭20 NYSE / NASDAQ资产。引号从2006-01-03到2007-12-31。
It is an object of class zoo. Original data contained missing data and interpolated. Used as example data to test the Markov Operator distance for discretely observed diffusion processes.
它是一个对象的类zoo。原始数据丢失的数据和插值。例如数据,以测试的马氏操作距离为离散观察到的扩散过程。
用法----------Usage----------
data(quotes)
参考文献----------References----------
De Gregorio, A. Iacus, S.M. (2008) Clustering of discretely observed diffusion processes, http://arxiv.org/abs/0809.3902
实例----------Examples----------
data(quotes)
plot(quotes)
d <- MOdist(quotes)
cl <- hclust( d )
groups <- cutree(cl, k=4)
cmd <- cmdscale(d)
plot( cmd, col=groups)
text( cmd, labels(d) , col=groups)
plot(quotes, col=groups)
plot(quotes, col=groups,ylim=range(quotes))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|