The regression tree created using the code below has boxplots for all of the terminal nodes. The boxplots shows the median, IQR and outliers, which is great.
plot(as.party(tree), terminal_panel = node_boxplot)
But how do I identify the outliers in my boxplots? I figured that since the boxplots were already created it should be relatively easy to pull out the outliers but the information doesn't seem to be stored in tree. I know I can follow the paths of my tree to identify the outliers in my dataset but was wondering if there's a quicker way to do this.