R語言
print.power.htest
位於 stats
包(package)。 說明
通過簡單的 print
方法分別打印類 "htest"
或 "power.htest"
的對象。
用法
## S3 method for class 'htest'
print(x, digits = getOption("digits"), prefix = "\t", ...)
## S3 method for class 'power.htest'
print(x, digits = getOption("digits"), ...)
參數
x |
類 |
digits |
要使用的有效數字位數。 |
prefix |
字符串,傳遞給 |
... |
要傳遞給方法或從方法傳遞的更多參數。 |
細節
傳統上,這兩種 print
方法都沒有正確遵守 digits
參數。現在,htest
方法主要在 max(1, digits - 2)
等表達式中。
power.htest
對象隻是數字和字符串的命名列表,並輔以 method
和 note
元素。 method
顯示為標題,note
顯示為腳注,其餘元素以對齊的“名稱 = 值”格式給出。
值
對於所有 print
方法,參數 x
是不可見的。
例子
(ptt <- power.t.test(n = 20, delta = 1))
print(ptt, digits = 4) # using less digits than default
print(ptt, digits = 12) # using more " " "
作者
Peter Dalgaard
也可以看看
相關用法
- R print.ts 時間序列對象的打印和格式化
- R printCoefmat 打印係數矩陣
- 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 Methods for Hypothesis Tests and Power Calculation Objects。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。