我在R中遇到Beta回归问题。我需要使用类似于stepAIC
的过程来选择模型。我正在使用stepGAIC
包中的gamlss
。我收到此错误消息afetr运行此代码:
model <- betareg(proportion_of_completed_surveys ~ questions + readibility_lexile_survey_questions_expl, data = conference_surveys)
stepGAIC.CH(model,direction="backward", additive=TRUE)
Error in match.arg(model) : 'arg' should be one of “mean”, “precision”
非常感谢任何解决方案。
彼得