PlantGrowth(datasets)
PlantGrowth()所属R语言包:datasets
Results from an Experiment on Plant Growth
从对植物的生长实验的结果
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Results from an experiment to compare yields (as measured by dried weight of plants) obtained under a control and two different treatment conditions.
从实验的结果比较控制和两种不同的治疗条件下获得的收益率(植物干重计算)。
用法----------Usage----------
格式----------Format----------
A data frame of 30 cases on 2 variables.
的30例2个变量的数据框。
weight
重量
group
组
The levels of group are "ctrl", "trt1", and "trt2".
水平group“CTRL”,“trt1,trt2”。
源----------Source----------
Dobson, A. J. (1983) An Introduction to Statistical Modelling. London: Chapman and Hall.
多布森,AJ(1983)统计建模导论。伦敦:查普曼和霍尔。
举例----------Examples----------
## One factor ANOVA example from Dobson's book, cf. Table 7.4:[#一因子变异数多布森的书,比照的例子。表7.4:]
require(stats); require(graphics)
boxplot(weight ~ group, data = PlantGrowth, main = "PlantGrowth data",
ylab = "Dried weight of plants", col = "lightgray",
notch = TRUE, varwidth = TRUE)
anova(lm(weight ~ group, data = PlantGrowth))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|