replications
位於 stats
包(package)。 說明
返回公式中每項的重複次數向量或列表。
用法
replications(formula, data = NULL, na.action)
參數
formula |
公式或術語對象或 DataFrame 。 |
data |
用於查找 |
na.action |
處理缺失值的函數。默認為 |
細節
如果 formula
是數據幀並且 data
缺失,則 formula
用於 data
,公式為 ~ .
。
公式中的任何字符向量都被強製為因子。
值
一個向量或列表,公式中的每一項都有一個條目,給出每個級別的重複次數。如果所有級別都是平衡的(具有相同的重複次數),則結果是一個向量,否則它是一個列表,其中每個項都有一個組件,根據需要作為向量、矩陣或數組。
平衡測試是 !is.list(replications(formula,data))
。
例子
## From Venables and Ripley (2002) p.165.
N <- c(0,1,0,1,1,1,0,0,0,1,1,0,1,1,0,0,1,0,1,0,1,1,0,0)
P <- c(1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,0,0,1,0,1,1,0)
K <- c(1,0,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,0,1,1,1,0,1,0)
yield <- c(49.5,62.8,46.8,57.0,59.8,58.5,55.5,56.0,62.8,55.8,69.5,
55.0, 62.0,48.8,45.5,44.2,52.0,51.5,49.8,48.8,57.2,59.0,53.2,56.0)
npk <- data.frame(block = gl(6,4), N = factor(N), P = factor(P),
K = factor(K), yield = yield)
replications(~ . - yield, npk)
作者
The design was inspired by the S function of the same name described in Chambers et al (1992).
參考
Chambers, J. M., Freeny, A and Heiberger, R. M. (1992) Analysis of variance; designed experiments. Chapter 5 of Statistical Models in S eds J. M. Chambers and T. J. Hastie, Wadsworth & Brooks/Cole.
也可以看看
相關用法
- R relevel 因子水平重新排序
- R reorder.default 因子水平重新排序
- R rect.hclust 在層次集群周圍繪製矩形
- R reshape 重塑分組數據
- R read.ftable 操作平麵列聯表
- R reorder.dendrogram 重新排序樹狀圖
- R residuals 提取模型殘差
- R rWishart 隨機 Wishart 分布式矩陣
- R r2dtable 具有給定邊際的隨機 2 向表
- R runmed 運行中位數 – 穩健散點圖平滑
- R stlmethods STL 對象的方法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R naprint 調整缺失值
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R formula 模型公式
- R nls.control 控製 nls 中的迭代
- R aggregate 計算數據子集的匯總統計
- R deriv 簡單表達式的符號和算法導數
- R kruskal.test Kruskal-Wallis 秩和檢驗
- R quade.test 四方測試
- R decompose 移動平均線的經典季節性分解
- R plot.stepfun 繪製階躍函數
- R alias 查找模型中的別名(依賴項)
- R qqnorm 分位數-分位數圖
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Number of Replications of Terms。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。