field.concrete(SMPracticals)
field.concrete()所属R语言包:SMPracticals
Field Concrete Mixture Data
现场混凝土配合比数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Data from a 4x4 Latin square experiment on the efficiency of a field concrete mixer.
数据从一个4×4拉丁方设计的混凝土搅拌机的效率。
用法----------Usage----------
data(field.concrete)
格式----------Format----------
A data frame with 16 observations on the following 4 variables.
一个数据框有16个以下4个变量的观察。
efficiency a numeric vector
效率的数字矢量
speed a factor with levels 4, 8, 12, 16 mph.
速度的一个因素,4,8,12,16英里每小时。
run order in which runs were performed each day
运行顺序运行的每一天
day day on which runs were performed
天天上运行
源----------Source----------
Unpublished lecture notes, Imperial College, London.
未发表的讲义,伦敦帝国学院。
参考文献----------References----------
Page 435.
实例----------Examples----------
data(field.concrete)
fit <- lm(efficiency~run+day+speed,data=field.concrete)
anova(fit)
summary(fit)
fit <- lm(efficiency~run+day+poly(as.numeric(speed),3),data=field.concrete)
summary(fit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|