Mississippi(SASmixed)
Mississippi()所属R语言包:SASmixed
Nitrogen concentrations in the Mississippi River
氮浓度在密西西比河
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Mississippi data frame has 37 rows and 3 columns.
Mississippi数据框有37行3列。
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
influent an ordered factor with levels 3 < 5 < 2 < 1 < 4 < 6
进水有序因素与水平352146
y a numeric vector
Ÿ一个数值向量
Type a factor with levels 1 2 3
输入一个因素与水平123的
源----------Source----------
Littel, R. C., Milliken, G. A., Stroup, W. W., and Wolfinger, R. D. (1996), SAS System for Mixed Models, SAS Institute (Data Set 4.2).
LITTEL,RC,美利肯,GA,斯特普,WW,Wolfinger,RD(1996年),SAS系统的混合模型,SAS研究所(数据集4.2)。
实例----------Examples----------
str(Mississippi)
if (require("lattice", quietly = TRUE, character = TRUE)) {
dotplot(drop(influent:Type) ~ y, groups = Type, Mississippi)
}
if (require("lme4", quietly = TRUE, character = TRUE)) {
options(contrasts = c(unordered = "contr.SAS", ordered = "contr.poly"))
## compare with output 4.1, p. 142[#与输出4.1,P。 142]
print(fm1Miss <- lmer(y ~ 1 + (1|influent), Mississippi))
## compare with output 4.2, p. 143[#与输出4.2检测号码进行比较。 143]
print(fm1MLMiss <- update(fm1Miss, method = "ML"))
## BLUP's of random effects on p. 142[#BLUP页上的随机效应。 142]
ranef(fm1Miss)
## BLUP's of random effects on p. 144[#BLUP页上的随机效应。 144]
print(ranef(fm1MLMiss))
#intervals(fm1Miss) # interval estimates of variance components[间隔(fm1Miss)区间估计的方差分量]
## compare to output 4.8 and 4.9, pp. 150-152[#比较输出4.8和4.9,第150-152]
print(fm2Miss <- lmer(y ~ Type+(1|influent), Mississippi, method = "REML"))
print(anova(fm2Miss))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|