skewhypTailPlotLine(SkewHyperbolic)
skewhypTailPlotLine()所属R语言包:SkewHyperbolic
Tail Plot Line
尾图主线
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Adds skew hyperbolic t-distribution line to a tail plot
添加歪斜双曲t分布线的尾图
用法----------Usage----------
skewhypTailPlotLine(x, mu = 0, delta = 1, beta = 1, nu = 1,
param = c(mu,delta,beta,nu),
side = c("right", "left"), ...)
参数----------Arguments----------
参数:x
A vector of values for which the tail plot has been drawn.
一个向量的值的尾部曲线已经绘就。
参数:side
Character. "right" (the default) if the tail plot is of the right-hand tail, "left" if the tail plot is of the left-hand tail.
字符。 "right"(默认值),如果尾巴图的右手尾,"left"尾巴的左手,如果尾巴图的。
参数:mu
Location parameter mu, default is 0.
位置参数mu,默认为0。
参数:delta
Scale parameter delta, default is 1.
尺度参数delta,默认值是1。
参数:beta
Skewness parameter beta, default is 1.
偏度参数beta,默认值是1。
参数:nu
Shape parameter nu, default is 1.
形状参数nu,默认值是1。
参数:param
Specifying the parameters as a vector of the form<br> c(mu,delta,beta,nu).
指定参数作为一个向量的形式<br>物理化学学报c(mu,delta,beta,nu)。
参数:...
Other graphical parameters (see par.
其他图形参数(见par。
Details
详细信息----------Details----------
The function tailPlot from DistributionUtils can be used to draw either a left-hand or right-hand tail plot of the data x. See for example Resnick (2007), p.105. The left-hand tail plot plots the empirical distribution of the data against the order statistics, for order statistic values below the median. The right-hand tail plot plots one minus the empirical distribution of the data against the order statistics, for order statistic values above the median. The default is for the y-axis to be plotted on a log scale.
函数tailPlotDistributionUtils可以用于绘制的数据x无论是左手或右手的尾巴图。请参阅例如雷斯尼克(2007年),第105页。左侧的尾巴图的经验分布图针对该命令统计的数据,订单低于中位数的统计值。右侧尾图图一减对次序统计量的经验分布的数据,次序统计量中位数以上的值。缺省是为对数标度中的y轴被绘制。
skewhypTailPlotLine adds the line derived from the given skew hyperbolic t-distribution to an already drawn tail plot.
skewhypTailPlotLine添加行来自已经制定的尾巴图给予倾斜双曲t分布。
值----------Value----------
Returns NULL invisibly.
返回NULL“无形。
(作者)----------Author(s)----------
David Scott <a href="mailto:d.scott@auckland.ac.nz">d.scott@auckland.ac.nz</a>
参考文献----------References----------
The generalised hyperbolic skew Student's <code>t</code>-distribution. Journal of Financial Econometrics, 4, 275–309.
参见----------See Also----------
tailPlot and skewhypFit.
tailPlot和skewhypFit。
实例----------Examples----------
### Draw tail plot of some data[##平尾图的一些数据]
param <- c(0,1,1,10)
x <- rskewhyp(200, param = param)
tailPlot(x)
### Add skew hyperbolic t-distribution line[##添加歪斜的双曲线T-配电线路]
skewhypTailPlotLine(x, param = param)
### Parameters from fit may look better[##从适合的参数可能更好看]
paramFit <- skewhypFit(x, plots = FALSE)$param
tailPlot(x)
skewhypTailPlotLine(x, param = param)
skewhypTailPlotLine(x, param = paramFit, col = "steelblue")
### Left tail example[##左尾例如]
tailPlot(x, side = "l")
### Add skew hyperbolic t-distribution line[##添加歪斜的双曲线T-配电线路]
skewhypTailPlotLine(x, param = paramFit, side = "l")
### Log scale on both axes[##对数刻度上的两个轴]
tailPlot(x, side = "r", log = "xy")
### Add skew hyperbolic t-distribution line[##添加歪斜的双曲线T-配电线路]
skewhypTailPlotLine(x, param = paramFit, side = "r")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|