polyback(RTisean)
polyback()所属R语言包:RTisean
Backward elimination for a given polynomial
对于一个给定的多项式的淘汰落后
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Performs a backward elimination for a given polynomial, whose terms are read from a parameter matrix. The terms are removed in such a way that the one step
对于一个给定的多项式,,其条款读取参数矩阵执行淘汰落后。的条款,以这样的方式,除去一个步骤
用法----------Usage----------
polyback(series, l, x = 0, c = 1, m = 2, d = 1, n, s = 1, scale = 1, p)
参数----------Arguments----------
参数:series
a vector or a matrix.
的矢量或矩阵。
参数:l
number of data to use.
要使用的数据的数量。
参数:x
number of lines to be ignored.
的行数被忽略。
参数:c
column to be read.
要读取的列。
参数:m
embedding dimension.
嵌入维数。
参数:d
delay.
延迟。
参数:n
length for the insample error estimation.
长度为的insample的错误估计。
参数:s
steps to be forecasted.
步骤来进行预测。
参数:scale
final number of terms.
最后的条款。
参数:p
name of the input matrix created with polypar or by hand.
创建polypar或手的输入矩阵的名称。
值----------Value----------
A dataframe containing the number of remaining terms in the polynomial in column 1, the in-sample error produced by the reduced polynomial in column 2, the out-of-sample error produced by the reduced polynomial in column 3 and the term removed last from the polynomial in columns 4 and 5.
甲含有的剩余期限的多项式中的第1列中,在抽样误差所产生的降低在第2列中的多项式,样本错误所产生的减少多项式在第3列和最后删除从术语的数目的数据框在列4和5中的多项式。
参见----------See Also----------
polypar
polypar
实例----------Examples----------
## Not run: [#不运行:]
polymat <- polypar(p=4)
polyout <- polyback(sunspot.month,p=polymat,n=2000)
plot(0:14,polyout[,2],t="l",ylim=range(polyout[,(2:3)]),
xlab="Number of removed parameters",ylab="Forecast error",
main="Fitting accuracy of polynomial
model reduced via backward elimination")
lines(0:14,polyout[,3],col=2)
legend(2,0.5, c("In-sample error","Out-of-sample error"),fill=c(1,2),bty="n",cex=0.8)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|