R語言
factor.scope
位於 stats
包(package)。 說明
add.scope
和 drop.scope
計算那些可以單獨添加到模型或從模型中刪除的項,同時尊重項的層次結構。
用法
add.scope(terms1, terms2)
drop.scope(terms1, terms2)
factor.scope(factor, scope)
參數
terms1 |
基本模型的項或公式。 |
terms2 |
上限 ( |
factor |
基礎對象的術語的 |
scope |
包含一個或兩個組件 |
細節
factor.scope
不適合由用戶直接調用。
值
對於 add.scope
和 drop.scope
是術語標簽的字符向量。對於 factor.scope
,包含組件 drop
和 add
的列表,即術語標簽的字符向量。
例子
add.scope( ~ a + b + c + a:b, ~ (a + b + c)^3)
# [1] "a:c" "b:c"
drop.scope( ~ a + b + c + a:b)
# [1] "c" "a:b"
也可以看看
相關用法
- R factanal 因子分析
- R family 模型的族對象
- R formula 模型公式
- R friedman.test 弗裏德曼秩和檢驗
- R fitted 提取模型擬合值
- R ftable 扁平列聯表
- R ftable.formula 平麵列聯表的公式表示法
- R filter 時間序列的線性過濾
- R formula.nls 從 nls 對象中提取模型公式
- R fivenum 圖基五數摘要
- R fisher.test 計數數據的 Fisher 精確檢驗
- R fft 快速離散傅立葉變換 (FFT)
- R fligner.test 方差齊性的 Fligner-Killeen 檢驗
- R stlmethods STL 對象的方法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R naprint 調整缺失值
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R nls.control 控製 nls 中的迭代
- R aggregate 計算數據子集的匯總統計
- R deriv 簡單表達式的符號和算法導數
- R kruskal.test Kruskal-Wallis 秩和檢驗
- R quade.test 四方測試
- R decompose 移動平均線的經典季節性分解
- R plot.stepfun 繪製階躍函數
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Compute Allowed Changes in Adding to or Dropping from a Formula。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。