20.16 Build a Decision Tree Model
As seen from Rattle’s Log tab the decision tree model is built using rpart::rpart(). Once the different template variables have been defined as in Section @ref(dtrees:sec:model_setup) (form, ds, tr, and vars) we can use this template call to build the model:
This is essentially the same as the command used by Rattle except that some parameter settings are removed. These will be explored later.
In the above call to rpart::rpart() we have named each of the arguments. If we have a look at the structure of rpart::rpart() we see that the arguments are in their expected order, and hence the use of the argument names, and , is optional.
## function (formula, data, weights, subset, na.action=na.rpart, method,
## model=FALSE, x=FALSE, y=TRUE, parms, control, cost, ...)
Whilst the argument names are optional they can assist in reading the code, and so the use of argument names in function calls is encouraged.
A textual presentation of the model is concise and informative, once we learn how to read it. Note this tree is different to the previous one we have seen, since we are using a much larger (the full) weather dataset which includes multiple years of daily observations from many different weather stations across Australia.
## n= 145946
##
## node), split, n, loss, yval, (yprob)
## * denotes terminal node
##
## 1) root 145946 31041 No (0.7873117 0.2126883)
## 2) humidity_3pm< 71.5 122288 16862 No (0.8621124 0.1378876) *
## 3) humidity_3pm>=71.5 23658 9479 Yes (0.4006679 0.5993321)
## 6) humidity_3pm< 82.5 12920 5893 No (0.5438854 0.4561146)
## 12) rain_today=No 7506 2647 No (0.6473488 0.3526512) *
## 13) rain_today=Yes 5414 2168 Yes (0.4004433 0.5995567) *
## 7) humidity_3pm>=82.5 10738 2452 Yes (0.2283479 0.7716521) *
Refer to Section @ref(dtrees:sec:explain_read_tree) for an explanation of the format of the textual presentation of the decision tree.
Your donation will support ongoing availability and give you access to the PDF version of this book. Desktop Survival Guides include Data Science, GNU/Linux, and MLHub. Books available on Amazon include Data Mining with Rattle and Essentials of Data Science. Popular open source software includes rattle, wajig, and mlhub. Hosted by Togaware, a pioneer of free and open source software since 1984. Copyright © 1995-2022 Graham.Williams@togaware.com Creative Commons Attribution-ShareAlike 4.0