predict.bs(splines)
predict.bs()所属R语言包:splines
Evaluate a Spline Basis
评价一个样条基
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Evaluate a predefined spline basis at given values.
评估在给定值的预定义的样条基。
用法----------Usage----------
## S3 method for class 'bs'
predict(object, newx, ...)
## S3 method for class 'ns'
predict(object, newx, ...)
参数----------Arguments----------
参数:object
the result of a call to bs or ns having attributes describing knots, degree, etc.
一个调用bs或ns在属性描述knots,degree等的结果
参数:newx
the x values at which evaluations are required.
x评价所需的值。
参数:...
Optional additional arguments. At present no additional arguments are used.
可选的附加参数。目前,没有额外的参数。
值----------Value----------
An object just like object, except evaluated at the new values of x.
一样的对象object,除评估x新值。
These are methods for the generic function predict for objects inheriting from classes "bs" or "ns". See predict for the general behavior of this function.
这些都是通用功能的predict类"bs"或"ns"继承对象的方法。看到predict此功能一般的行为。
参见----------See Also----------
bs, ns, poly.
bs,ns,poly。
举例----------Examples----------
require(stats)
basis <- ns(women$height, df = 5)
newX <- seq(58, 72, length.out = 51)
# evaluate the basis at the new data[评估的基础上,在新的数据]
predict(basis, newX)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|