c2g(RTisean)
c2g()所属R语言包:RTisean
Gaussian kernel correlation integral
高斯核关联积分
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Reads the correlation integral, output of d2
读取相关积分,输出d2
用法----------Usage----------
c2g(lst)
参数----------Arguments----------
参数:lst
the output of or d2.
的输出或d2。
值----------Value----------
A list of as many matrices as the number of dimensions of lst. Each matrix contains the values of epsilon in the first column, the Gaussian kernel correlation integral in the second column and its logarithmic derivative in the third columns.
作为尺寸lst的数量尽可能多的矩阵的列表。每个矩阵包含小量的第一列中,在第二列和第三列中的它的对数衍生物高斯内核相关积分值。
参考文献----------References----------
参见----------See Also----------
c2d, c2t
c2d,c2t
实例----------Examples----------
## Not run: [#不运行:]
dat <- henon(10000)
d2output <- d2(dat)
corsum <- d2output$.c2
corint <- c2g(corsum)
plot(corint[[1]],t="l",ylim=c(0,1),col=2,xlab="Epsilon",
ylab="Correlation Integral",log="x", main="Correlation Integral Plot, embedding dims = (1,...,10)")
for (a in 2:10)
lines(corint[[a]],col=2)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|