{Solved}Strange problem with Decision trees
Hi, i have a really strange problem with decision tree models on my data
my data range is: Reston (7), Zaire (7), Sudan (4), Bundibugyo (2), Cote d'Ivoire (1)
but when i run decision tree model i get strange results
for example i got a model which was correct in image but when i switched into text perspective i see this
Tree
CountofAlaGly > 5: Zaire {Reston=0, Zaire=6, Sudan=0, Bundibugyo=0, Cote d'Ivoire=0}
CountofAlaGly = 5
| CountofIleAsn > 2.500: Cote d'Ivoire {Reston=0, Zaire=0, Sudan=0, Bundibugyo=0, Cote d'Ivoire=2}
| CountofIleAsn = 2.500
| | CountofIleAsn > 1.500: Sudan {Reston=0, Zaire=0, Sudan=2, Bundibugyo=0, Cote d'Ivoire=0}
| | CountofIleAsn = 1.500
| | | CountofLeuThr > 4.500: Reston {Reston=8, Zaire=0, Sudan=0, Bundibugyo=0, Cote d'Ivoire=0}
| | | CountofLeuThr = 4.500: Bundibugyo {Reston=0, Zaire=0, Sudan=0, Bundibugyo=3, Cote d'Ivoire=0}
its so strange....as you can see model has mixed up... while i have 7 Zaire model says i just have six and while i have just one Cote d'Ivoire model is presenting two Cote d'Ivoire and so on
can some one explain what should i do?