plotqtplot.lmscreg(VGAM)
plotqtplot.lmscreg()所属R语言包:VGAM
Quantile Plot for LMS Quantile Regression
LMS位数回归的位数图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plots the quantiles associated with a LMS quantile regression.
图相关联的,与LMS位数回归位数。
用法----------Usage----------
plotqtplot.lmscreg(fitted.values, object, newdata = NULL,
percentiles = object@misc$percentiles, lp = NULL,
add.arg = FALSE, y = if (length(newdata)) FALSE else TRUE,
spline.fit = FALSE, label = TRUE, size.label = 0.06,
xlab = NULL, ylab = "",
pch = par()$pch, pcex = par()$cex, pcol.arg = par()$col,
xlim = NULL, ylim = NULL,
llty.arg = par()$lty, lcol.arg = par()$col, llwd.arg = par()$lwd,
tcol.arg = par()$col, tadj = 1, ...)
参数----------Arguments----------
参数:fitted.values
Matrix of fitted values.
矩阵的拟合值。
参数:object
A VGAM quantile regression model, i.e., an object produced by modelling functions such as vglm and vgam with a family function beginning with "lms.", e.g., lms.yjn.
AVGAM分位数回归模型,即对象的建模功能,如vglm和vgam家庭功能开始"lms.",例如lms.yjn 。
参数:newdata
Data frame at which predictions are made. By default, the original data are used.
数据框架进行预测。缺省情况下,原始数据的使用。
参数:percentiles
Numerical vector with values between 0 and 100 that specify the percentiles (quantiles). The default is to use the percentiles when fitting the model. For example, the value 50 corresponds to the median.
指定百分位数(位数)值介于0和100之间的数值向量。默认值是拟合模型时,使用的百分。例如,值50对应于该中位数。
参数:lp
Length of percentiles.
长度的percentiles。
参数:add.arg
Logical. Add the quantiles to an existing plot?
逻辑。添加位数现有的图?
参数:y
Logical. Add the response as points to the plot?
逻辑。添加响应的图吗?
参数:spline.fit
Logical. Add a spline curve to the plot?
逻辑。样条曲线的图吗?
参数:label
Logical. Add the percentiles (as text) to the plot?
逻辑。百分位数(文字)的图吗?
参数:size.label
Numeric. How much room to leave at the RHS for the label. It is in percent (of the range of the primary variable).
数字。留下多少空间在右边的标签。它是在%(主要变量的范围内)。
参数:xlab
Caption for the x-axis. See par.
首领的x轴。见par。
参数:ylab
Caption for the x-axis. See par.
首领的x轴。见par。
参数:pch
Plotting character. See par.
绘制字符。见par。
参数:pcex
Character expansion of the points. See par.
字符扩展之分。见par。
参数:pcol.arg
Color of the points. See the col argument of par.
的各点的颜色。请参阅colpar参数。
参数:xlim
Limits of the x-axis. See par.
的x-轴的界限。见par。
参数:ylim
Limits of the y-axis. See par.
界限的y轴。见par。
参数:llty.arg
Line type. Line type. See the lty argument of par.
线路类型。线路类型。请参阅ltypar参数。
参数:lcol.arg
Color of the lines. See the col argument of par.
线条的颜色。请参阅colpar参数。
参数:llwd.arg
Line width. See the lwd argument of par.
线条宽度。请参阅lwdpar参数。
参数:tcol.arg
Color of the text (if label is TRUE). See the col argument of par.
文本的颜色(如果label是TRUE)。请参阅colpar参数。
参数:tadj
Text justification. See the adj argument of par.
文本对齐。请参阅adjpar参数。
参数:...
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 matrix of fitted values.
矩阵的拟合值。
注意----------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----------
qtplot.lmscreg.
qtplot.lmscreg。
实例----------Examples----------
fit = vgam(BMI ~ s(age, df = c(4,2)), fam = lms.bcn(zero = 1), data = bmi.nz)
qtplot(fit)
qtplot(fit, perc = c(25,50,75,95), lcol = "blue", tcol = "blue", llwd = 2)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|