cloth(SMPracticals)
cloth()所属R语言包:SMPracticals
Numbers of Flaws in Lengths of Cloth
布的长度中的缺陷数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The data comprise lengths of cloth samples and the numbers of flaws found in them.
数据包括布料样品的长度和在他们发现的缺陷的数目。
用法----------Usage----------
data(cloth)
格式----------Format----------
A data frame with 32 observations on the following 2 variables.
32个观察以下2个变量的数据框。
x The length of the roll of cloth.
x的一卷布的长度。
y The number of flaws found in the roll.
y的辊子中发现的缺陷数。
源----------Source----------
Bissell, A. F. (1972) A negative binomial model with varying element size.
比斯尔,AF(1972)负二项式模型与不同元素的大小。
参考文献----------References----------
Page 515.
实例----------Examples----------
data(cloth)
attach(cloth)
plot(x,y)
# Comparison of Poisson and quasilikelihood fits[泊松分布和quasilikelihood比较适合]
summary(glm(y~x-1,family=poisson(identity)))
summary(glm(y~x-1,family=quasipoisson(identity)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|