checkcalibration(sampling)
checkcalibration()所属R语言包:sampling
Check calibration
检查校准
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Checks the validity of the calibration. In some cases, the calibration estimators
检查有效性校准。在某些情况下,校正估计
用法----------Usage----------
checkcalibration(Xs, d, total, g, EPS=1e-6)
参数----------Arguments----------
参数:Xs
matrix of calibration variables.
矩阵的标定变量。
参数:d
vector of initial weights.
的初始权重向量。
参数:total
vector of population totals.
向量的人口总数。
参数:g
vector of g-weights.
G的权重向量。
参数:EPS
the control value used to verify the calibration, by default equal to 1e-6.
用于验证的校准的控制值,缺省情况下,等于到1e-6。
Details
详细信息----------Details----------
In the case where calibration is not possible, the 'value' indicates the difference
在校准的情况下是不可能的,的“价值”表示的区别
值----------Value----------
The function returns the following three objects:
该函数返回以下三个对象:
参数:message
a message concerning the calibration,
的消息有关的校准,
参数:result
TRUE if the calibration is possible and FALSE, otherwise.
如果校准TRUE FALSE,是可能的,否则。
参数:value
value of max(abs(tr-total)/total, which is used as criterium to validate the calibration, where tr=crossprod(Xs, g*d).
值的最大值(绝对值(数计)/总的,它被用来作为绕圈确认校准,,其中tr = crossprod(两个X,G * D)。
参见----------See Also----------
calib
calib
实例----------Examples----------
# matrix of auxiliary variables[辅助变量矩阵]
Xs=cbind(c(1,1,1,1,1,0,0,0,0,0),c(0,0,0,0,0,1,1,1,1,1),c(1,2,3,4,5,6,7,8,9,10))
# inclusion probabilities[包含概率]
pik=rep(0.2,times=10)
# vector of totals[向量的总数]
total=c(24,26,280)
# the g-weights[G-砝码]
g=calib(Xs,d=1/pik,total,method="raking")
# the calibration is possible[校准是可能的]
checkcalibration(Xs,d=1/pik,total,g)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|