如何在PHP中将决策树转换为标尺或向量

时间:2018-04-13 06:48:01

标签: php

我有这个:

windy = TRUE
| humidity = high : no 
| humidity = normal
| | outlook = sunny : yes 
| | outlook = overcast : yes 
| | outlook = rainy : no
windy = FALSE
| outlook = sunny : no  
| outlook = overcast : yes  
| outlook = rainy : yes

我想要这个:

windy   humidity    outlook    play
--------------------------------------
true    higth       x           no
true    normal      sunny       yes
true    normal      overcast    yes
true    normal      rainy       no
false   x           sunny       no
false   x           overcast    yes
false   x           rainy       yes

我正在寻找一种方法将weka结果(决策树)转换为规则或矢量形式

问候

0 个答案:

没有答案