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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。