summary
位於 base
包(package)。 說明
summary
是一個通用函數,用於生成各種模型擬合函數結果的結果摘要。該函數調用特定的methods
,它取決於第一個參數的class
。
用法
summary(object, ...)
## Default S3 method:
summary(object, ..., digits, quantile.type = 7)
## S3 method for class 'data.frame'
summary(object, maxsum = 7,
digits = max(3, getOption("digits")-3), ...)
## S3 method for class 'factor'
summary(object, maxsum = 100, ...)
## S3 method for class 'matrix'
summary(object, ...)
## S3 method for class 'summaryDefault'
format(x, digits = max(3L, getOption("digits") - 3L), ...)
## S3 method for class 'summaryDefault'
print(x, digits = max(3L, getOption("digits") - 3L), ...)
參數
object |
需要摘要的對象。 |
x |
|
maxsum |
整數,指示 |
digits |
整數,用於數字格式化 |
quantile.type |
|
... |
影響摘要的其他論點。 |
細節
對於factor
,顯示第一個maxsum - 1
最頻繁級別的頻率,而不太頻繁的級別匯總在"(Others)"
中(最多產生maxsum
頻率)。
函數 summary.lm
和 summary.glm
是總結 lm
和 glm
產生的結果的特定方法的示例。
值
summary
返回值的形式取決於其參數的類。有關該方法生成的內容的詳細信息,請參閱特定方法的文檔。
默認方法返回c("summaryDefault", "table")
類的對象,該類具有專門的format
和print
方法。 factor
方法返回一個整數向量。
矩陣和 DataFrame 方法返回 "table"
類的矩陣,該矩陣是通過將 summary
應用於每一列並整理結果而獲得的。
例子
summary(attenu, digits = 4) #-> summary.data.frame(...), default precision
summary(attenu $ station, maxsum = 20) #-> summary.factor(...)
lst <- unclass(attenu$station) > 20 # logical with NAs
## summary.default() for logicals -- different from *.factor:
summary(lst)
summary(as.factor(lst))
參考
Chambers, J. M. and Hastie, T. J. (1992) Statistical Models in S. Wadsworth & Brooks/Cole.
也可以看看
相關用法
- R sum 向量元素之和
- R substitute 替換和引用表達式
- R subset 向量、矩陣和 DataFrame 的子集化
- R substr 字符向量的子字符串
- R strsplit 分割字符向量的元素
- R seq.Date 生成規則的日期序列
- R search 給出 R 對象的搜索路徑
- R solve 求解方程組
- R scan 讀取數據值
- R sprintf 使用 C 風格字符串格式化命令
- R stop 停止函數執行
- R sign 標誌函數
- R svd 矩陣的奇異值分解
- R strtoi 將字符串轉換為整數
- R source 從文件、連接或表達式中讀取 R 代碼
- R sQuote 引用文字
- R switch 選擇替代方案列表之一
- R strrep 重複字符向量的元素
- R split 分組並重新集合
- R slice.index 數組中的切片索引
- R sort 對向量進行排序或排序
- R standardGeneric 形式化方法係統 – 調度 S4 方法
- R sequence 創建序列向量
- R startsWith 字符串是否以另一個字符串開頭或結尾?
- R system.file 查找 R 係統文件的名稱
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Object Summaries。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。