npk(MASS)
npk()所属R语言包:MASS
Classical N, P, K Factorial Experiment
古典氮,磷,钾因子实验
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A classical N, P, K (nitrogen, phosphate, potassium) factorial experiment on the growth of peas conducted on 6 blocks. Each half of a fractional factorial design confounding the NPK interaction was used on 3 of the plots.
一个经典的氮,磷,K(下氮,磷,钾)6块进行豌豆的生长因子实验。 3图各占一半分数阶乘设计混杂的氮磷钾互动。
用法----------Usage----------
npk
格式----------Format----------
The npk data frame has 24 rows and 5 columns:
npk数据框有24行和第5列:
which block (label 1 to 6).
块(标签1至6)。
indicator (0/1) for the application of nitrogen.
施氮指标(0/1)。
indicator (0/1) for the application of phosphate.
指标(0/1)磷酸盐的应用。
indicator (0/1) for the application of potassium.
钾肥施用指标(0/1)。
Yield of peas, in pounds/plot (the plots were (1/70) acre).
豌豆的产量,在磅/图(图(1/70)英亩)。
源----------Source----------
Imperial College, London, M.Sc. exercise sheet.
伦敦帝国学院,硕士行使表。
参考文献----------References----------
Modern Applied Statistics with S. Fourth edition. Springer.
举例----------Examples----------
options(contrasts = c("contr.sum", "contr.poly"))
npk.aov <- aov(yield ~ block + N*P*K, npk)
npk.aov
summary(npk.aov)
alias(npk.aov)
coef(npk.aov)
options(contrasts = c("contr.treatment", "contr.poly"))
npk.aov1 <- aov(yield ~ block + N + K, data = npk)
summary.lm(npk.aov1)
se.contrast(npk.aov1, list(N=="0", N=="1"), data = npk)
model.tables(npk.aov1, type = "means", se = TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|