qqtrunc(truncdist)
qqtrunc()所属R语言包:truncdist
QQ Plot for a Truncated Random Variable
QQ图的截断随机变量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function produces a QQ plot of sample quantiles against theoretical quantiles for a truncated random variable.
该函数产生的截断随机变量的样本位数对理论位数的QQ图。
用法----------Usage----------
qqtrunc(x, spec, a = -Inf, b = Inf, title = "Truncated Distribution Q-Q Plot",
xlabel = "Theoretical Quantiles", ylabel = "Sample Quantiles", ...)
参数----------Arguments----------
参数:x
a numeric vector of sample values
一个数值向量的采样值
参数:spec
a character value that specifies the underlying probability distribution
基本的概率分布,指定一个字符值
参数:a
a numeric value for the lower bound of the random variable
随机变量的数字值的下界
参数:b
a numeric value for the upper bound of the random variable
随机变量的数字值的上限
参数:title
A character value for the chart title
图表标题的字符值
参数:xlabel
A character value for the horizon axis label
一个字符值的地平线轴标签
参数:ylabel
A character value for the vertical axis label
垂直轴标签的字符值
参数:...
other arguments are are passed to the corresponding quantile function
其他参数传递给相应的分位数函数
值----------Value----------
A plot.
一个图。
(作者)----------Author(s)----------
Frederick Novomestky <a href="mailto:fnovomes@poly.edu">fnovomes@poly.edu</a>
Saralees Nadarajah <a href="mailto:saralees.nadarajah@manchester.ac.uk">saralees.nadarajah@manchester.ac.uk</a>
参考文献----------References----------
Truncated Distributions, Journal of Statistical Software, 16, August 2006, http://www.jstatsoft.org/v16/c02
参见----------See Also----------
qtrunc
qtrunc
实例----------Examples----------
x <- rtrunc( 500, spec="norm", a=1, b=2 )
qqtrunc( x, spec="norm", a=1, b=2 )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|