checkInput(SamplingStrata)
checkInput()所属R语言包:SamplingStrata
Check of the inputs to the package: dataframes "errors", "strata" and "sampling frame"
检查输入的包:dataframes的“错误”,“阶层”和“抽样框”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This functions checks the internal structure of the different input dataframes ("errors", "strata" and "sampling frame"), and also the correctness of the relationships among them.
此功能检查的内部结构的的不同输入dataframes(的“错误”,“层”和“采样帧”),和它们之间的关系的正确性也。
用法----------Usage----------
checkInput(errors=NULL, strata=NULL, sampframe=NULL)
参数----------Arguments----------
参数:errors
This is the dataframe containing the precision levels expressed in terms of Coefficients of Variation that estimates on target variables Y's of the survey must comply.
这是数据框,表达的变异系数估计目标变量Y的调查必须符合的精度水平。
参数:strata
This is the dataframe containing the information related to strata.
这是含有有关地层的信息的数据框。
参数:sampframe
This is the dataframe containing the information related to all the units belonging to the population of interest.
这是含有属于人口的利益的所有单位的信息有关的数据框。
(作者)----------Author(s)----------
Giulio Barcaroli
实例----------Examples----------
library(SamplingStrata)
data(swisserrors)
data(swissstrata)
data(swissframe)
checkInput(swisserrors,swissstrata,swissframe)
checkInput(strata=swissstrata,sampframe=swissframe)
checkInput(strata=swissstrata)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|