SIMS(SASmixed)
SIMS()所属R语言包:SASmixed
Second International Mathematics Study data
第二届国际数学研究数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The SIMS data frame has 3691 rows and 3 columns.
SIMS数据框3691行3列。
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
Pretot a numeric vector giving the student's pre-test total score
Pretot一个数值向量,给学生的预测试总成绩
Gain a numeric vector giving gains from pre-test to the final test
获得一个数值向量收益从预测试的最终测试
Class an ordered factor giving the student's class
类的有序因素给学生的课
源----------Source----------
Littel, R. C., Milliken, G. A., Stroup, W. W., and Wolfinger, R. D. (1996), SAS System for Mixed Models, SAS Institute (section 7.2.2)
LITTEL,RC,美利肯,GA,斯特普,WW,Wolfinger,RD(1996),SAS系统的混合模型,SAS研究所(第7.2.2节)
Kreft, I. G. G., De Leeuw, J. and Var Der Leeden, R. (1994), “Review of five multilevel analysis programs: BMDP-5V, GENMOD, HLM, ML3, and VARCL”, American Statistician, 48, 324–335.
Kreft,IGG,德莱乌,J.瓦尔德礼顿,R.(1994),“审查五个多层次的分析程序:BMDP-5V,GENMOD,HLM,ML3,VARCL”,美国统计,48,324 - 335。
实例----------Examples----------
str(SIMS)
if (require("lme4", quietly = TRUE, character = TRUE)) {
options(contrasts = c(unordered = "contr.SAS", ordered = "contr.poly"))
## compare to output 7.4, p. 262[#7.4的输出,对比较。 262]
print(fm1SIMS <- lmer(Gain ~ Pretot + (Pretot | Class), data = SIMS,
control = list(msVerbose = TRUE)))
print(anova(fm1SIMS))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|