writesample(sampling)
writesample()所属R语言包:sampling
All possible samples of fixed size
固定大小的所有可能的样本
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Gives a matrix whose rows are the vectors (0 or 1)
给出了一个矩阵的行向量(0或1)
用法----------Usage----------
writesample(n,N)
参数----------Arguments----------
参数:n
sample size.
样本大小。
参数:N
population size.
人口规模。
参见----------See Also----------
landingcube
landingcube
实例----------Examples----------
# all samples of size 4[大小为4的所有样品]
# from a population of size 10.[从人口大小为10。]
w=writesample(4,10)
# the samples are[样品是]
t(apply(w,1,function(x) (1:ncol(w))[x==1]))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|