tax(samplingbook)
tax()所属R语言包:samplingbook
Hypothetical Tax Refund Data Frame
假设退税数据框
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simulated tax refund data frame including the estimated and actual refund value
模拟退税数据框的估计值和实际退款
用法----------Usage----------
data(tax)
格式----------Format----------
A data frame with 9083 observations on the following 5 variables.
9083以下5个变量的观察数据框。
id a numeric vector indicating the tax payer
id一个数值向量表示的纳税人
estRefund a numeric vector representing the estimated value of tax refund by the tax payer
estRefund一个数值向量的估计值的纳税人的退税
actRefund a numeric vector representing the actual tax refund calculated by the financial authority
actRefund一个数值向量表示实际计算的退税款的金融机构
diff difference between estimated and acture tax refund
diff差异估计和acture之间的退税
Class a factor with levels 1, 2, 3, and 4 indicating the strata
Class的因素与水平1,2,3和4表明地层
源----------Source----------
Due to data protection this is a simulated data set reflecting the real data.
由于数据保护,这是一个模拟数据反映了真实的数据。
参考文献----------References----------
实例----------Examples----------
data(tax)
summary(tax)
# illustration of stratamean[说明stratamean]
nh <- as.vector(table(tax$Class))
wh <- nh/sum(nh)
stratamean(y=tax$diff, h=as.vector(tax$Class), wh=wh, eae=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|