av_d2(RTisean)
av_d2()所属R语言包:RTisean
Smoothing correlation sum data
平滑相关性和数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Takes the output of either d2 or c1 and smoothes it by arithmetically averaging over a given interval.
时的输出的是d2或c1和平滑的算术平均在给定的时间间隔。
用法----------Usage----------
av_d2(lst, m = 1, M, a = 1, E = FALSE)
参数----------Arguments----------
参数:lst
The output of d2, c1.
的输出d2,c1。
参数:m
minimal dimension to print.
最小的维度打印。
参数:M
maximal dimension to print.
最大维度打印。
参数:a
smooth over an interval of 2a+1 points.
顺利超过2 a+1点的时间间隔。
参数:E
show the length scales in rescaled units.
在重新调整的单位的尺度。
值----------Value----------
A list of as many a matrices as the number of dimensions, each containing the epsilon values in the first column and
作为许多矩阵的维数,每个都包含在第一列中的ε值和列表
参见----------See Also----------
c2d, c2g, c2t .
c2d,c2g,c2t。
实例----------Examples----------
## Not run: [#不运行:]
dat <- henon(l=10000,x=1000)
d2output <- d2(dat)
cordim <- d2output$.d2
smoothed <- av_d2(cordim)
plot(smoothed[[1]],t="l",ylim=c(0,5.5),col=2,xlab="Epsilon",
ylab=paste("Smoothed", expression(D[2](m,epsilon))),log="x", main="Smoothed
Correlation Dimension Plot")
for (a in 2:10) points(smoothed[[a]],t="l",col=2)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|