20.1 Decision Trees Setup
20180603 Packages used in this chapter include C50 (Kuhn and Quinlan 2025), RWeka (Hornik 2026), party (Hothorn et al. 2026), partykit (Hothorn and Zeileis 2024), rpart (Therneau and Atkinson 2025), rpart.plot (Milborrow 2026), and rattle (G. Williams 2026).
Packages are loaded into the currently running R session from your
local library directories on disk. Missing packages can be installed
using utils::install.packages() within R. On Ubuntu, for
example, R packages can also be installed using $ wajig install r-cran-<pkgname>.
# Load required packages from local library into the R session.
library(C50) # Original C5.0 implementation.
library(RWeka) # Weka decision tree J48.
library(party) # Conditional decision trees ctree().
library(partykit) # Convert rpart object to BinaryTree
library(rattle) # GUI for building trees and fancy tree plot.
library(rpart) # Popular decision tree algorithm.
library(rpart.plot) # Enhanced tree plots.The rattle::weatherAUS dataset is loaded into the template
variable ds and further template variables are setup as
introduced by Graham J. Williams (2017). See
Chapter 8 for details.
dsname <- "weatherAUS"
ds <- get(dsname)
nobs <- nrow(ds)
vnames <- names(ds)
ds %<>% clean_names(numerals="right")
names(vnames) <- names(ds)
vars <- names(ds)
target <- "rain_tomorrow"
vars <- c(target, vars) %>% unique() %>% rev()It is always useful to remind ourselves of the dataset with a random sample:
## # A tibble: 275,410 × 7
## date location wind_gust_dir sunshine wind_gust_speed evaporation
## <date> <chr> <ord> <dbl> <dbl> <dbl>
## 1 2015-12-18 Katherine W NA 46 4.6
## 2 2021-06-09 Hobart SSW NA 57 0.8
## 3 2020-09-11 Watsonia NNW 6.5 43 5.2
## 4 2017-12-15 Newcastle <NA> NA NA NA
....
References
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