gsummary
位於 nlme
包(package)。 說明
按行組提供 DataFrame 中變量的摘要。這對於 groupedData
對象按組檢查變量最有用。
用法
gsummary(object, FUN, omitGroupingFactor, form, level,
groups, invariantsOnly, ...)
參數
object |
要匯總的對象 - 通常是 |
FUN |
一個可選的匯總函數或要應用於框架中每個變量的匯總函數列表。該函數或多個函數僅應用於 |
omitGroupingFactor |
可選的邏輯值。當 |
form |
定義組的可選單邊公式。給出此公式後,右側將在 |
level |
一個可選的正整數,給出要在具有多個嵌套分組級別的對象中使用的分組級別。默認為最高或最內層的分組。 |
groups |
將用於將行分成組的可選因子。默認為 |
invariantsOnly |
可選的邏輯值。當 |
... |
按組對變量調用的匯總函數的可選附加參數。通常指定 |
值
data.frame
,分組因子的每個級別對應一行。列數最多為 object
中的列數。
例子
gsummary(Orthodont) # default summary by Subject
## gsummary with invariantsOnly = TRUE and omitGroupingFactor = TRUE
## determines whether there are covariates like Sex that are invariant
## within the repeated observations on the same Subject.
gsummary(Orthodont, inv = TRUE, omit = TRUE)
作者
José Pinheiro and Douglas Bates bates@stat.wisc.edu
參考
Pinheiro, J.C., and Bates, D.M. (2000) "Mixed-Effects Models in S and S-PLUS", Springer.
也可以看看
相關用法
- R getGroupsFormula 提取分組公式
- R getGroups.lme 提取 lme 對象組
- R gapply 按組應用函數
- R getVarCov 提取方差-協方差矩陣
- R getGroups.data.frame 從 DataFrame 中提取組
- R getGroups.gls 提取 gls 對象組
- R getCovariate.varFunc 提取 varFunc 協變量
- R getCovariateFormula 提取協變量公式
- R gnlsControl gnls Fit 的控製值
- R gls 使用廣義最小二乘法擬合線性模型
- R getResponse 從對象中提取響應變量
- R getData.lme 提取 lme 對象數據
- R getData.lmList 提取 lmList 對象數據
- R getCovariate 從對象中提取協變量
- R groupedData 構造一個 groupedData 對象
- R gnlsStruct 廣義非線性最小二乘結構
- R getResponseFormula 提取指定響應變量的公式
- R getGroups.corStruct 提取結構組
- R getData 從對象中提取數據
- R getCovariate.corStruct 提取 corStruct 對象協變量
- R getGroups.lmList 提取 lmList 對象組
- R getData.gls 提取 gls 對象數據
- R glsStruct 廣義最小二乘結構
- R getGroups 從對象中提取分組因子
- R getCovariate.data.frame 提取 DataFrame 協變量
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Summarize by Groups。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。