printCoefmat(stats)
printCoefmat()所属R语言包:stats
Print Coefficient Matrices
打印系数矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Utility function to be used in higher-level print methods, such as print.summary.lm, print.summary.glm and print.anova. The goal is to provide a flexible interface with smart defaults such that often, only x needs to be specified.
效用函数要使用更高级别的print方法,如print.summary.lm,print.summary.glm和print.anova。我们的目标是提供一个灵活的接口等智能的默认值,通常,只有x需要指定。
用法----------Usage----------
printCoefmat(x, digits=max(3, getOption("digits") - 2),
signif.stars = getOption("show.signif.stars"),
signif.legend = signif.stars,
dig.tst = max(1, min(5, digits - 1)),
cs.ind = 1L:k, tst.ind = k + 1L,
zap.ind = integer(0), P.values = NULL,
has.Pvalue = nc >= 4L &&
substr(colnames(x)[nc], 1L, 3L) == "Pr(",
eps.Pvalue = .Machine$double.eps,
na.print = "NA", ...)
参数----------Arguments----------
参数:x
a numeric matrix like object, to be printed.
像对象的数字矩阵,要打印。
参数:digits
minimum number of significant digits to be used for most numbers.
对于大多数数字的有效位数的最低数量。
参数:signif.stars
logical; if TRUE, P-values are additionally encoded visually as "significance stars" in order to help scanning of long coefficient tables. It defaults to the show.signif.stars slot of options.
逻辑; TRUE如果,P值加编码为“意义星”视觉为了帮助长系数表扫描。默认show.signif.starsoptions插槽。
参数:signif.legend
logical; if TRUE, a legend for the "significance stars" is printed provided signif.stars=TRUE.
逻辑,如果TRUE,“意义星”的传奇印提供signif.stars=TRUE。
参数:dig.tst
minimum number of significant digits for the test statistics, see tst.ind.
为检验统计量的显着位的最低数量,看到tst.ind。
参数:cs.ind
indices (integer) of column numbers which are (like) coefficients and standard errors to be formatted together.
(像)系数和标准错误一起被格式化的列数指数(整数)。
参数:tst.ind
indices (integer) of column numbers for test statistics.
测试统计列数指数(整数)。
参数:zap.ind
indices (integer) of column numbers which should be formatted by zapsmall, i.e., by "zapping" values close to 0.
指数格式化“轰击”值接近0zapsmall,即应列数字(整数)。
参数:P.values
logical or NULL; if TRUE, the last column of x is formatted by format.pval as P values. If P.values = NULL, the default, it is set to TRUE only if options("show.coef.Pvalue") is TRUE and x has at least 4 columns and the last column name of x starts with "Pr(".
逻辑或NULL如果TRUE,最后一列xformat.pvalP值格式化。 P.values = NULL如果,默认情况下,它被设置为TRUE只有options("show.coef.Pvalue")是TRUE和x至少有4列和最后一列的名称 x启动"Pr("。
参数:has.Pvalue
logical; if TRUE, the last column of x contains P values; in that case, it is printed if and only if P.values (above) is true.
逻辑;如果TRUE,最后一列xP值,在这种情况下,如果只有P.values(以上)是真正的印刷。
参数:eps.Pvalue
number,..
号,..
参数:na.print
a character string to code NA values in printed output.
字符串代码NA在打印输出值。
参数:...
further arguments for print.
print进一步的论据。
值----------Value----------
Invisibly returns its argument, x.
无形返回它的参数,x。
作者(S)----------Author(s)----------
Martin Maechler
参见----------See Also----------
print.summary.lm, format.pval, format.
print.summary.lm,format.pval,format。
举例----------Examples----------
cmat <- cbind(rnorm(3, 10), sqrt(rchisq(3, 12)))
cmat <- cbind(cmat, cmat[,1]/cmat[,2])
cmat <- cbind(cmat, 2*pnorm(-cmat[,3]))
colnames(cmat) <- c("Estimate", "Std.Err", "Z value", "Pr(>z)")
printCoefmat(cmat[,1:3])
printCoefmat(cmat)
options(show.coef.Pvalues = FALSE)
printCoefmat(cmat, digits=2)
printCoefmat(cmat, digits=2, P.values = TRUE)
options(show.coef.Pvalues = TRUE)# revert[还原]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|