unuran.details(Runuran)
unuran.details()所属R语言包:Runuran
Information on a given "unuran" generator object
在给予“unuran”的生成器对象的信息
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Prints type of unuran generator, data used from distribution, parameter for algorithm, performance characteristic, and hints to adjust the performance of the generator. It also returns a list that contains some of these data.
打印类型unuran发生器,用于从分配的数据,算法参数,性能特性,和提示来调整发电机的性能。它也返回一个列表,其中包含一些数据。
[Advanced] – Print object.
[高级] - 打印对象。
用法----------Usage----------
unuran.details(unr, show=TRUE, return.list=FALSE, debug=FALSE)
参数----------Arguments----------
参数:unr
an unuran object.
unuran对象。
参数:show
whether the data are printed on the console. (boolean)
数据是否在控制台上打印。 (布尔)
参数:return.list
whether some of the data are returned in a list. (boolean)
某些数据是否在一个列表中返回。 (布尔)
参数:debug
if TRUE, store additional data in returned list. This might be useful to examine a method. (boolean)
如果为TRUE,返回的列表中存储其他数据。这可能是有用的检查方法。 (布尔)
Details
详细信息----------Details----------
If show is TRUE then this routine prints data about the generator object to the console.
如果show是TRUE那么这个程序将数据打印到控制台生成器对象。
If return.list is TRUE then a list that contains some of these data is returned. This an experimental feature and components of the list may be extended on request.
如果return.listTRUE然后一个列表,其中包含一些数据被返回。这是一个实验性的功能和组件的列表可能会要求延长。
The components of the returned list depend on the particular method. However, the following are common to all objects:
返回的列表中的组件,依赖于特定的方法。但是,下面的所有对象共同:
method string that contains the name of the generation
method的一代的名称的字符串,其中包含
type one of the following strings that describes the type of the generation method:
type以下字符串,它描述的类型的生成方法之一:
"inv" inversion method
"inv"反演方法
"ar" acceptance-rejection method
"ar"接受 - 拒绝方法
"iar" acceptance-rejection whether inversion is
"iar"接受 - 拒绝是否反转
"mcmc" Markov chain Monte Carlo sampler
"mcmc"马尔可夫链蒙特卡罗采样
"other" none of the above methods
"other"没有上面的方法
distr.class one of the following strings that describes the class of the distribution:
distr.class包含以下字符串的描述类的分布:
"cont" univariate continuous distribution
"cont"单变量连续分布
"discr" univariate discrete distribution
"discr"单变量离散分布
"cont" multivariate continuous distribution
"cont"多元连续分布
In addition the following components may be available:
此外,下列的组分可以是可用的:
area.pdf area below density function of the
area.pdf密度函数的下方区域
area.hat area below hat function for an
area.hat下面的区域帽子功能为
rejection.constant rejection constant for an acceptance-rejection method. It given as the ratio area.hat / area.pdf.
rejection.constant拒绝不变的接受 - 拒绝方法。给出的比率area.hat / area.pdf。
area.squeeze area below squeeze function for an acceptance-rejection method. area.hat / area.squeeze can be used as upper bound for the
area.squeeze面积低于挤压功能,用于接受 - 拒绝方法。 area.hat / area.squeeze可以用作上的约束
intervals integer that contains the number of subintervals into which the domain of the target distribution is
intervals的整数包含的子区间数的目标分配到该域是
truncated.domain vector of length 2 that contains upper and lower boundary of the "computational domain" that
truncated.domain向量长度为2,包含上限和下限的“计算域的边界,
(作者)----------Author(s)----------
Josef Leydold and Wolfgang H\"ormann
<a href="mailto:unuran@statmath.wu.ac.at">unuran@statmath.wu.ac.at</a>.
参见----------See Also----------
unuran.
unuran。
实例----------Examples----------
## Create a generator object[#创建一个生成器对象]
distr <- udnorm()
gen <- tdrd.new(distr)
## print data about object on console[#打印对象在控制台上的数据。]
unuran.details(gen)
## get list with some of these data[#得到列表与这些数据的一些]
data <- unuran.details(gen,return.list=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|