Bond(SASmixed)
Bond()所属R语言包:SASmixed
Strengths of metal bonds
金属键的优势
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Bond data frame has 21 rows and 3 columns of data on the strength required to break metal bonds according to the metal and the ingot.
Bond数据框有21行和第3列上的数据所需的强度,所述的金属和锭打破金属键。
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
pressure a numeric vector of pressures required to break the bond
施加压力一个数字矢量的压力,需要打破债券
Metal a factor with levels c, i and n indicating the metal involved (copper, iron or nickel).
金属的一个因素与水平c,i和n表示所涉及的金属(铜,铁或镍)。
Ingot an ordered factor indicating the ingot of the composition material.
锭一个有序的因子表示的组合物材料的铸锭。
源----------Source----------
Littel, R. C., Milliken, G. A., Stroup, W. W., and Wolfinger, R. D. (1996), SAS System for Mixed Models, SAS Institute (Data Set 1.2.4).
LITTEL,RC,美利肯,GA,斯特普,WW,Wolfinger,RD(1996年),SAS系统的混合模型,SAS研究所(数据集1.2.4)。
Mendenhall, M., Wackerly, D. D. and Schaeffer, R. L. (1990), Mathematical Statistics, Wadsworth (Exercise 13.36).
门登霍尔,M.,Wackerly,DD和Schaeffer,RL(1990),数理统计,沃兹沃思(练习13.36)。
实例----------Examples----------
str(Bond)
options(contrasts = c(unordered = "contr.SAS", ordered = "contr.poly"))
if (require("lme4", quietly = TRUE, character = TRUE)) {
## compare with output 1.1 on p. 6[#比较与输出1.1页上的。 6]
print(fm1Bond <- lmer(pressure ~ Metal + (1|Ingot), Bond))
print(anova(fm1Bond))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|