Zageom(VGAM)
Zageom()所属R语言包:VGAM
Zero-Altered Geometric Distribution
零几何分布的改变
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Density, distribution function, quantile function and random generation for the zero-altered geometric distribution with parameter pobs0.
密度,分布函数,分位数的功能和随机生成的零改变的几何分布参数pobs0。
用法----------Usage----------
dzageom(x, prob, pobs0 = 0, log = FALSE)
pzageom(q, prob, pobs0 = 0)
qzageom(p, prob, pobs0 = 0)
rzageom(n, prob, pobs0 = 0)
参数----------Arguments----------
参数:x, q
vector of quantiles.
向量的位数。
参数:p
vector of probabilities.
向量的概率。
参数:n
number of observations. If length(n) > 1 then the length is taken to be the number required.
若干意见。如果length(n) > 1的长度是所需的数量。
参数:prob, log
Parameters from the ordinary geometric distribution (see dgeom).
从普通的几何分布的参数(见dgeom“)。
参数:pobs0
Probability of (an observed) zero, called pobs0. The default value of pobs0 = 0 corresponds to the response having a positive geometric distribution.
(实测值)为零,称为pobs0概率。的默认值pobs0 = 0对应的响应,具有正的几何分布。
Details
详细信息----------Details----------
The probability function of Y is 0 with probability pobs0, else a positive geometric(prob) distribution.
Y的概率函数是0概率pobs0,其他积极的几何(概率)分布。
值----------Value----------
dzageom gives the density and pzageom gives the distribution function, qzageom gives the quantile function, and rzageom generates random deviates.
dzageom给出了密度和pzageom给出了分布函数,qzageom给出了分位数的功能,和rzageom随机产生的偏离。
注意----------Note----------
The argument pobs0 is recycled to the required length, and must have values which lie in the interval [0,1].
的参数pobs0被回收到所需的长度,而且必须有趴在区间[0,1]值。
(作者)----------Author(s)----------
Thomas W. Yee
参见----------See Also----------
zageometric, zigeometric, rposgeom.
zageometric,zigeometric,rposgeom。
实例----------Examples----------
prob = 0.35; pobs0 <- 0.05; x <- (-1):7
dzageom(x, prob = prob, pobs0 = pobs0)
table(rzageom(100, prob = prob, pobs0 = pobs0))
## Not run: x = 0:10[,#未运行:X = 0时10]
barplot(rbind(dzageom(x, prob = prob, pobs0 = pobs0),
dgeom(x, prob = prob)),
beside = TRUE, col = c("blue", "orange"), cex.main = 0.7, las = 1,
ylab = "Probability", names.arg = as.character(x),
main = paste("ZAG(prob = ", prob, ", pobs0 = ", pobs0,
") [blue] vs", " Geometric(prob = ", prob,
") [orange] densities", sep = ""))
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|