plotdeplot.lmscreg(VGAM)
plotdeplot.lmscreg()所属R语言包:VGAM
Density Plot for LMS Quantile Regression
LMS位数回归的密度图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plots a probability density function associated with a LMS quantile regression.
图相关联的,与LMS位数回归的概率密度函数。
用法----------Usage----------
plotdeplot.lmscreg(answer, y.arg, add.arg = FALSE,
xlab = "", ylab = "density", xlim = NULL, ylim = NULL,
llty.arg = par()$lty, col.arg = par()$col,
llwd.arg = par()$lwd, ...)
参数----------Arguments----------
参数:answer
Output from functions of the form deplot.??? where ??? is the name of the VGAM LMS family function, e.g., lms.yjn. See below for details.
输出函数的形式deplot.???其中???是VGAM的LMS家庭功能的名称,例如,lms.yjn。有关详细信息,请参见下文。
参数:y.arg
Numerical vector. The values of the response variable at which to evaluate the density. This should be a grid that is fine enough to ensure the plotted curves are smooth.
数值向量。的响应变量的值在该评估的密度。这应该是一个网格,是好到足以确保所绘制的曲线是光滑的。
参数:add.arg
Logical. Add the density to an existing plot?
逻辑。添加到现有的图密度?
参数:xlab, ylab
Caption for the x- and y-axes. See par.
首领的x-和y-轴。见par。
参数:xlim, ylim
Limits of the x- and y-axes. See par.
的x-轴和y轴的界限。见par。
参数:llty.arg
Line type. See the lty argument of par.
线路类型。请参阅ltypar参数。
参数:col.arg
Line color. See the col argument of par.
线的颜色。请参阅colpar参数。
参数:llwd.arg
Line width. See the lwd argument of par.
线条宽度。请参阅lwdpar参数。
参数:...
Arguments passed into the plot function when setting up the entire plot. Useful arguments here include main and las.
到plot函数传递参数时,设立了整个图。有用的参数包括:main和las。
Details
详细信息----------Details----------
The above graphical parameters offer some flexibility when plotting the quantiles.
绘制的位数以上的图形参数提供了一定的灵活性。
值----------Value----------
The list answer, which has components
answer的列表,其中有组件
参数:newdata
The argument newdata above from the argument list of deplot.lmscreg, or a one-row data frame constructed out of the x0 argument.
参数newdata以上deplot.lmscreg,或x0参数构造出一个行的数据框的参数列表。
参数:y
The argument y.arg above.
y.arg以上的参数。
参数:density
Vector of the density function values evaluated at y.arg.
向量的密度函数值评价y.arg。
注意----------Note----------
While the graphical arguments of this function are useful to the user, this function should not be called directly.
虽然这个函数的图形参数对用户有用的,这个函数不应该被直接调用。
(作者)----------Author(s)----------
Thomas W. Yee
参考文献----------References----------
Quantile regression via vector generalized additive models. Statistics in Medicine, 23, 2295–2315.
http://www.stat.auckland.ac.nz/~yee contains further information and examples.
参见----------See Also----------
deplot.lmscreg.
deplot.lmscreg。
实例----------Examples----------
fit = vgam(BMI ~ s(age, df = c(4,2)), fam = lms.bcn(zero = 1), data = bmi.nz)
## Not run: y = seq(15, 43, by = 0.25)[#不运行:Y = SEQ(15,43,= 0.25)]
deplot(fit, x0 = 20, y = y, xlab = "BMI", col = "green", llwd = 2,
main = "BMI distribution at ages 20 (green), 40 (blue), 60 (orange)")
deplot(fit, x0 = 40, y = y, add = TRUE, col = "blue", llwd = 2)
deplot(fit, x0 = 60, y = y, add = TRUE, col = "orange", llwd = 2) -> aa
names(aa@post$deplot)
aa@post$deplot$newdata
head(aa@post$deplot$y)
head(aa@post$deplot$density)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|