inclusionprobabilities(sampling)
inclusionprobabilities()所属R语言包:sampling
Inclusion probabilities
包含概率
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the first-order inclusion probabilities from a vector of positive numbers (for a probability proportional-to-size sampling design).
计算一阶包含概率从正数(成比例的概率尺寸取样设计)的矢量。
用法----------Usage----------
inclusionprobabilities(a,n)
参数----------Arguments----------
参数:a
vector of positive numbers.
正数的矢量。
参数:n
sample size.
样本大小。
参见----------See Also----------
inclusionprobastrata
inclusionprobastrata
实例----------Examples----------
############[###########]
## Example 1[#示例1]
############[###########]
# a vector of positive numbers[正数的矢量]
a=1:20
# computation of the inclusion probabilities for a sample size n=12[计算包含概率样本大小n = 12的]
pik=inclusionprobabilities(a,12)
pik
############[###########]
## Example 2[#示例2]
############[###########]
# Computation of the inclusion probabilities proportional to the number [的数目成比例的包含概率计算]
# of inhabitants in each municipality of the Belgian database.[比利时的数据库每个城市的居民。]
data(belgianmunicipalities)
pik=inclusionprobabilities(belgianmunicipalities$Tot04,200)
# the first-order inclusion probabilities for each municipality[一阶包含概率的各城市]
data.frame(pik=pik,name=belgianmunicipalities$Commune)
# the inclusion probability sum is equal to the sample size[列入概率总和等于样本大小]
sum(pik)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|