0

我在 R 中遇到 Beta 回归问题。我需要使用类似于stepAIC. 我stepGAICgamlss包装中使用。我在运行此代码后收到此错误消息:

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”

任何解决方案将不胜感激。

彼得

4

1 回答 1

0

我有同样的问题,所以我写了一个可以帮助你的函数。

尝试这个:

install_github("SergioGarofalo/StepBeta") 
library(StepBeta)
modelStepAIC <- StepBeta(model, k = 2)
summary(modelStepAIC)

我希望这可能有用

塞尔吉奥

于 2022-01-28T11:44:37.990 回答