vgFitStart(VarianceGamma)
vgFitStart()所属R语言包:VarianceGamma
Find Starting Values for Fitting a Variance Gamma Distribution
方差Gamma分布拟合的初始值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Finds starting values for input to a maximum likelihood routine for fitting variance gamma distribution to data.
查找的初始值用于输入到嵌合方差伽玛分布数据的最大似然例程。
用法----------Usage----------
vgFitStart(x, breaks = NULL, startValues = "SL", paramStart = NULL,
startMethodSL = "Nelder-Mead",
startMethodMoM = "Nelder-Mead", ...)
vgFitStartMoM(x, startMethodMoM = "Nelder-Mead", ...)
参数----------Arguments----------
参数:x
Data vector.
数据向量。
参数:breaks
Breaks for histogram. If missing, defaults to those generated by hist(x, right = FALSE, plot = FALSE).
截断直方图。如果缺少,默认所产生的hist(x, right = FALSE, plot = FALSE)。
参数:startValues
Vector of the different starting values to consider. See Details.
矢量,考虑不同的初始值。查看详细信息。
参数:paramStart
Starting values for param if startValues = "US".
的初始值参数,如果startValues = "US"。
参数:startMethodSL
Method used by call to optim in finding skew Laplace estimates.
调用optim:中发现歪斜拉普拉斯估计所使用的方法。
参数:startMethodMoM
Method used by call to optim in finding method of moments estimates.
调用optim:在寻找方法的矩估计所使用的方法。
参数:...
Passes arguments to optim.
传递参数到optim。
Details
详细信息----------Details----------
Possible values of the argument startValues are the following:
可能的参数值startValues有以下几种:
"US"User-supplied.
"US":用户提供。
"SL"Based on a fitted skew-Laplace distribution.
"SL"基于一个装有倾斜拉普拉斯分布。
"MoM"Method of moments.
"MoM"矩量法。
If startValues = "US" then a value must be supplied for paramStart.
如果startValues = "US"的值必须为paramStart提供。
If startValues = "MoM", vgFitStartMoM is called. These starting values are based on Barndorff-Nielsen et al (1985).
如果startValues = "MoM",vgFitStartMoM被调用。这些初始值是根据Barndorff-Nielsen等(1985)上。
If startValues = "SL", or startValues = "MoM" an initial optimisation is needed to find the starting values. These optimisations call optim.
如果startValues = "SL",或startValues = "MoM"一个初步的优化需要找到的起始值。这些的优化打检测optim。
值----------Value----------
vgFitStart returns a list with components:
vgFitStart返回一个列表的组件:
参数:vgStart
A vector with elements vgC, lSigma (log of sigma), theta and lNu (log of nu) giving the starting value of param.
一个向量的元素vgC,lSigma(logSigma公司),theta和lNu(log女)给参数的初始值。
参数:xName
A character string with the actual x argument name.
一个字符串的实际x参数名称。
参数:breaks
The cell boundaries found by a call to hist.
单元格边界发现通过调用hist。
参数:midpoints
The cell midpoints found by a call to hist.
单元格中点通过调用hist。
参数:empDens
The estimated density found by a call to hist.
密度估计,通过调用hist。
vgFitStartMoM returns only the method of moments estimates as a vector with elements vgC, lSigma (log of sigma), theta and lNu (log of nu).
vgFitStartMoM只返回一个向量,其元素vgC,lSigma(log西格玛),theta和lNu(logNU)的矩估计方法。
(作者)----------Author(s)----------
David Scott <a href="mailto:d.scott@auckland.ac.nz">d.scott@auckland.ac.nz</a>,
Christine Yang Dong <a href="mailto:c.dong@auckland.ac.nz">c.dong@auckland.ac.nz</a>
参考文献----------References----------
J. Appl. Prob., 41A:177–187.
参见----------See Also----------
dvg, dskewlap, vgFit, hist, and optim.
dvg,dskewlap,vgFit,hist和optim。
实例----------Examples----------
param <- c(0,0.5,0,0.5)
dataVector <- rvg(500, param = param)
vgFitStart(dataVector,startValues="SL")
vgFitStartMoM(dataVector)
vgFitStart(dataVector,startValues="MoM")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|