money(samplingbook)
money()所属R语言包:samplingbook
Money Data Frame
货币数据框
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Data provides guesses and true values for students wallet money.
数据提供学生钱包里的钱的猜测,真正的价值。
用法----------Usage----------
data(money)
格式----------Format----------
A data frame with 13 observations (corresponding to the students) on the following 3 variables.
与13观测的数据框(对应于学生)在以下的3个变量。
id a numeric vector of identification number
id一个数值向量的识别号码
X a numeric vector of secondary information, guesses of money in the wallet
X一个数值向量的次要信息,猜测钱的钱包
y a numeric vector of primary information, counted money in the wallet. NA means subject was not included into the sample.
y的主要信息向量的数字,数钱的钱包。 NA是指主体没有被列入到样品中。
Details
详细信息----------Details----------
In a lesson an experiment was made, in which the students were asked to guess the current amount of money in their wallet. A simple sample of these students was drawn, who counted the money in their wallet exactly. Using this secondary information, model based estimation of the population mean is possible.
在一节课的实验,其中学生被要求在他们的钱包来猜多少钱。绘制一个简单的示例,这些学生在他们的钱包,数钱完全。使用此辅助信息,基于模型的估计的人口平均是可能的。
参考文献----------References----------
实例----------Examples----------
data(money)
print(money)
# Usage of mbes()[使用的少数族裔企业()]
mu.X <- mean(money$X)
x <- money$X[which(!is.na(money$y))]
y <- na.omit(money$y)
# estimation[预算]
mbes(y~x, aux=mu.X, N=13, method='all')
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|