"Newbie decision tree help needed"

cortbcortb Member Posts: 1 Contributor I
edited May 2019 in Help
Total newbie here. Have been having extreme difficulty creating a decision tree using the following fields in an Excel file: bought price,lender,state,employment,pay period,monthly income,requested amt,employed months.
I want to make the Label column 'bought price' but then it complains about not being able to do a split test with numerical. Perhaps I'm going about this model the wrong way? Basically I want to find the relationships/correlations as it pertains to 'bought price' and the other variables. Any help would be sincerely appreciated.

-CB
Tagged:

Answers

  • el_chiefel_chief Member Posts: 63 Contributor II
    what you are trying to do is predict a real number. this is called regression.

    while decision trees can sorta fake regression, they are really meant as classifiers. Classification means predicting a (small number of) whole numbers or classes.

    i would recommend trying Nearest Neighbors (k-NN) or linear regression

Sign In or Register to comment.