rvcat(rv)
rvcat()所属R语言包:rv
Generate Categorical Random Variables
生成类别的随机变量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generates a random factor (i.e. a categorical random variable), given the probabilities of each category and their corresponding labels.
生成一个随机的因素(即一个绝对的随机变量),每个类别的概率及其相应的标签。
用法----------Usage----------
rvcat(n=1, prob, levels=NULL)
参数----------Arguments----------
参数:n
integer, number of random variables to generate
整数,随机变量的数目,以产生
参数:prob
vector of probabilities of successes of each trial (may be constant or an rv object)
成功概率向量的每个试验(可能是恒定的或RV对象的)
参数:levels
(character) labels for the categories
(字符)标签的类别
Details
详细信息----------Details----------
The length of prob determines the number of bins.
prob的长度确定箱的数目。
The vector prob will be normalized to have sum 1.
向量prob将被标准化为有一笔1。
值----------Value----------
A random factor of length length(prob).
随机因素的长度length(prob)。
(作者)----------Author(s)----------
Jouni Kerman
<a href="mailto:jouni@kerman.com">jouni@kerman.com</a>
参考文献----------References----------
Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.
参见----------See Also----------
rvfactor
rvfactor
实例----------Examples----------
rvcat(1, prob=c(0.5, 0.3, 0.2)) # default levels: 1, 2, 3[默认级别:1,2,3]
rvcat(1, prob=c(5, 3, 2)) # same as above[与上述相同]
p <- rvdirichlet(1, alpha=c(0.7, 0.3)) # prior probabilities[先验概率]
rvcat(1, prob=p, levels=c("Group 1", "Group 2"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|