plot.SEL(SEL)
plot.SEL()所属R语言包:SEL
Plotting an SEL object
绘制一个SEL对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function displays a fitted SEL object and displays the expert's cdf or pdf (depending on the deriv argument)
此功能可以显示一个合身的的SEL对象和显示专家的CDF(根据deriv参数)
用法----------Usage----------
## S3 method for class 'SEL':
plot(x, ..., type = c("density", "cdf"), deriv,
points = TRUE, n = 101, xlab="", ylab="", ylim)
参数----------Arguments----------
参数:x
An SEL object.
SEL对象。
参数:...
Additional arguments to plot function.
其他参数绘制功能。
参数:type
Determines whether to plot the expert's density or cdf (only if deriv is missing).
决定是否要绘制专家的密度或CDF(只有deriv丢失)。
参数:deriv
Determines which derivative of the expert's distribution should be plotted. If specified the type argument is ignored.
决定衍生的专家的分布应绘制。如果指定了type参数将被忽略。
参数:points
Logical indicating whether elicited quantiles should be displayed, when displaying the cdf.
逻辑指示是否引起分位数应该被显示,当显示的累积分布函数。
参数:n
Integer, number of points used for plotting.
整数,用于绘制的点。
参数:xlab, ylab
Label of x-axis and y-axis.
标签的x轴和y轴。
参数:ylim
Limits of y axis.
y轴的限制。
(作者)----------Author(s)----------
Bjoern Bornkamp
参考文献----------References----------
Bornkamp, B. and Ickstadt, K. (2009). A Note on B-Splines for Semiparametric Elicitation. The American Statistician, 63, 373–377
参见----------See Also----------
comparePlot, SEL
comparePlot,SEL
实例----------Examples----------
# example from O'Hagan et al. (2006)[例如,从奥黑根等人。 (2006)]
x <- c(177.5, 183.75, 190, 205, 220)
y <- c(0.175, 0.33, 0.5, 0.75, 0.95)
fit <- SEL(x, y, Delta = 0.05, bounds = c(165, 250))
plot(fit)
plot(fit, type = "cdf")
plot(fit, deriv = 1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|