case1401(Sleuth2)
case1401()所属R语言包:Sleuth2
Chimp Learning Times
黑猩猩学习时报“
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Researchers taught each of 4 chimps to learn 10 words in American sign language and recorded the learning time for each word for each chimp. They wished to describe chimp differences and word differences.
研究人员讲授各4只黑猩猩学习美国手语的10个字,记录了每一个字,每一个黑猩猩的学习时间。他们希望来形容黑猩猩的差异和词的差异。
用法----------Usage----------
case1401
格式----------Format----------
A data frame with 40 observations on the following 3 variables.
一种数据框与40上的以下3个变量的观测。
Minuteslearning time in minutes
Minutes的学习的时间,以分钟
Chimpa factor indicating chimp, with four levels "Booee", "Cindy", "Bruno" and "Thelma"
Chimp表明黑猩猩的一个因素,具有四个级别的"Booee","Cindy","Bruno"和"Thelma"
Signa factor indicating word taught, with 10 levels
Sign的一个因素字教,10级
源----------Source----------
Ramsey, F.L. and Schafer, D.W. (2002). The Statistical Sleuth: A Course in Methods of Data Analysis (2nd ed), Duxbury.
拉姆齐,F.L.和Schafer,D.W. (2002年)。的统计的猎犬:A课程方法的数据分析(第二版),达克斯伯里。
参考文献----------References----------
Fouts, R.S. (1973). Acquisition and Testing of Gestural Signs in Four Young Chimpanzees, Science 180: 978-980.
实例----------Examples----------
str(case1401)
fitadditive <- aov(Minutes ~ Chimp + Sign, case1401)
# Residual plot indicates a transformation may help[残差图表示的转变可以帮助]
plot(fitadditive)
fitadditive <- aov(log(Minutes) ~ Chimp + Sign, case1401)
# No problems are indicated by residual plot[没有问题表示残差图]
plot(fitadditive)
anova(fitadditive)
# Tukey multiple comparisons of sign differences[Tukey多重比较的符号差异]
mcSign <- TukeyHSD(fitadditive,"Sign")
mcSign
plot(mcSign)
mcChimp <- TukeyHSD(fitadditive,"Chimp")
mcChimp
par(cex=.7)
plot(mcChimp)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|