我已经使用rpart
R 中的包构建了几个回归树模型,我需要将它们迁移到另一种语言,例如 Perl。
predict 函数在 R 中运行良好,但是有没有办法在每个节点上打印出加权公式之类的东西?
我已经使用rpart
R 中的包构建了几个回归树模型,我需要将它们迁移到另一种语言,例如 Perl。
predict 函数在 R 中运行良好,但是有没有办法在每个节点上打印出加权公式之类的东西?
I believe what you are trying to do can be done using a little hack of the Rattle package/GUI. If you install Rattle then from the command line use the asRules()
function on your rpart fit object and you will get back a human readable rules set. I have used these rules to quickly convert to SQL or other languages in seconds. I hope this helps.