即使是最简单的glm函数,也会出现“未使用的参数”错误

时间:2019-09-22 02:55:00

标签: r

我的代码是

counts <- c(18,17,15,20,10,20,25,13,12)
outcome <- gl(3,1,9)
treatment <- gl(3,3)
data.frame(treatment, outcome, counts)
glm.D93 <- glm(counts ~ outcome + treatment, family = poisson())

但是,当我跑步时,它显示:

Error in list(counts, outcome, treatment) : unused argument (treatment)

似乎每个“ glm”功能在我的R中都不起作用

0 个答案:

没有答案