printCoefmat
位于 stats
包(package)。 说明
在更高级别的 print
方法中使用的实用函数,例如 summary.lm
、 summary.glm
和 anova
的方法。目标是提供一个具有智能默认值的灵活接口,通常只需要指定x
。
用法
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(), P.values = NULL,
has.Pvalue = nc >= 4L && length(cn <- colnames(x)) &&
substr(cn[nc], 1L, 3L) %in% c("Pr(", "p-v"),
eps.Pvalue = .Machine$double.eps,
na.print = "NA", quote = FALSE, right = TRUE, ...)
参数
x |
要打印的类似数字矩阵的对象。 |
digits |
大多数数字使用的有效数字的最小数量。 |
signif.stars |
逻辑性;如果 |
signif.legend |
逻辑性;如果 |
dig.tst |
测试统计数据的最小有效位数,请参阅 |
cs.ind |
列号的索引(整数),它们(例如)要一起格式化的系数和标准误差。 |
tst.ind |
用于测试统计的列号索引(整数)。 |
zap.ind |
列号的索引(整数),其中接近 0 的数字应为 ‘zapped’,即设置为 0。 |
P.values |
逻辑或 |
has.Pvalue |
逻辑性;如果 |
eps.Pvalue |
数字, .. |
na.print |
用于在打印输出中编码 |
quote , right , ... |
进一步的参数传递给 |
值
无形地返回其参数 x
。
注意
截至2023年,当zap.ind
不为空时,列被zapsmall()
修改;现在,所有非小数都不会被修改。
例子
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)
op <- options(show.coef.Pvalues = FALSE)
printCoefmat(cmat, digits = 2)
printCoefmat(cmat, digits = 2, P.values = TRUE)
options(op) # restore
作者
Martin Maechler
也可以看看
相关用法
- R print.ts 时间序列对象的打印和格式化
- R print.power.htest 假设检验和功效计算对象的打印方法
- R princomp 主成分分析
- R predict.smooth.spline 通过平滑样条拟合进行预测
- R predict 模型预测
- R profile.nls 分析 nls 对象的方法
- R predict.HoltWinters 拟合 Holt-Winters 模型的预测函数
- R proj 模型预测
- R predict.loess 预测黄土曲线或表面
- R preplot 绘图对象的预计算
- R prcomp 主成分分析
- R profile 分析模型的通用函数
- R prop.test 等比例或给定比例检验
- R profile.glm 分析 glm 对象的方法
- R prop.trend.test 检验比例趋势
- R predict.Arima ARIMA 的预测适合
- R predict.lm 线性模型拟合的预测方法
- R predict.nls 根据非线性最小二乘拟合进行预测
- R predict.glm GLM 拟合的预测方法
- R plot.stepfun 绘制阶跃函数
- R pairwise.t.test 成对 t 检验
- R plot.profile.nls 绘制 profile.nls 对象
- R plot.isoreg isoreg 对象的绘图方法
- R plot.HoltWinters HoltWinters 对象的绘图函数
- R ppoints 概率图的坐标
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Print Coefficient Matrices。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。