R語言
plot.stepfun
位於 stats
包(package)。 說明
用於 stepfun
對象的通用 plot
方法和用於繪製分段常量函數的實用程序。
用法
## S3 method for class 'stepfun'
plot(x, xval, xlim, ylim = range(c(y, Fn.kn)),
xlab = "x", ylab = "f(x)", main = NULL,
add = FALSE, verticals = TRUE, do.points = (n < 1000),
pch = par("pch"), col = par("col"),
col.points = col, cex.points = par("cex"),
col.hor = col, col.vert = col,
lty = par("lty"), lwd = par("lwd"), ...)
## S3 method for class 'stepfun'
lines(x, ...)
參數
x |
一個R對象繼承自 |
xval |
用於評估 |
xlim, ylim |
繪圖區域的限製:請參閱 |
xlab, ylab |
x 和 y 軸的標簽。 |
main |
主題。 |
add |
邏輯性;如果 |
verticals |
邏輯性;如果是 |
do.points |
邏輯性;如果 |
pch |
特點;點字符 if |
col |
所有點和線的默認顏色。 |
col.points |
字符或整數代碼;如果 |
cex.points |
數字;字符擴展因子如果 |
col.hor |
水平線的顏色。 |
col.vert |
垂直線的顏色。 |
lty, lwd |
所有線條的線條類型和粗細。 |
... |
值
包含兩個組件的列表
t |
橫坐標 (x) 值,包括最外麵的兩個值。 |
y |
y 值位於 |
例子
require(graphics)
y0 <- c(1,2,4,3)
sfun0 <- stepfun(1:3, y0, f = 0)
sfun.2 <- stepfun(1:3, y0, f = .2)
sfun1 <- stepfun(1:3, y0, right = TRUE)
tt <- seq(0, 3, by = 0.1)
op <- par(mfrow = c(2,2))
plot(sfun0); plot(sfun0, xval = tt, add = TRUE, col.hor = "bisque")
plot(sfun.2);plot(sfun.2, xval = tt, add = TRUE, col = "orange") # all colors
plot(sfun1);lines(sfun1, xval = tt, col.hor = "coral")
##-- This is revealing :
plot(sfun0, verticals = FALSE,
main = "stepfun(x, y0, f=f) for f = 0, .2, 1")
for(i in 1:3)
lines(list(sfun0, sfun.2, stepfun(1:3, y0, f = 1))[[i]], col = i)
legend(2.5, 1.9, paste("f =", c(0, 0.2, 1)), col = 1:3, lty = 1, y.intersp = 1)
par(op)
# Extend and/or restrict 'viewport':
plot(sfun0, xlim = c(0,5), ylim = c(0, 3.5),
main = "plot(stepfun(*), xlim= . , ylim = .)")
##-- this works too (automatic call to ecdf(.)):
plot.stepfun(rt(50, df = 3), col.vert = "gray20")
作者
Martin Maechler maechler@stat.math.ethz.ch, 1990, 1993; ported to R, 1997.
也可以看看
相關用法
- R plot.spec 繪製頻譜密度
- R plot.profile.nls 繪製 profile.nls 對象
- R plot.isoreg isoreg 對象的繪圖方法
- R plot.HoltWinters HoltWinters 對象的繪圖函數
- R plot.ts 繪製時間序列對象
- R plot.density 核密度估計的繪圖方法
- R plot.lm 繪製 lm 對象的診斷圖
- R plot.acf 繪製自協方差和自相關函數
- 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 Step Functions。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。