Visualising FFTs with FFTrees

Nathaniel Phillips

2022-08-31

Visualizing FFTrees

The main function FFTrees() creates fast-and-frugal trees (FFTs) as R objects of the type FFTrees. We can visualize an FFTrees object x in two main ways:

  1. by visualizing cue accuracies with plot(x, what = 'cues').

  2. by visualizing individual trees and performance statistics with plot(x).

In the following, we illustrate both ways by creating FFTs based on the titanic data (included in the FFTrees package).

The Titanic data

The titanic dataset contains basic survival statistics of Titanic passengers. For each passenger, we know in which class s/he traveled, as well as binary categories specifying age, sex, and survival information. To get a first impression, we inspect a random sample of cases:

set.seed(12)  # reproducible randomness
rcases <- sort(sample(1:nrow(titanic), 10))

# Sample of data:
knitr::kable(titanic[rcases, ], caption = "A sample of 10 observations in the `titanic` data.")
A sample of 10 observations in the titanic data.
class age sex survived
82 first adult male FALSE
91 first adult male FALSE
336 second adult male TRUE
346 second adult male FALSE
450 second adult male FALSE
546 second adult female TRUE
1093 third adult female TRUE
1160 third adult female FALSE
1271 third child male FALSE
1500 crew adult male TRUE

Our current goal is to fit FFTs to this dataset. This essentially asks:

First, let’s create an FFTrees object (called titanic.fft) from the titanic dataset:

# Create FFTs for the titanic data:
titanic.fft <- FFTrees(formula = survived ~.,
                       data = titanic, 
                       main = "Titanic",
                       decision.labels = c("Died", "Survived"))       

Note that we used the entire titanic data (i.e., all 2201 cases) to train titanic.fft, rather than specifying train.p to set aside some proportion of it or specifying a dedicated data.test set for predictive purposes. This implies that our present goal is to fit FFTs to the historic data, rather than on create and use FFTs to predict new cases.

Visualising cue accuracies

We can visualize individual cue accuracies (specifically their sensitivities and specificities) by including the what = 'cues' argument within the plot() function. Let’s apply the function to the titanic.fft object to see how accurate each of the cues were on their own in predicting survival:

plot(titanic.fft, what = 'cues')
**Figure 1**: Cue accuracies of FFTs predicting survival in the `titanic` dataset.

Figure 1: Cue accuracies of FFTs predicting survival in the titanic dataset.

Given the axes of this plot, good performing cues should be near the top left corner of the graph (i.e., exhibit both a low false alarm rate and a high hit rate). For the titanic data, this implies that none of the cues predicts very well on its own. The best individual cue appears to be sex (indicated as 1), followed by class (2). By contrast, age (3) seems a pretty poor cue for predicting survival on its own (despite its specificity of 97%).

Inspecting cue accuracies can provide valuable information for constructing FFTs. While they provide lower bounds on the performance of trees (as combining cues is only worthwhile when this yields a benefit), even poor individual cues can shine in combination with other predictors.

Visualizing FFTs and their performance

To visualize the tree from an FFTrees object, use plot(). Let’s plot one of the trees (Tree #1, i.e., the best one, given our current goal):

plot(titanic.fft, tree = 1)
**Figure 2**: Plotting the best FFT of an `FFTrees` object.

Figure 2: Plotting the best FFT of an FFTrees object.

The resulting figure contains a lot of information in three distinct panels. Here is a summary of their contents:

  1. Basic dataset information: The top row of the plot shows basic information on the current dataset: Its population size (N) and the baseline frequencies of the two categories of the criterion variable.

  2. FFT and classification performance: The middle row shows the tree (in the center) as well as how many cases (here: persons) were classified at each level in the tree (on either side). For example, the current tree (Tree #1 of 4) can be understood as:

    • If a person is female, decide that they survived.
    • Otherwise, if a person is neither in first nor in second class, decide that they died.
    • Finally, if the person is a child, predict they survived, otherwise decide that they died.
  3. Accuracy and performance information: The bottom row shows general performance statistics of the FFT:
    As our models in titanic.fft were trained on the entire titanic dataset, we fitted FFTs to its 2201 cases, rather than setting aside some data for predictive purposes. The panel label reflects this important distinction:

The feedback of the bottom panel is structured into three subpanels:

- The classification table (on the left) shows the relationship between the true criterion states (as columns) and predicted decisions (as rows). The abbreviations _hi_ (hits) and _cr_ (Correct rejections) denote correct decisions; _mi_ (misses) and _fa_ (false-alarms) denote incorrect decisions.

- A range of vertical levels (in the middle) show the tree's cumulative performance in terms of two frugality measures (`mcu` and `pci`) and various accuracy measures (sensitivity, specificity, accuracy, and balanced accuracy (see [Accuracy statistics](FFTrees_accuracy_statistics.html) for details). 

- Finally, the plot (on the right) shows an ROC\ curve comparing the performance of all trees in the `FFTrees` object. 
Additionally, the performance of logistic regression (blue) and CART (red) are shown. 
The tree plotted in the middle panel is highlighted in a solid green color (i.e., Figure\ 2 shows Tree\ #1). 

Additional arguments

Specifying additional arguments of plot() changes what is being displayed:

# Show only the best training FFT:
plot(titanic.fft, stats = FALSE)
**Figure 3**: A plain FFT plot (without statistics).

Figure 3: A plain FFT plot (without statistics).

# Hide some elements of the FFT plot: 
plot(titanic.fft,
     show.icons = FALSE,     # hide icons
     show.iconguide = FALSE, # hide icon guide
     show.header = FALSE     # hide header
     )
**Figure 4**: Plotting selected elements.

Figure 4: Plotting selected elements.

As the data and tree arguments can both refer to datasets used for training or fitting (i.e., the “train” or “test” sets), they should be specified consistently. For instance, the following command would visualize the best training tree in titanic.fft:

plot(titanic.fft, tree = "best.train")

as data = "train" by default. However, the following analog expression would fail:

plot(titanic.fft, tree = "best.test")

for two distinct reasons:

  1. When data remains unspecified, its default is data = "train". Thus, asking for tree = "best.test" would require switching to data = "test".

  2. More crucially, titanic.fft was created without any test data. Hence, asking for the best test tree does not make sense — which is why plot() will show the best training tree (with a warning).

Plotting performance for new data

Shifting our emphasis from fitting to prediction, we primarily need to specify a test dataset that was not used to train the FFTrees object. When specifying a new dataset (e.g.; data = test.data), the function will automatically apply the tree to the new data and compute corresponding performance statistics (using the predict.FFTrees() function).

For example, we can repeat the previous analysis, but now let’s create separate training and test datasets by including the train.p = .5 argument. This will split the dataset into a 50% training set, and a distinct 50% testing set. (Alternatively, we could specify a dedicated test data set by using the data.test argument.)

set.seed(100)  # for replicability of the training/test split
titanic.pred.fft <- FFTrees(formula = survived ~.,
                            data = titanic,
                            train.p = .50,  # use 50% to train, 50% to test
                            main = "Titanic", 
                            decision.labels = c("Died", "Survived")
                            )

Here is the best training tree applied to the training data:

plot(titanic.pred.fft, tree = 1)
**Figure 5**: Plotting the best FFT on _training_ data.

Figure 5: Plotting the best FFT on training data.

Tree #1 is the best training tree (and could also be visualized by plot(titanic.pred.fft, tree = "best.train")). This tree has a high specificity of 92%, but a much lower sensitivity of just 53%. The overall accuracy of the tree’s classifications is at 79%, which exceeds the baseline, but is far from perfect. However, as we can see in the ROC table, a logistic regression (LR) would not perform much better, and CART performed even worse than Tree #1.

Now let’s inspect the performance of the same tree on the test data:

plot(titanic.pred.fft, data = "test", tree = 1)
**Figure 6**: Plotting the best FFT on _test_ data.

Figure 6: Plotting the best FFT on test data.

We could have shown the same tree by asking for plot(titanic.pred.fft, tree = "best.test", data = "test"). Note that the label of the bottom panel has now switched from “Accuracy (Training)” to “Accuracy (Testing)”. Both the sensitivity and specificity values have decreased somewhat, which is typical when using a model (fitted on training data) for predicting new (test) data.

Let’s visualize the prediction performance of Tree #2, the most liberal tree (i.e., with the highest sensitivity):

plot(titanic.pred.fft, data = "test", tree = 2)
**Figure 7**: Plotting Tree #2.

Figure 7: Plotting Tree #2.

This alternative tree has a better sensitivity (of 63%), but its overall accuracy decreased to about baseline level (of 67%).

Whereas comparing training with test performance illustrates the trade-offs between mere fitting and genuine predictive modeling, comparing the performance details of various FFTs illustrates the typical trade-offs that any model for solving binary classification problems engages in. Importantly, both types of trade-offs are rendered transparent when using FFTrees.

Vignettes

Here is a complete list of the vignettes available in the FFTrees package:

Vignette Description
Main guide An overview of the FFTrees package
1 Heart Disease Tutorial An example of using FFTrees() to model heart disease diagnosis
2 Accuracy statistics Definitions of accuracy statistics used throughout the package
3 Creating FFTs with FFTrees() Details on the main function FFTrees()
4 Specifying FFTs directly How to directly create FFTs with my.tree without using the built-in algorithms
5 Visualizing FFTs with plot() Plotting FFTrees objects, from full trees to icon arrays
6 Examples of FFTs Examples of FFTs from different datasets contained in the package