case1701(Sleuth2)
case1701()所属R语言包:Sleuth2
Magnetic Force on Printer Rods
在打印机棒的磁力
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Engineers manipulated three factors (with 3, 2, and 4 levels each) in the construction and operation of printer rods, to see if they influenced the magnetic force around the rod.
工程师操纵三个因素,2,3和4级的打印机棒的建设和运营,看看他们影响周围的磁力棒。
用法----------Usage----------
case1701
格式----------Format----------
A data frame with 44 observations on the following 14 variables.
一个数据框,44以下14个变量的观察。
Description
描述
源----------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课程方法的数据分析(第二版),达克斯伯里。
实例----------Examples----------
str(case1701)
pca <- princomp(case1701[,1:11])
summary(pca)
# The first 3 principal components account for 99.7% of the variation[前3个主成分的变化占99.7%]
screeplot(pca)
# The loadings suggest the following meaningful summaries...[负荷建议的有意义的摘要如下...]
loadings(pca)
overallaverage <- with(case1701, (L1 + L2 + L3 + L4 + L5 + L6 + L7 + L8 + L9 + L10 + L11)/11)
rightleftdiff <- with(case1701, (L9 + L10 + L11)/3 - (L1 + L2 + L3)/3)
middleleftdiff <- with(case1701, L6 - (L1 + L2)/2)
# Note 4 clusters and 1 outlier[注4:聚类和1个离群]
pairs(cbind(overallaverage, rightleftdiff, middleleftdiff))
fit1 <- lm(overallaverage ~ Current*Configur*Material, case1701)
anova(fit1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|