polynomp(RTisean)
polynomp()所属R语言包:RTisean
Modeling data trough a polynomial ansatz
建模数据通过多项式拟设
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This programs models the data making a polynomial ansatz, reading the terms
此程序模型的数据,作出多项式拟设的,读的条款
用法----------Usage----------
polynomp(series, l, x = 0, c = 1, m = 2, d = 1, n, L = 1000, 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的错误估计。
参数:L
length of the trajectory to forecast.
长度的轨迹预测。
参数:p
name of the input parameter matrix created with polypar or by hand.
创建polypar或手的输入参数矩阵的名称。
值----------Value----------
A list with components:
组件列表:
参数:coeff
the coefficients of the model.
的模型的系数。
参数:pred
the forecasted points.
预测点。
实例----------Examples----------
## Not run: [#不运行:]
dat<-sin(1:10000)+rnorm(10000)/5
polynompout<-polynomp(dat[1:9900], p = polypar(), L=100)
pred<-polynompout$pred
plot(dat[9901:10000],t="l",xlab="Time",ylab="Sin data",ylim=c(-1.9,max(dat)))
lines(pred,col=2)
legend(70,-1.5, c("Noisy Data", "Filtered Data") ,fill=c(1,2), bty="n")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|