specs.rms(rms)
specs.rms()所属R语言包:rms
rms Specifications for Models
RMS规格的机型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Prints the design specifications, e.g., number of parameters for each factor, levels of categorical factors, knot locations in splines, pre-transformations, etc.
打印的设计规范,例如,参数的数量各因子水平的分类因素的影响,在样条线结位置,转换等。
用法----------Usage----------
specs(fit, ...)
## S3 method for class 'rms'
specs(fit, long=FALSE, ...)
## S3 method for class 'specs.rms'
print(x, ...)
参数----------Arguments----------
参数:fit
a fit object created with the rms library in effect
一个合适的对象创建rms库的影响
参数:x
an object returned by specs
返回的对象的specs
参数:long
if TRUE, causes the plotting and estimation limits to be printed for each factor
如果TRUE,造成的策划和估计要打印的每一个因素的限制
参数:...
ignored
忽视
值----------Value----------
a list containing information about the fit and the predictors as elements
一个列表,其中包含合适的信息和预测的元素
(作者)----------Author(s)----------
Frank Harrell<br>
Department of Biostatistics, Vanderbilt University<br>
f.harrell@vanderbilt.edu
参见----------See Also----------
rms, rms.trans, latex.rms, datadist
rms,rms.trans,latex.rms,datadist
实例----------Examples----------
set.seed(1)
blood.pressure <- rnorm(200, 120, 15)
dd <- datadist(blood.pressure)
options(datadist='dd')
L <- .03*(blood.pressure-120)
sick <- ifelse(runif(200) <= plogis(L), 1, 0)
f <- lrm(sick ~ rcs(blood.pressure,5))
specs(f) # find out where 5 knots are placed[找出5海里被放置]
g <- Glm(sick ~ rcs(blood.pressure,5), family=binomial)
specs(g,long=TRUE)
options(datadist=NULL)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|