R語言
plot.isoreg
位於 stats
包(package)。 說明
用法
## S3 method for class 'isoreg'
plot(x, plot.type = c("single", "row.wise", "col.wise"),
main = paste("Isotonic regression", deparse(x$call)),
main2 = "Cumulative Data and Convex Minorant",
xlab = "x0", ylab = "x$y",
par.fit = list(col = "red", cex = 1.5, pch = 13, lwd = 1.5),
mar = if (both) 0.1 + c(3.5, 2.5, 1, 1) else par("mar"),
mgp = if (both) c(1.6, 0.7, 0) else par("mgp"),
grid = length(x$x) < 12, ...)
## S3 method for class 'isoreg'
lines(x, col = "red", lwd = 1.5,
do.points = FALSE, cex = 1.5, pch = 13, ...)
參數
x |
|
plot.type |
指示需要哪種類型的繪圖的字符。第一個(默認)僅繪製數據和擬合,其他則添加累積數據和擬合的圖。可以縮寫。 |
main |
情節的主標題,請參閱 |
main2 |
第二個(累積)圖的標題。 |
xlab, ylab |
x 軸和 y 軸注釋。 |
par.fit |
|
mar, mgp |
圖形參數,參見 |
grid |
邏輯指示是否應繪製網格線。如果為 true,則 |
do.points |
對於 |
col, lwd, cex, pch |
|
... |
傳入和傳出方法的進一步參數。 |
例子
require(graphics)
utils::example(isoreg) # for the examples there
plot(y3, main = "simple plot(.) + lines(<isoreg>)")
lines(ir3)
## 'same' plot as above, "proving" that only ranks of 'x' are important
plot(isoreg(2^(1:9), c(1,0,4,3,3,5,4,2,0)), plot.type = "row", log = "x")
plot(ir3, plot.type = "row", ylab = "y3")
plot(isoreg(y3 - 4), plot.type = "r", ylab = "y3 - 4")
plot(ir4, plot.type = "ro", ylab = "y4", xlab = "x = 1:n")
## experiment a bit with these (C-c C-j):
plot(isoreg(sample(9), y3), plot.type = "row")
plot(isoreg(sample(9), y3), plot.type = "col.wise")
plot(ir <- isoreg(sample(10), sample(10, replace = TRUE)),
plot.type = "r")
也可以看看
isoreg
用於計算 isoreg
對象。
相關用法
- R plot.stepfun 繪製階躍函數
- R plot.profile.nls 繪製 profile.nls 對象
- R plot.HoltWinters HoltWinters 對象的繪圖函數
- R plot.ts 繪製時間序列對象
- R plot.density 核密度估計的繪圖方法
- R plot.lm 繪製 lm 對象的診斷圖
- R plot.acf 繪製自協方差和自相關函數
- R plot.spec 繪製頻譜密度
- R plot.ppr 繪製投影尋蹤回歸擬合的嶺函數
- R plot.profile “輪廓”對象的繪圖函數
- R pairwise.t.test 成對 t 檢驗
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R predict 模型預測
- R profile.nls 分析 nls 對象的方法
- R ppoints 概率圖的坐標
- R predict.HoltWinters 擬合 Holt-Winters 模型的預測函數
- R poly 計算正交多項式
- R proj 模型預測
- R predict.loess 預測黃土曲線或表麵
- R power.t.test 一個和兩個樣本 t 檢驗的功效計算
- R power.prop.test 比例二樣本檢驗的功效計算
- R preplot 繪圖對象的預計算
- R prcomp 主成分分析
- R printCoefmat 打印係數矩陣
- R profile 分析模型的通用函數
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Plot Method for isoreg Objects。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。