Zipf(VGAM)
Zipf()所属R语言包:VGAM
The Zipf Distribution
齐普夫分布
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Density, and cumulative distribution function for the Zipf distribution.
密度和Zipf分布的累积分布函数。
用法----------Usage----------
dzipf(x, N, s, log = FALSE)
pzipf(q, N, s)
参数----------Arguments----------
参数:x, q
vector of quantiles.
向量的位数。
参数:N, s
the number of elements, and the exponent characterizing the distribution. See zipf for more details.
的元素的数目,和特征的分布的指数。见zipf更多详情。
参数:log
Logical. If log = TRUE then the logarithm of the density is returned.
逻辑。如果log = TRUE然后返回的密度的对数。
Details
详细信息----------Details----------
This is a finite version of the zeta distribution. See zipf for more details.
这是一个有限版本的ζ分布的。见zipf更多详情。
值----------Value----------
dzipf gives the density, and pzipf gives the cumulative distribution function.
dzipf给出了密度,和pzipf给人的累积分布函数。
(作者)----------Author(s)----------
T. W. Yee
参见----------See Also----------
zipf.
zipf。
实例----------Examples----------
N = 10; s = 0.5; y = 1:N
proby = dzipf(y, N = N, s = s)
## Not run: plot(proby ~ y, type = "h", col = "blue", ylab = "Probability",[#不运行图(普罗比Y,类型=“H”,列=“蓝”,ylab =“概率论”]
ylim = c(0, 0.2), main = paste("Zipf(N = ",N,", s = ",s,")", sep = ""),
lwd = 2, las = 1)
## End(Not run)[#(不执行)]
sum(proby) # Should be 1[应该是1]
max(abs(cumsum(proby) - pzipf(y, N = N, s = s))) # Should be 0[应为0]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|