當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R replications 條款的重複次數


R語言 replications 位於 stats 包(package)。

說明

返回公式中每項的重複次數向量或列表。

用法

replications(formula, data = NULL, na.action)

參數

formula

公式或術語對象或 DataFrame 。

data

用於查找 formula 中的對象的 DataFrame 。

na.action

處理缺失值的函數。默認為 datana.action 屬性,然後是選項 na.action 的設置,或者 na.fail (如果未設置)。

細節

如果 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.

也可以看看

model.tables

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Number of Replications of Terms。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。