R語言
case+variable.names
位於 stats
包(package)。 說明
返回(非缺失)案例名稱和(非消除)變量名稱的簡單實用程序。
用法
case.names(object, ...)
## S3 method for class 'lm'
case.names(object, full = FALSE, ...)
variable.names(object, ...)
## S3 method for class 'lm'
variable.names(object, full = FALSE, ...)
參數
object |
一個R對象,通常是擬合模型。 |
full |
邏輯性;如果 |
... |
傳入或傳出其他方法的進一步參數。 |
值
字符向量。
例子
x <- 1:20
y <- setNames(x + (x/4 - 2)^3 + rnorm(20, sd = 3),
paste("O", x, sep = "."))
ww <- rep(1, 20); ww[13] <- 0
summary(lmxy <- lm(y ~ x + I(x^2)+I(x^3) + I((x-10)^2), weights = ww),
correlation = TRUE)
variable.names(lmxy)
variable.names(lmxy, full = TRUE) # includes the last
case.names(lmxy)
case.names(lmxy, full = TRUE) # includes the 0-weight case
也可以看看
相關用法
- R cancor 典型相關性
- R constrOptim 線性約束優化
- R confint 模型參數的置信區間
- R contrast (可能稀疏)對比矩陣
- R cor 相關性、方差和協方差(矩陣)
- R cor.test 配對樣本之間的關聯/相關性測試
- R cutree 將樹切割成數據組
- R cpgram 繪製累積周期圖
- R complete.cases 查找完整案例
- R contrasts 獲取和設置對比矩陣
- R chisq.test 計數數據的皮爾遜卡方檢驗
- R convolve 通過 FFT 進行序列卷積
- R cov.wt 加權協方差矩陣
- R checkMFClasses 檢查傳遞給模型框架的變量類型的函數
- R cophenetic 層次聚類的共表距離
- R coef 提取模型係數
- R cmdscale 經典(公製)多維標度
- R stlmethods STL 對象的方法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R naprint 調整缺失值
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R formula 模型公式
- R nls.control 控製 nls 中的迭代
- R aggregate 計算數據子集的匯總統計
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Case and Variable Names of Fitted Models。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。