Cultivation(SASmixed)
Cultivation()所属R语言包:SASmixed
Bacterial innoculation applied to grass cultivars
细菌接种到草品种
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Cultivation data frame has 24 rows and 4 columns of data from an experiment on the effect on dry weight yield of three bacterial inoculation treatments applied to two grass cultivars.
Cultivation数据框具有24行和4列的数据从3施加到两草品种的细菌接种处理的干重收率的影响的实验。
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
Block a factor with levels 1 to 4
A座因子,水平14
Cult the cultivar factor with levels a and b
邪教的品种因素水平a和b
Inoc the innoculant factor with levels con, dea and liv
INOC innoculant因素与水平con,dea和liv
drywt a numeric vector of dry weight yields
drywt一个数值向量干重产量
源----------Source----------
Littel, R. C., Milliken, G. A., Stroup, W. W., and Wolfinger, R. D. (1996), SAS System for Mixed Models, SAS Institute (Data Set 2.2(a)).
LITTEL,RC,美利肯,GA,斯特普,WW,Wolfinger,RD(1996年),SAS系统的混合模型,SAS研究所(数据集2.2(A))。
Littel, R. C., Freund, R. J., and Spector, P. C. (1991), SAS System for Linear Models, Third Ed., SAS Institute.
LITTEL,RC,弗氏,RJ,斯佩克特,PC(1991),SAS系统的线性模型,第三版,SAS研究所。
实例----------Examples----------
str(Cultivation)
xtabs(~Block+Cult, Cultivation)
if (require("lme4", quietly = TRUE, character = TRUE)) {
options(contrasts = c(unordered = "contr.SAS", ordered = "contr.poly"))
## compare with Output 2.10, page 58[#与输出2.10,第58页]
print(fm1Cult <- lmer(drywt ~ Inoc * Cult + (1|Block) + (1|Cult),
Cultivation))
print(anova(fm1Cult))
print(fm2Cult <- lmer(drywt ~ Inoc + Cult + (1|Block) + (1|Cult),
Cultivation))
print(anova(fm2Cult))
print(fm3Cult <- lmer(drywt ~ Inoc + (1|Block) + (1|Cult), Cultivation))
print(anova(fm3Cult))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|