0
私は、次のRPART持っている:私は、各分割ノードとその値を取得し、次の順序でそれらを書きたいRのrpart(CART)決定木のプロパティを取得するには?
library("partykit")
library("rpart")
res = rpart(Species ~., data = iris)
pres <- as.party(res)
> pres
Model formula:
Species ~ Sepal.Length + Sepal.Width + Petal.Length + Petal.Width
Fitted party:
[1] root
| [2] Petal.Length < 2.45: setosa (n = 50, err = 0.0%)
| [3] Petal.Length >= 2.45
| | [4] Petal.Width < 1.75: versicolor (n = 54, err = 9.3%)
| | [5] Petal.Width >= 1.75: virginica (n = 46, err = 2.2%)
Number of inner nodes: 2
Number of terminal nodes: 3
を:
各レベルは、その高いレベルから分離されている{Petal.Length 2.45 {Petal.Width 1.75} }
{ J48 hereの場合と非常によく似ています。