summary.vgFit(VarianceGamma)
summary.vgFit()所属R语言包:VarianceGamma
Summarizing Variance Gamma Distribution Fit
总结方差Gamma分布拟合
译者:生物统计家园网 机器人LoveR
描述----------Description----------
summary Method for class "vgFit".
summary的方法类"vgFit"的。
用法----------Usage----------
## S3 method for class 'vgFit'
summary(object, ...)
## S3 method for class 'summary.vgFit'
print(x, digits = max(3, getOption("digits") - 3), ...)
参数----------Arguments----------
参数:object
An object of class "vgFit", resulting from a call to vgFit.
一个类的对象"vgFit",结果从调用vgFit。
参数:x
An object of class "summary.vgFit", resulting from a call to summary.vgFit.
一个类的对象"summary.vgFit",结果从调用summary.vgFit。
参数:digits
The number of significant digits to use when printing.
打印时所使用的数量显著数字。
参数:...
Further arguments passed to or from other methods.
进一步的参数传递给其他方法。
Details
详细信息----------Details----------
summary.vgFit calculates standard errors for the estimates of c, sigma, theta, and nu of the variance gamma distribution parameter vector param if the Hessian from the call to optim or nlm is available. Because the parameters in the call to the optimiser are c, log(sigma), theta and log(nu), the delta method is used to obtain the standard errors for sigma and nu.
summary.vgFit计算标准误差的估计c,sigma,theta,nu的方差Gamma分布的参数向量param,如果在黑森州从调用optim或nlm是可用的。因为优化器在调用的参数c,log(sigma),theta和log(nu),Delta方法获得的标准误差为sigma和nu。
值----------Value----------
If the Hessian is available, summary.vgFit computes standard errors for the estimates of c, sigma, theta, and nu, and adds them to object as object$sds. Otherwise, no calculations are performed and the composition of object is unaltered.
如果Hessian是,summary.vgFit计算标准误差的估计c,sigma,theta和nu,并将它们添加到<X >object。否则,没有计算被执行的组合物,object$sds是不变的。
summary.vgFit invisibly returns x with class changed to summary.vgFit.
summary.vgFit看不见的返回x类改为summary.vgFit。
See vgFit for the composition of an object of class vgFit.
见vgFit类vgFit的对象组成的。
print.summary.vgFit prints a summary in the same format as print.vgFit when the Hessian is not available from the fit. When the Hessian is available, the standard errors for the parameter estimates are printed in parentheses beneath the parameter estimates, in the manner of fitdistr in the package MASS.
print.summary.vgFit相同的格式打印出汇总,print.vgFit时,Hessian是不适合的。当Hessian是,打印参数估计值的标准误差在括号中的参数估计下,fitdistr包中的MASS的方式。
参见----------See Also----------
vgFit, summary.
vgFit,summary。
实例----------Examples----------
### Continuing the vgFit(.) example:[##持续vgFit的()的例子:]
param <- c(0,0.5,0,0.5)
dataVector <- rvg(500, param = param)
fit <- vgFit(dataVector)
print(fit)
summary(fit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|