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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。