isoreg
位於 stats
包(package)。 說明
計算分段常數的等滲(單調遞增非參數)最小二乘回歸。
用法
isoreg(x, y = NULL)
參數
x, y |
回歸點的坐標向量。或者,可以指定單個繪圖結構:請參閱 |
細節
該算法確定凸次要cumsum(y)
) 是分段線性的,結果是 ,一個階躍函數,其水平在凸的位置發生變化 接觸累積數據多邊形並改變斜率。
as.stepfun()
返回一個stepfun
可以更節省的對象。
值
isoreg()
返回 isoreg
類的對象,它本質上是一個包含組件的列表
x |
原始(構造)橫坐標值 |
y |
相應的 y 值。 |
yf |
與有序 x 值相對應的擬合值。 |
yc |
與有序 x 值相對應的累積 y 值。 |
iKnots |
整數向量,給出擬合曲線跳躍的索引,即凸短軸有扭結的位置。 |
isOrd |
邏輯指示原始 x 值是否已按順序遞增。 |
ord |
|
call |
使用的 |
注意
代碼應該改進以接受權重另外並求解相應的加權最小二乘問題。
“歡迎提供補丁!”
例子
require(graphics)
(ir <- isoreg(c(1,0,4,3,3,5,4,2,0)))
plot(ir, plot.type = "row")
(ir3 <- isoreg(y3 <- c(1,0,4,3,3,5,4,2, 3))) # last "3", not "0"
(fi3 <- as.stepfun(ir3))
(ir4 <- isoreg(1:10, y4 <- c(5, 9, 1:2, 5:8, 3, 8)))
cat(sprintf("R^2 = %.2f\n",
1 - sum(residuals(ir4)^2) / ((10-1)*var(y4))))
## If you are interested in the knots alone :
with(ir4, cbind(iKnots, yf[iKnots]))
## Example of unordered x[] with ties:
x <- sample((0:30)/8)
y <- exp(x)
x. <- round(x) # ties!
plot(m <- isoreg(x., y))
stopifnot(all.equal(with(m, yf[iKnots]),
as.vector(tapply(y, x., mean))))
參考
Barlow, R. E., Bartholomew, D. J., Bremner, J. M., and Brunk, H. D. (1972) Statistical inference under order restrictions; Wiley, London.
Robertson, T., Wright, F. T. and Dykstra, R. L. (1988) Order Restricted Statistical Inference; Wiley, New York.
也可以看看
繪圖方法plot.isoreg
以及更多示例; MASS
包中的 isoMDS()
內部使用等滲回歸。
相關用法
- R is.empty.model 測試模型的公式是否為空
- R influence.measures 回歸刪除診斷
- R interaction.plot 雙向交互作用圖
- R identify.hclust 識別樹狀圖中的簇
- R integrate 一維函數的積分
- 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 eff.aovlist 多層方差分析的計算效率
- R pairwise.t.test 成對 t 檢驗
- R loglin 擬合對數線性模型
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R bartlett.test 方差齊性的 Bartlett 檢驗
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Isotonic / Monotone Regression。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。