model.matrix.gam(mgcv)
model.matrix.gam()所属R语言包:mgcv
Extract model matrix from GAM fit
自由亚齐运动适合提取模型矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Obtains the model matrix from a fitted gam object.
获得从一个装有的gam对象模型矩阵。
用法----------Usage----------
## S3 method for class 'gam'
model.matrix(object, ...)
参数----------Arguments----------
参数:object
fitted model object of class gam as produced by gam().
拟合模型对象类gam生产gam()。
参数:...
other arguments, passed to predict.gam.
其他参数,通过predict.gam。
Details
详情----------Details----------
Calls predict.gam with no newdata argument and type="lpmatrix" in order to obtain the model matrix of object.
调用predict.gam没有newdata参数和type="lpmatrix"为了获得模型矩阵object。
值----------Value----------
A model matrix.
模型矩阵。
作者(S)----------Author(s)----------
Simon N. Wood <a href="mailto:simon.wood@r-project.org">simon.wood@r-project.org</a>
参考文献----------References----------
and Hall/CRC Press.
参见----------See Also----------
gam
gam
举例----------Examples----------
n <- 15
x <- runif(n)
y <- sin(x*2*pi) + rnorm(n)*.2
mod <- gam(y~s(x,bs="cc",k=6),knots=list(x=seq(0,1,length=6)))
model.matrix(mod)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|