unuran.discr-class(Runuran)
unuran.discr-class()所属R语言包:Runuran
Class "unuran.discr" for Discrete Distribution
类离散分布的的“unuran.discr”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Class unuran.discr provides an interface to UNU.RAN objects for discrete distributions. The interface might be changed in future releases. <STRONG>Do not use unnamed arguments!</STRONG>
类unuran.discr提供了一个接口UNU.RAN对象离散分布。在以后的版本中可能会改变的接口。的<STRONG>不要使用未命名的参数</ STRONG>
[Advanced] – Discrete Distribution Object.
[高级] - 离散分布对象。
Details
详细信息----------Details----------
Create a new instance of a unuran.discr object using
创建一个unuran.discr对象的一个新实例
new ("unuran.discr", cdf=NULL, pv=NULL, pmf=NULL, lb=NA, ub=NA, mode=NA, sum=NA, name=NA).
new ("unuran.discr", cdf=NULL, pv=NULL, pmf=NULL, lb=NA, ub=NA, mode=NA, sum=NA, name=NA)。
cdf cumulative distribution function. (R function)
CDF累积分布功能。 (R功能)
pv probability vector. (numeric vector)
光伏概率向量。 (矢量数字的)
pmf probability mass function. (R function)
PMF的概率密度函数。 (R功能)
lb lower bound of domain;
英镑较低的界域;
ub upper bound of domain; use Inf if unbounded from right; when pmf is not given, the default ub=Inf is
UB上界域;使用Inf,如果无界的权利;时pmf不,默认ub=Inf
mode mode of distribution. (numeric, integer)
模式分配方式。 (数字,整数)
sum sum over pv / pmf; used for computing
金额总和超过pv/pmf;用于计算
name name of distribution. (string)
名名的分布。 (字符串)
The user is responsible that the given informations are consistent. It depends on the chosen method which information must be given / are used.
所给的信息是一致的,由用户负责。这取决于所选择的方法,该方法的信息,必须给予/使用。
(作者)----------Author(s)----------
Josef Leydold and Wolfgang H\"ormann
<a href="mailto:unuran@statmath.wu.ac.at">unuran@statmath.wu.ac.at</a>.
参考文献----------References----------
UNU.RAN User Manual, see http://statmath.wu.ac.at/unuran/.
参见----------See Also----------
unuran.discr.new, unuran.new, unuran.
unuran.discr.new,unuran.new,unuran。
实例----------Examples----------
## Create discrete distribution with given probability vector[#创建离散分布与给定的概率向量]
## (the PV need not be normalized)[#(PV值不需要被归)]
pv <- c(1.,2.,1.5,0.,3.,1.2)
dpv <- new("unuran.discr", pv=pv, lb=1)
## Create discrete distribution with given PMF[#创建离散分布与给定的PMF]
pmf <- function(x) dbinom(x,100,0.3)
dpmf <- new("unuran.discr",pmf=pmf,lb=0,ub=100)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|