bliss(SMPracticals)
bliss()所属R语言包:SMPracticals
Bliss data on deaths of flour beetles
面粉甲虫死亡的极乐数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These are the number of adult flour beetles which died following a
这些都是一些成人面粉甲虫死亡后
用法----------Usage----------
data(bliss)
格式----------Format----------
A data frame with 8 observations on the following 3 variables.
一个数据框有8下面的3个变量的观察。
dose concentration of carbon disulphide(mg. per litre)
二硫化碳剂量浓度(毫克每升)
m Numbers of beetles exposed
m个甲虫曝光
r Numbers of beetles dying
ŕ甲虫死亡的数字
源----------Source----------
Bliss, C. I. (1935).The calculation of the dosage-mortality curve.
极乐,CI(1935年)。的剂量 - 死亡率曲线的计算。
实例----------Examples----------
data(bliss)
attach(bliss)
plot(log(dose),r/m,ylim=c(0,1),ylab="Proportion dead")
fit <- glm(cbind(r,m-r)~log(dose),binomial)
summary(fit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|