Semi2(SASmixed)
Semi2()所属R语言包:SASmixed
Oxide layer thicknesses on semiconductors
氧化层厚度对半导体
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Semi2 data frame has 72 rows and 5 columns.
Semi2数据框有72行5列。
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
Source a factor with levels 1 and 2
源的因素与水平1和2的
Lot a factor with levels 1 to 8
地段的因素与水平18
Wafer a factor with levels 1 to 3
晶圆的因素与水平13
Site a factor with levels 1 to 3
网站的一个因素水平13
Thickness a numeric vector
厚度的数字矢量
源----------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.4).
LITTEL,RC,美利肯,GA,斯特普,WW,Wolfinger,RD(1996年),SAS系统的混合模型,SAS研究所(数据集4.4)。
实例----------Examples----------
str(Semi2)
xtabs(~Lot + Wafer, Semi2)
if (require("lme4", quietly = TRUE, character = TRUE)) {
options(contrasts = c(unordered = "contr.SAS", ordered = "contr.poly"))
## compare with output 4.13, p. 156[#与输出4.13,P。 156]
print(fm1Semi2 <- lmer(Thickness ~ 1 + (1|Lot/Wafer), Semi2))
## compare with output 4.15, p. 159[#与输出4.15,P。 159]
print(fm2Semi2 <- lmer(Thickness ~ Source + (1|Lot/Wafer), Semi2))
print(anova(fm2Semi2))
## compare with output 4.17, p. 163[#与输出4.17检测号码进行比较。 163]
print(fm3Semi2 <- lmer(Thickness ~ Source + (1|Lot/Wafer) + (1|Lot:Source),
Semi2))
## This is not the same as the SAS model.[#这是不一样的SAS模型。]
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|