fastflightcube(sampling)
fastflightcube()所属R语言包:sampling
Fast flight phase for the cube method
快速飞行阶段的多维数据集的方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Executes the fast flight phase of the cube method (algorithm of Chauvet and Till茅, 2005, 2006). The data are sorted following the argument order. Inclusion probabilities equal to 0 or 1 are tolerated.
执行多维数据集的方法(算法Chauvet和Tillé,2005年,2006年)的快速飞行阶段。对数据进行排序的说法order。包含概率等于0或1的耐受性。
用法----------Usage----------
fastflightcube(X,pik,order=1,comment=TRUE)
参数----------Arguments----------
参数:X
matrix of auxiliary variables on which the sample must be balanced.
该样本必须是平衡的辅助变量的矩阵。
参数:pik
vector of inclusion probabilities.
矢量包含概率。
参数:order
1, the data are randomly arranged,<br> 2, no change in data order,<br> 3, the data are sorted in decreasing order.
数据1,数据是随机排列,参考2,没有变化的数据的顺序,参考3,以递减的顺序进行排序。
参数:comment
a comment is written during the execution if comment is TRUE.
在执行过程中如果comment是TRUE写评论。
参考文献----------References----------
Chauvet, G. and Till茅, Y. (2006). A fast algorithm of balanced sampling. Computational Statistics, 21/1:53–62. <br> Chauvet, G. and Till茅, Y. (2005). New SAS macros for balanced sampling. In INSEE, editor, Journ茅es de M茅thodologie Statistique, Paris.<br> Deville, J.-C. and Till茅, Y. (2004). Efficient balanced sampling: the cube method. Biometrika, 91:893–912.<br> Deville, J.-C. and Till茅, Y. (2005). Variance approximation under balanced sampling. Journal of Statistical Planning and Inference, 128/2:411–425.
参见----------See Also----------
samplecube
samplecube
实例----------Examples----------
# Matrix of balancing variables[矩阵的均衡变量]
X=cbind(c(1,1,1,1,1,1,1,1,1),c(1,2,3,4,5,6,7,8,9))
# Vector of inclusion probabilities.[向量的包含概率。]
# The sample size is 3.[样本大小为3。]
pik=c(1/3,1/3,1/3,1/3,1/3,1/3,1/3,1/3,1/3)
# pikstar is almost a balanced sample and is ready for the landing phase[pikstar几乎是平衡的样品,并准备着陆阶段]
pikstar=fastflightcube(X,pik,order=1,comment=TRUE)
pikstar
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|