Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 SAS 中使用 PROC LOGISTIC 或 PROC GENMOD 运行序数逻辑回归,我在编程变量选择步骤时遇到困难,这里是变量选择方法:
一次向该模型添加一个变量,跟踪该单个预测变量的 AIC 分数,然后通过添加另一个变量继续下一阶段,跟踪 AIC 分数,选择具有最低 AIC 的模型,等等。
我不知道如何编写循环来运行此选择过程,以及如何获得每个步骤的 AIC 分数(输出选项?)?
非常感谢!
您所需要的只是您的陈述中的一个selection=stepwise选项。model
selection=stepwise
model
请参考:Stepwise Logistic Regression和 Ordinal Regression