Abstract

Machine learning algorithms, especially random forests (RFs), have become an integrated part of the modern scientific methodology and represent an efficient alternative to conventional parametric algorithms. This study aimed to assess the influence of data features and overdispersion on RF regression performance. We assessed the effect of types of predictors (100, 75, 50, and 20% continuous, and 100% categorical), the number of predictors (p = 816 and 24), and the sample size (N = 50, 250, and 1250) on RF parameter settings. We also compared RF performance to that of classical generalized linear models (Poisson, negative binomial, and zero-inflated Poisson) and the linear model applied to log-transformed data. Two real datasets were analysed to demonstrate the usefulness of RF for overdispersed data modelling. Goodness-of-fit statistics such as root mean square error (RMSE) and biases were used to determine RF accuracy and validity. Results revealed that the number of variables to be randomly selected for each split, the proportion of samples to train the model, the minimal number of samples within each terminal node, and RF regression performance are not influenced by the sample size, number, and type of predictors. However, the ratio of observations to the number of predictors affects the stability of the best RF parameters. RF performs well for all types of covariates and different levels of dispersion. The magnitude of dispersion does not significantly influence RF predictive validity. In contrast, its predictive accuracy is significantly influenced by the magnitude of dispersion in the response variable, conditional on the explanatory variables. RF has performed almost as well as the models of the classical Poisson family in the presence of overdispersion. Given RF’s advantages, it is an appropriate statistical alternative for counting data.

1. Introduction

Interest in modelling count data has increased significantly over the past two decades. The Poisson distribution is still the most widely used distribution for modelling count data in many research areas, despite the violation of its well-known property that the mean and variance are equal, conditional on explanatory variables. However, the Poisson distribution is inadequate to model overdispersed count data [1, 2]. As a result, a multitude of alternative count data models have been developed to address the shortcomings of the Poisson regression in the presence of overdispersion, including quasi-Poisson [3], generalized Poisson [4], negative binomial [57], zero-inflated Poisson [8], and zero-truncated Poisson models [9].

Nevertheless, traditional count data models remain limited as they may not be capable of detecting the presence of complex nonlinear interactions between explanatory variables and outcomes [10]. In addition, traditional statistical models used to predict overdispersed data from selected predictor variables are not suitable for “small-n-large-” problems [11].

The random forest (RF) is a good machine learning approach to improving prediction accuracy and model interpretation [12, 13]. RF is a “data-driven statistical method.” It is an ensemble learning approach developed to increase classification accuracy and regression tree prediction by combining many decision trees [14]. The algorithm takes advantage of two powerful techniques: random subspace selection at each split (“classification and regression trees (CART)-split criterion”) [15] and bagging (an abbreviation of “bootstrap aggregating”) of unpruned decision tree learners [16]. The nonlinear nature of RF gives it an edge over linear algorithms [14, 17]. RF algorithms provide variable importance measures for variable selection purposes. Moreover, they involve complex high-order interaction effects and are user-friendly because they have few parameters to set and are less demanding in preprocessing [18]. Over the past 25 years, RF has been successfully applied to a wide range of prediction problems, mainly for classification tasks [1921]. RF has become an effective data analysis tool that performs well compared to many standard methods [22].

However, in a regression problem, the range of predictions that RF can make is limited by the highest and lowest values in the training dataset. When training and testing data ranges differ, such as when predicting overdispersed response variables, this behaviour becomes troublesome [23]. Overdispersion is one of the important constraints in statistical analysis and may lead a variable to appear as a significant predictor when it is not, by deflating or underestimating the standard errors of the estimates [24]. As a result, it is essential to fully understand the data’s nature. Furthermore, most of the existing machine learning methods for regression tasks are designed for continuous data, and their performance for counted data is not well known [13].

The primary motivation for this study is thus to evaluate the effectiveness of computer-based statistical approaches known as machine learning, such as RF, in the presence of overdispersed response variables. Since the performance of an algorithm depends mainly on the characteristics of datasets to be analysed (type of predictors, number of attributes in the dataset, sample size, noise, and dispersion), high performance requires the identification of the most appropriate algorithm for a given problem and dataset [25]. RFs are considered data type-specific, insensitive to unimportant and noisy predictors, and dependent on the number of informative variables [18, 19, 26].

The RF method has shown comparable or even better prediction performance than other learning methods, such as neural networks, partial least squares regression, and support vector machines [14, 19, 22]. Unfortunately, the impact of overdispersion on the RF performance for different data features has rarely been assessed [2729]. Thus, determining the impact of data features on RF parameters’ setting and accuracy is an avenue to explore as efforts are needed to improve the accuracy of RF estimates [12]. Therefore, this study aimed to assess the influence of data features on RF regression performance and compare RF regression to count data classic regressions. In addition, datasets with varying magnitudes of overdispersion from two real case studies are also analysed to examine RF performance when the response variable is overdispersed.

2. Materials and Methods

2.1. Statistical Models
2.1.1. Random Forest Technique (RF)

RF methods deal with both supervised classification and regression tasks [14]. This research was focused on regression analysis.

(i) Basic Principles. Assuming that we are given a training sample of i.i.d. -valued random variables with the same distribution as the independent prototype pair D defined by of size n satisfying the condition. The space is equipped with the standard Euclidean metric. For a given , the regression function estimate can be obtained by

Regarding this, the regression function estimate for the dataset is assumed consistent if

In RF, the final predictor is an average of M independently randomized regression trees. For a given tree randomly generated, the prediction value at the query point is denoted , where are the outputs of a randomized variable (also known as independent random variables).

In practice, the randomized variable is used to resample the training set used in successive individual trees building [18]. The finite forest estimate (combination of the M trees grown) is obtained by

In the randomForest package, the default value of M is 500. Since M may be chosen arbitrarily large (“limited only by available computing resources”), this estimate can be generalized from a modelling point of view, letting M tend to infinity by an infinite forest estimate [15], obtained by

It is noteworthy in practice that the above expectation is evaluated by Monte Carlo, i.e., by generating M (usually large) random trees and taking the average of individual outcomes. This procedure is justified by the law of large numbers [14, 30] which asserts that the almost surely conditional on is expressed as follows:

(ii) Algorithm. The whole process of the RF algorithm can be summarized as follows:

Let M be the number of trees to grow in the forest and mtry be the number of variables to select at each node. The following steps are considered:(i)We resample the training set to create new bootstrap samples.(ii)For each bootstrap sample, we create an unpruned tree that is grown until all nodes contain observations no more than the maximal terminal node size defined by the user (a prespecified parameter).(iii)At each split node, a randomly selected subset of predictors is uniformly chosen. In regression tasks for p predictors, a value equal to is utilized as the default value in the R package randomForest. Then, the best split using only these predictors is determined or returned. In addition, all observations are not used in tree construction, and a subset is picked from the whole sample . If , the algorithm runs in a bootstrap mode, whereas corresponds to subsampling (with replacement).(iv)The RF overall prediction value is the average (in regression) of the results obtained from all M given by individual trees [15].

(iii) Parameter Tuning. To date, there are limited studies focusing on RF parameter tuning [31]. According to Probst and Boulesteix [32], the most important parameters in RF methods are as follows:(i)Number of variables to possibly split in each node(ii)Minimal terminal node size(iii)Fraction of observations to sample in each tree(iv)Number of trees

2.1.2. Poisson Regression Extensions Used to Predict Count Data

The prediction performance of RF was compared with that of the Poisson model and its extensions. It is suggested that they be used for assessing count data. The following models are utilized in this investigation and are briefly described as follows:

(i) Linear Model. It is a linear function of the form:where is the vectorized form of the response variable, is a covariate matrix, is a vector of coefficients, and is a vector of normally distributed errors with 0 mean and a variance of [33].

(ii) Poisson Model (Poisson). It is a special case of the generalized linear model (GLM) with a log link function. It is the standard GLM for count data [34]. We assume that the response variable follows the Poisson distribution with the mean . Its probability mass function is written aswhere the conditional mean is obtained by with being the vector of covariates and being the vector of unknown parameters [3537].

(iii) Negative Binomial Model (Neg.Bin). In the negative binomial, a parameter of dispersion is introduced to accommodate unobserved heterogeneity in the count data. Its probability density function is written aswhere is a constant, is a function of , , is the vector of covariates, and is the vector of unknown parameters [38].

(iv) Quasi-Poisson. The generalized linear model is used to define the quasi-Poisson model. Let Y be a random variable such thatwhere () is Y’s variance, , is the dispersion parameter and , and is Y’s expectation.

(v) Zero-Inflated Poisson model (ZIP). This model is appropriate when there are zeros in excess. Its probability mass function is written as [34, 36]where is the vector of covariates, is the probability that the response value is zero, , and .

2.2. Simulation Studies
2.2.1. Effect of Dataset Characteristics on RF Algorithm Parameters’ Setting and Accuracy

Three sample sizes (, and ), three numbers of predictors (, 16, and 24), and five types of predictors (100, 75, 50, and 25% continuous, and 100% categorical) were considered. Schönbrodt and Perugini [39] stated that should approach 250 for stable estimates. Biau [18] showed that is sufficiently large, while 50 represents a small population size. Altogether, 45 data types were set. For each case, 1000 datasets were created. Three RF parameters were considered to determine the best combination, while the number of trees was maintained constant (500):(i)Number of variables to be randomly selected at each split (mtry): mtry  2, 3, …, , where the number of predictors(ii)Proportion of samples for model training (sample size) with four levels (, and )(iii)Minimal number of samples within each terminal node (node size 2, 3, 4, …, 9)

Depending on the number of predictors, the combination of different parameters under study resulted in 224, 480, and 736 different scenarios for each data type. Each scenario was run 1000 times to find optimal parameter combinations. For all datasets, the generated explanatory variables were not correlated and were not informative. The dependent variable was generated randomly from the Poisson distribution with lambda equal to one, which is denoted as . Categorical predictors were randomly generated by varying the number of levels from 2 to 8. Uncorrelated quantitative covariates were generated from a multivariate normal distribution (MVN) , whose density function in the case of n dimensions is written as

The symbol refers to the determinant of the matrix . The matrix must be positive semidefinite to assure that the most likely point is and that, as moves away from in any direction, then the probability of observing declines. The denominator in the formula for the MVN is a normalizing constant, which assures that the distribution integrates to 1.0 [40].

2.2.2. Effect of Overdispersion on RF Parameters’ Setting and Accuracy

In order to assess the effect of overdispersion on the setting and performance of RF parameters, negative binomial-distributed and quasi-Poisson-approximated variables were randomly generated. The variance-to-mean relationship of is quadratic, while the variance-to-mean relationship of is linear such aswhere , is the dispersion parameter, and . For this objective, with varying , 3, and 5. Three different samples (, and 1250) and five types of predictors as in the first simulation design were considered. Figure 1 shows the shape and the distribution of randomly generated overdispersed outcomes.

2.2.3. RF Performance Compared to Poisson Model Extensions

Negative binomial-distributed variables were generated with the linear and quadratic variance-to-mean relationships. We let the mean vary as a function of two informative covariates and different levels of the dispersion parameter . The mean of the outcome of 1000 observations was obtained according to the model , where is a collection of parameters and . In addition, three noninformative variables were added from a multivariate normal distribution (MVN) .

All datasets were divided into two subsets: training and validation. 70% of the data were randomly selected for model calibration and the remaining 30% for model validation.

Poisson regression, negative binomial, zero-inflated Poisson, and zero-inflated negative binomial were compared to the RF regression technique and linear regression applied to the log-transformed response variable , as it is considered to be one of the alternatives when dealing with overdispersion or count data [41, 42]. The analysis of variance (ANOVA) test and Tukey’s honest significant difference test (Tukey HSD) were conducted to compare the performance of methods.

2.2.4. Criteria for Methods’ Accuracy Assessment

The root mean square error and biases were computed for each model. These evaluation criteria are calculated as follows:where and are the predicted and observed values in the subunit , respectively, n is the number of samples (subunits) [43], and is the average of the predicted values [44]. The RMSE represents the overall quality of the prediction. Predictions become increasingly optimal as the RMSE approaches zero [43, 45]. All analyses were computed using R 4.0.3 software [46].

2.3. Motivating Real Datasets

We used two datasets from real case studies to examine RF performance at two magnitudes of overdispersion caused by outliers or zero inflation. The first example is tick burdens observed on two local goat breeds. Ticks were counted monthly between birth and the age of eight months on ten billy goats belonging to two local breeds [47]. The results are shown in Table 1. The dispersion statistic for this dataset is 3.050, caused by outliers.

The second example is the dataset “NMES1988”: Demand for Medical Care in the National Medical Expenditure Survey (NMES) conducted in 1987 and 1988 [48]. This dataset contains 4406 observations on 19 variables. In this example, we examined the relationship between the number of physician office visits (response variable) and health (factor indicating self-perceived health status), age in years (divided by 10), gender, married (factor indicating that the individual is married), income (family income in USD 10000), and insurance (factor indicating that the individual is covered by private insurance) as predictors. The dispersion statistic for this subset is 7.345, caused by outliers and zero inflation.

3. Results and Discussion

3.1. Results
3.1.1. Effect of Data Features on RF Regression’s Parameters’ Tuning

The effect of predictor types on RF parameter settings for a response variable following a Poisson distribution with the parameter is .

In most scenarios, as shown in Figure 2, the RF algorithm performs better with the number of variables randomly selected at each split (mtry), varying between two and four when there are many observations and a few predictors. Figure 2 shows that the number of variables to be randomly selected at each split is independent of the type of data. Nonetheless, the combination of various types of predictors causes some variability in the mtry values that yield the optimal predictive performance. When the sample size is small and the number of predictors is large , there is a considerable fluctuation in mtry values (Figure 2(g)).

Figure 3 indicates that when the sample size is large (n = 1250) and the number of predictors is small (8), the RF algorithm performs better in the majority of cases with the highest minimum number of observations in each terminal node (between seven and nine). Furthermore, when the fraction of qualitative predictors was high, even for large sample sizes and a small number of predictors, the proportion of scenarios that achieved the optimal predictive performance with high values of the minimum number of observations in each terminal node (best node size ) also increased. Small sample sizes showed a considerable variation in the number of observations in terminal nodes.

Figure 4 shows that, in most circumstances, the RF method performs better when 55 percent of the whole sample size is used, followed by 63.2 percent. However, it turns out that the variation in this parameter depends on the ratio of the sample size to the number of predictors. The greater the ratio, the better the algorithm performs with fewer observations, whereas the lower the ratio, the more observations are used.

3.1.2. Effect of Overdispersion on the RF Parameter Settings for Various Predictor Types

As shown in Table 2, the RF algorithm works similarly for all types of predictors and magnitudes of dispersion. In most cases, regardless of the number of predictors or the extent of overdispersion, the optimal performance of RF is obtained by setting the number of variables to randomly sample at each split equal to two (mainly a small number of variables between two and four). Overall, for all types of predictors and observation sizes, it is observed that dispersion does not influence RF parameters’ tuning.

According to Table 3, when predictors are categorical, for the same number of observations, the RF algorithm tends to use smaller samples to train the model as the number of predictors decreases. Thus, when eight predictors were considered, regardless of their type or level of overdispersion, the best performance was obtained in most cases using of the total number of observations. In most scenarios, this proportion is followed by . Furthermore, as the number of predictors increases, the proportion loses dominance. As a result, the likelihood of obtaining the best performance with a large proportion of samples to train the model increases.

However, when all predictors are quantitative continuous or mixed with qualitative predictors, no trend was observed for the best size of the sample to draw and the minimum size of terminal nodes in RF, regardless of the complexity of the response variable.

In most cases, the best performance of RF is obtained with a minimum terminal node size greater than five, the default value used for regression. Table 4 shows that, regardless of the degree of overdispersion of the dependent variable, the RF algorithm performs best with a minimum terminal node size greater than five. For qualitative predictors, the preponderance of the high number of observations per node decreases as the number of predictors increases. However, as the number of predictors increases, the fraction of cases, where the best performance is achieved with a large number of observations per node, decreases. Thus, it turns out that globally, irrespective of the type of predictors, for the same number of observations, the higher the number of predictors, the smaller the minimum size of the terminal nodes. However, it should be noted that the number of predictors is not always inversely proportional to the minimum size of terminal nodes. In some scenarios, the minimum size of terminal nodes does not vary with the number of predictors. In contrast, in others, the best performance is obtained with small minimum sizes of terminal nodes, even when there are few predictors. Thus, when there are a few observations and many predictors, no trend is predictable, and the parameter will depend only on the complexity of the relationship between the data F.

3.1.3. Impact of Overdispersion on the RF Predictive Performance for Different Types of Predictors

There was no difference among the types of covariates considered to be part of this simulation study. Using the best combination of parameters, RF performed similarly for all types of covariates regardless of the level of dispersion in the response variable. However, the performance of the RF for the sample size varied enormously for different levels of dispersion, whereas the values were stable for large sample sizes (in our case ). RF performance was impacted by the magnitude of overdispersion, but relatively more accurate results were obtained when the population size was large in comparison to a small population size, where the RMSE varied enormously for different levels of dispersion (Figures 5(a) and 5(b)).

3.1.4. Assessment of the RF Performance Compared to Traditional Approaches for Count Data Prediction

In this section, we analyse the performance of RF regression compared to classical log-linear, Poisson, quasi-Poisson, negative binomial, and zero-inflated Poisson models for different sample sizes and overdispersion degrees. Table 5 and Figure 5 show that linear regression applied to the log-transformed response variable has the lowest performance. However, in most scenarios, the biases and RMSE obtained using the RF approach to predict the results of the overdispersed count are not statistically different from the biases and RMSE obtained using traditional Poisson family methods. Furthermore, no statistical difference was observed when the variance-mean relationship was quadratic, with some exceptions for low overdispersion. However, for the linear variance-to-mean relationship, the mean RMSE of RF is higher than that of GLMs, i.e., less accurate with higher variability. As a result, while predicting overdispersed outcomes, the most accurate and precise method will have to be identified case by case, depending on the available data. In some situations, RF will be the best performing method, while in others, it will not. Figures 6(a) and 6(b) present RF compared to the biases of GLM family models and RMSE regression lines as a function of dispersion and indicate the 95% confidence interval (range), represented by the grey zone in which the biases and RMSE would be if the experiment were repeated. Globally, the mean of the RMSE and the biases of RF tend to increase as dispersion increases. Consequently, the slope of the regression of the RMSE in the function of dispersion and the range of RMSE values are lower for outcomes with linear variance-to-mean relationships than for those with quadratic variance-to-mean relationships.

3.1.5. Real Dataset Results

RF yielded the lowest mean of the absolute values of biases (1.51  1.16) compared to linear regression applied to the logarithmic transformation of tick burden (8.24  1.43), negative binomial (1.56  1.19), quasi-Poisson (1.52  1.17), and Poisson (1.52  1.17) regressions for the dataset with overdispersion caused by outliers (Figure 7(a)). However, the difference between the mean absolute values of biases is not significant. Quasi-Poisson and Poisson (7.72  1.32) have the lowest RMSE values, followed by the RF (7.75  1.34) and negative binomial (7.82  1.29) but are not significantly different according to the Tukey HSD test (Figures 7(a) and 7(b)).

For the NMES1988 dataset with overdispersion caused by outliers and zero inflation, quasi-Poisson, Poisson, zero-inflated Poisson, and negative binomial produced the lowest absolute value of biases (0.18  0.14), followed by RF (0.19  0.14). Furthermore, the zero-inflated Poisson model (6.56  0.39) yielded the lowest RMSE, followed by quasi-Poisson (6.57  0.39), negative binomial (6.57  0.39), and RF (6.59  0.4). As for the tick burden dataset, no statistically significant difference was observed between RF and traditional Poisson family models (Figures 7(c) and 7(d)).

3.2. Discussion
3.2.1. Impact of Data Features on RF Regression

One of the characteristics of many databases that practitioners consider is the complex relationship among data, which typically yields enormous noise. In some situations, this complexity may directly or indirectly result from variables at the hand and affect many statistical procedures. Computer-based statistical methods are more appropriate than traditional statistical models for effectively solving this complex problem and dealing with large-scale issues. However, despite an increasing interest and practical use, computer-based methods have rarely been evaluated [18]. There is a growing trend of replacing traditional statistical models with machine learning in several research areas to improve predictive accuracy. In addition, these techniques are now used to model data that do not fit into the “small-n-large-” category.

The RF method works well for all covariates (categorical, continuous, or their mixture) in regression with or without overdispersion in the response variable. No original predictor transformation is required for the predictive task when encoding categorical covariates. Furthermore, RF accuracy is not significantly affected by covariate types. Singh et al. [25] found similar results in classification, suggesting that RF performs equally well with numeric-only or text-only datasets. However, fluctuations in RF parameter settings were observed for exclusively categorical predictors when the number of observations or the relation (ratio) between the number of observations and the number of predictors was low.

Frequently, empirical studies on classification find that the default RF’s parameter values yield good prediction accuracy [19, 49].However, among all possible combinations, in most scenarios, the best RF performance was not observed with the default parameters in Breiman and Cutler’s random forests for the classification and regression package (randomForest), widely used in R software [44]. For regression tasks, the number of variables to select in each split should equal the number of predictors divided by 3. Our results support the findings of Han and Kim [50], which imply that the default mtry of cannot guarantee the highest level of accuracy in regression. Additionally, Strobl et al. [51] argued that various mtry values should be taken into account.

For all types of covariates, RF performed better when a small number of variables were selected at each split , regardless of the response variable overdispersion, while for some scenarios, was too small. RF prediction accuracy is expected to be higher for smaller values of mtry in general, according to Strobl et al. [51]. Smaller mtry values are preferred if the dataset’s features have similar relevance. If not, greater mtry values are preferred [50]. Furthermore, a small number of predictors in each split can better utilize the available information in many informative predictors with different strengths [52].

However, for a variable to have a chance to appear in a sufficient number of trees, a large number of preselected predictors are required when there are many predictor variables. Therefore, the average variable importance measure will be accurate and not just a random fluctuation based on enough trials [51]. However, Svetnik et al. [49] claimed that RF performance changes very little over a wide range of mtry values, except for extremes ( and ).

RF was relatively insensitive to changes in the minimum number of observations in each terminal node. The minimum node size was adjusted to speed up the computation for large datasets. Our findings suggest that the minimum node size behaviour is influenced by the relationship between the total sample size and the number of predictors. The best RF performance was obtained with many observations in each end node for large n and small (between seven and nine). When dealing with situations with many observations and a few variables, increasing the terminal node size with the sample size improved the convergence rate of the prediction accuracy [53]. There was no discernible pattern for small n and large . Although the minimum node size appears to have a minor impact on predictive accuracy, it is necessary to consider this parameter when tuning RF. When determining the ideal combination of the best parameters of RF, the prevalence of specific values can indicate the stability of estimates, avoiding the effect of random fluctuations. According to Lin and Jeon [53], growing large trees, that is, using small observations in each terminal node, generally results in the highest performance for “small-n-large-” situations.

We observed that sample size behaviour is also influenced by the relationship between the number of observations and predictors. When the ratio of the number of observations to the number of predictors is high, RF produces the best results with fewer observations (55 percent or 63.2 percent of the total sample size). Buja and Stuetzle [54] argued that half-sampling might be more suited because bootstrap sampling shares several theoretical traits. Wösthoff [55] claimed that the subsample size is not a critical parameter as the results of sizes 0.5 and the default value (0.632) are nearly identical. For permutation importance estimation in classification, significant predictor variables may not be recognized if the sample size is too small. The variability of the importance measure tends to increase if the subsample size is so large that the out-of-bag sample becomes very small [55].

Considering overdispersion, we realized that, for small sizes (less than 250), the best mtry value was randomly selected among possible values. In contrast, for large population sizes, this value was maintained constant (mtry = 2) for all types of covariates. According to Svetnik et al. [49], this parameter is the main RF tuning parameter. Furthermore, the sample size influenced the RF accuracy level. For small sample sizes (less than 250), the effect of overdispersion resulted in an erratic trend, challenging to interpret. In contrast, the trend was linear for large population sizes, illustrating the overdispersion effect.

Although RF parameters seemed insensitive to the degree of overdispersion of the response variable, RF accuracy was affected. Thus, despite being an essential step in RF analyses, parameter tuning did not affect the best parameter selection when the response variable was overdispersed. Some authors have recommended data transformation for RF analyses, especially population estimation. Transforming the response variable allows the RF algorithm to find good splits in data as the relationship between distance-based covariates and the population is, in most cases, more uniformly distributed [56]. Transformation methods may be applied to observed response variables before RF model fitting for higher prediction accuracy. However, O’Hara and Kotze [57] stated that we should not transform count data because, in addition to performing poorly, they can lead to impossible predictions.

3.2.2. RF Performance Compared to Poisson Model Extensions

According to Anderson et al. [33], one of the most critical decisions in the population modelling process is understanding and selecting the appropriate model structure based on the available data. RF regression is an efficient and credible alternative in prediction tasks, as reported by previous studies [12]. The results obtained in this study suggest that RF is as accurate as Poisson, zero-inflated Poisson, and negative binomial regressions when dealing with overdispersed count data. The tick burden dataset confirmed this statement. Novel methods such as RF are more efficient for predicting spatial patterns in species distribution models than more traditional linear models [58]. Furthermore, they consistently outperform more established methods. RF’s consistency and predictive performance could be an additional point to explore and reorient the debate on modelling count data. Some researchers suggest using the Poisson model and its extensions [57]. Others recommend using the linear model when the objective is to test the significance of estimates [41]. On the contrary, others think there is no best solution because it depends on the database in the presence [42]. However, these models have shown similar performance for different levels of overdispersion. Considering GLMs, RF is robust to misspecification of the relationship between the mean and variance [57]. Anderson et al. [33] claimed that traditional regression-based models may not be the most effective model, depending on the available census data (for example, presence of sampling bias, missing data, outliers, and imperfect detection). Given the predictive accuracy demonstrated by RF, its flexibility in dealing with covariates of various natures, and other recognised advantages such as the ability to deal with complex interaction structures, highly correlated variables and the measurement of variable significance, RF is an effective alternative method for predicting count outcomes [52]. RF may be a tool of capital importance for decision and policymakers working in limited data areas or with unreliable census data, especially in developing countries. Furthermore, producing accurate and reliable estimates is a problem of interest for resource allocation, public health, outbreak early detection, food security, conservation policy, environmental planning, and others [33, 56, 59].

4. Conclusion

RF has become a popular analysis tool in many application fields and will probably remain relevant in the future due to its high flexibility and many advantages. This study evaluated the impact of different characteristics of the dataset and the magnitude of overdispersion on the settings of RF parameters and predictive performance through simulated and real-life datasets. We found that the RF algorithm performs relatively well for all types of predictors. Data features do not influence the setting of RF parameters and, consequently, its predictive accuracy. However, the ratio of observations to the number of predictors influences the stability of the optimal RF parameters for a given dataset. Although the degree of overdispersion of the response variable did not significantly influence RF predictive validity, the magnitude of dispersion influenced RF predictive accuracy. The RF algorithm performed almost equally well as standard count data models such as quasi-Poisson, zero-inflated Poisson, and negative binomial models for the outcomes with linear and quadratic variance-to-mean relationships. However, for some scenarios, RF sometimes had a higher bias or RMSE, sometimes a lower bias or RMSE compared to Poisson family models. Furthermore, for the same scenario, depending on the selected subsample, a model may appear to perform better when it does not perform well overall. Thus, the best model choice should be based on data. RF is a reliable method when the assumptions for GLMs are not satisfied. Therefore, despite the sensitivity of RF to the overdispersion of the response variable, it is an efficient method for predicting count outcomes. Thereby, it is a tool of capital importance for decisions and policymakers working in limited data areas. Therefore, research should focus on decreasing the sensitivity of predictive accuracy to overdispersion.

Data Availability

The data supporting this study are from previously reported studies and datasets, which have been cited. The simulated data used to support the findings of this study are available from the corresponding author upon request.

Conflicts of Interest

The authors declare that there are no conflicts of interest regarding the publication of this study.

Acknowledgments

This work was supported by the Regional Universities Forum for Capacity Building in Agriculture through the Graduate Training Assistantship Program supported by the Carnegie Corporation in New York (Grant no. RU/2020/GTA/DRG/019), the DAAD In-Country/In-Region Scholarship Programme FSA/UAC (Grant no. 57546598, 2020), and the International Development Research Centre (IDRC) and the Swedish International Development Cooperation Agency (SIDA) through the Artificial Intelligence for Development (AI4D) Africa Programme, managed by the Africa Center for Technology Studies (ACTS) (Grant no. ACTS/AI4D_2022/109651/006).