Semiconductor(SASmixed)
Semiconductor()所属R语言包:SASmixed
Semiconductor split-plot experiment
半导体裂区试验
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Semiconductor data frame has 48 rows and 5 columns.
Semiconductor数据框有48行5列。
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
resistance a numeric vector
电阻的数字矢量
ET a factor with levels 1 to 4 representing etch time.
ET水平的因素与14代表蚀刻时间。
Wafer a factor with levels 1 to 3
晶圆的因素与水平13
position a factor with levels 1 to 4
定位因素与水平1到4
Grp an ordered factor with levels 1/1 < 1/2 < 1/3 < 2/1 < 2/2 < 2/3 < 3/1 < 3/2 < 3/3 < 4/1 < 4/2 < 4/3
GRP一个有序的因素与水平1/11/21/32/12/22/33/1<3/23/34/14/24/3
源----------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(b)).
LITTEL,RC,美利肯,GA,斯特普,WW,Wolfinger,RD(1996年),SAS系统的混合模型,SAS研究所(数据设置第2.2(b))。
实例----------Examples----------
str(Semiconductor)
if (require("lme4", quietly = TRUE, character = TRUE)) {
options(contrasts = c(unordered = "contr.SAS", ordered = "contr.poly"))
print(fm1Semi <- lmer(resistance ~ ET * position + (1|Grp), Semiconductor))
print(anova(fm1Semi))
print((fm2Semi <- lmer(resistance ~ ET + position + (1|Grp), Semiconductor)))
print(anova(fm2Semi))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|