Abstract

Purpose. The uncertainty in supply and the short shelf life of blood products have led to a substantial outdating of the collected donor blood. On the other hand, hospitals and blood centers experience severe blood shortage due to the very limited donor population. Therefore, the necessity to forecast the blood supply to minimize outdating as well as shortage is obvious. This study aims to efficiently forecast the supply of blood components at blood centers. Methods. Two different types of forecasting techniques, time series and machine learning algorithms, are developed and the best performing method for the given case study is determined. Under the time series, we consider the Autoregressive (AUTOREG), Autoregressive Moving Average (ARMA), Autoregressive Integrated Moving Average (ARIMA), Seasonal ARIMA, Seasonal Exponential Smoothing Method (ESM), and Holt-Winters models. Artificial neural network (ANN) and multiple regression are considered under the machine learning algorithms. Results. We leverage five years worth of historical blood supply data from the Taiwan Blood Services Foundation (TBSF) to conduct our study. On comparing the different techniques, we found that time series forecasting methods yield better results than machine learning algorithms. More specifically, the least value of the error measures is observed in seasonal ESM and ARIMA models. Conclusions. The models developed can act as a decision support system to administrators and pathologists at blood banks, blood donation centers, and hospitals to determine their inventory policy based on the estimated future blood supply. The forecasting models developed in this study can help healthcare managers to manage blood inventory control more efficiently, thus reducing blood shortage and blood wastage.

1. Introduction

Blood performs several important functions in the human body such as transporting oxygen, carrying supplements to our cells, disposing ammonia, carbon dioxide, and other waste items. Four of the most critical elements are the red blood cells (RBC), white blood cells (WBC), plasma, and platelets [1]. The American Red Cross reported that over 35,000 RBC units, 10,000 plasma units, and 7,000 platelet units are required day-to-day within the US [2]. Due to the short shelf life of blood components, hospitals and blood centers are faced with the challenge of maintaining appropriate inventory levels to avoid outdating and shortage.

Managing blood supply and demand is the core part of the healthcare supply chain system as blood plays a very crucial role in saving human lives. Blood supply forecasting is essential for making supply chain decisions, such as donor drive scheduling, vehicle routing policies, and inventory management, at blood centers and hospitals. Accurate forecasts of the timing and amount of future blood requests have been considered as the key inputs to donor recruitment decision making and inventory control. It is important to gather data for several years to forecast monthly demand and to recognize seasonality in demand [36]. Lestari et al. [7] indicated that the forecasting can predict the data trend observed and future demand for blood components.

2. Literature Review

Several studies have leveraged time series forecasting techniques for predicting the blood demand at hospitals and blood centers. For instance, Pereira [8] investigated and evaluated the autoregressive integrated moving average (ARIMA) model and Holt-Winters exponential smoothing model to predict monthly demand for red blood cell transfusions at a tertiary care. While these methods focused on using time series forecast, Bosnes et al. [9] used the statistical regression technique for the forecast of blood donor arrivals at the blood bank of Oslo and found that the most important factors among 18 explanatory variables were: donor age, time from making an appointment to arriving at the drive, contact methods used, number of prior donations, and donor no-show rate. Fortsch and Khapalova [10] introduced numerous practical methods to predict future demand of blood. Several forecasting models, including the naïve, exponential smoothing, moving average, and time series decomposition, were tested using the daily demand data from a blood center that were obtained for January 2006 to December 2012. They also compared the performance of these methods with an autoregressive moving average (ARMA) model. The results revealed that the ARMA forecasting model performed better for eight out of nine time series model settings. Similarly, Khaldi et al. [11] explored the capabilities of employing machine learning algorithms such as the artificial neural network (ANN) model to predict future demand for blood.

3. Materials and Methods

As discussed earlier, the study aims to develop effective forecasting methods to predict the supply of RBCs using two different techniques: time series forecasting methods and machine learning algorithms.

3.1. Time Series Forecasting

This section discusses the seven time series forecasting methods used in this study.

3.1.1. Autoregressive (AUTOREG) Model [12, 13]

The AUTOREG procedure estimates and forecasts linear regression models for time series data when the errors are autocorrelated. The autoregressive model regresses the value of the series at time on the values during the time periods The mathematical formula is expressed as follows:where are the linear regression coefficients, is the forecasted value at time and is the random error variable and is generally assumed to have a normal distribution with mean 0 and variance (i.e., normal ).

3.1.2. Autoregressive Moving Average (ARMA) Models [1214]

ARMA model is one of the basic tools in time series modeling. Suppose the time series is a stationary stochastic process time series, the expression ARMA (p, q) represents the model with autoregressive order of and moving-average order of q. This model is a combination of the AR (p) and MA (q) models, where AR (p) is written as and MA (q) is written as .

As in the AUTOREG model, is the observation value at time . The ARMA (p, q) process is generally written as follows:where a, b, and c are constants, is the random error variable and is generally assumed to have a normal distribution with mean 0 and variance ; are the autoregressive coefficients to be estimated, and are the moving average coefficients to be estimated.

3.1.3. Autoregressive Integrated Moving Average (ARIMA) Model [1214]

The ARIMA (autoregressive integrated moving average) approach was made popular by Box–Jenkins models [11]. The ARIMA procedure is functioning as a linear combination of its current values, past values, past errors, and past values of other time series (predictor time series) to predict a future response value in a time series.

With time series nonstationary behavior, the above ARMA () model can be extended and written using difference which is defined as: , where is the index of time, is time series at time , and is the backward shift operator, which means that has the effect of shifting the data back one period (i.e., ).

3.1.4. Seasonal ARIMA Model [12, 13, 15, 16]

Seasonal ARIMA model is written with the general expression ARIMA . The symbol is the order of the nonseasonal autoregressive component, is the order of the differencing, is the order of the nonseasonal moving-average process, is the order of the seasonal autoregressive part, is the order of the seasonal differencing, is the order of the seasonal moving-average process, and is the duration of the seasonal cycle.

Let be a dependent time series at time , then the mathematical formula for the seasonal ARIMA model is expressed as follows:where is the constant mean, is the seasonal backward shift operator, is the seasonal autoregressive component, and is the seasonal moving-average component.

3.1.5. Seasonal Exponential Smoothing Model [12, 13, 15, 16]

In the seasonal exponential smoothing method (ESM), the equation of forecast value at time () is given by

The smoothing equations are as follows:where is given observation at time , and and are the level and seasonal smoothing parameters, respectively, is the estimated level component at time , is the estimated seasonal component at time , and is the periods after which the seasonal cycle repeats itself.

3.1.6. Multiplicative Holt-Winters Model [12, 13, 15, 16]

The Holt-Winters model, also known as the triple exponential smoothing, applies three types of exponential smoothing to the time series—value, trend, and seasonality. The model equation for the Holt-Winters method can be either additive or multiplicative model. In this section, we present the multiplicative Holt-Winters model, whereas Section 3.1.7 presents the additive model.

The mathematical formula relevant to a time series with a trend and constant seasonal component using the Holt-Winters additive technique has the forecast at time () given by following equation:

The smoothing equations are given using the following equations: where is given observation at time and are the level, trend, and seasonal corresponding constants, respectively, is the estimated level at time , is the estimated trend at time , is the seasonality index at time , and is the periods after which the seasonal cycle repeats itself.

3.1.7. Additive Holt-Winters Model [12, 13, 15, 16]

In this section, we present the additive Holt-Winters Model.

For the additive model, the forecasted supply estimate for time is given by the following equation:

The estimates of level, trend, and seasonal factors for additive model equations are given using the following equations:

3.2. Machine Learning Algorithms

Machine learning is a technology exploring the algorithms to analyze a set of data, learn from the insights gathered, and make predictions on data [17]. For the blood supply forecasting, we leverage the two most widely used machine-learning techniques, artificial neural network and regression.

3.2.1. Artificial Neural Networks (ANN)

ANN is a reinforcement learning method that is an adaptation of biological neural network. The network consists of several nodes that are distributed across numerous layers, and each layer is connected to its previous and subsequent layers within the network [17]. These interconnected elements work closely to process information that they receive from the nodes of the previous layers and transfer them to the next layer based on the sigmoid function. They are particularly useful for modeling complex relationships in high-dimensional data or where the relationship between the input and output variables is not easy to understand [17].

3.2.2. Multiple Regression

Multiple regression is another class of problem in machine learning that is trying to predict a continuous value of a variable instead of a class unlike in classification problem [17]. Linear regression with ordinary least square is one of the classic machine learning algorithms in this domain. The mathematical formula for the regression model is represented as follows:where is the response variable, is an independent variable, is the intercept, is the slope of the coefficient (both and are unknown coefficients to be estimated by the model), and is the error variable.

3.3. Evaluation of the Different Methods

We use four different measures of forecast errors for evaluating the model performance and the accuracy of the methods; they are MAE, MSE, BIAS, and MAPE [12, 15, 18].

Assume are actual data and are forecasted data, and then the values of forecast errors, , are given by .(a)Mean absolute error (MAE): it measures the average significance of the forecast errors, where all individual errors have equal weights:(b)Mean squared error (MSE): it also measures the significance of the forecast errors, and larger errors get penalized more due to squaring:(c)BIAS: this is an indication of whether the forecast is overestimating or underestimating the actual supply over the forecast horizon:(d)Mean absolute percentage error (MAPE): it measures the relative significance of forecasting errors in percentage terms:

4. Results

4.1. Data Collection

The historical supply data for five years from 2013 to 2017 are first gathered from the health records. The summary statistics are given in Table 1.

From Table 1, it is observed that the average blood supplies of the weekdays for each year are steady. Also, we can see that Monday supply is very high, Thursday and Friday supplies are quite high, Tuesday and Wednesday supplies are moderate, and Saturday and Sunday supplies are significantly lower.

4.2. Time Series Forecasting Results

After running the seven different time series models discussed in Section 3.1 and obtaining the forecasts, we evaluate them using the error measures given in Section 3.3, and the results are presented in Table 2. It is clear that Seasonal ARIMA Model, Seasonal Exponential Smoothing Method, and Multiplicative Holt-Winters Model yield minimal error measures. Hence, we conclude that, under the time series methods, these three models are best forecasting the blood supply for the case study data under consideration.

4.3. Machine Learning Algorithm Results

The performance of the machine learning algorithms is compared in Table 3. For this particular dataset, results show that regression is a better predictor of the blood supply, nevertheless, the power of the results using regression is quite low (R2 = 63.71%).

Therefore, regression is used to predict the supply for the first week of January 2018 as shown in Table 4. A summary of the results obtained under the time series method and regression is given in Table 4.

Clearly from the results, we can infer that there is not a single method that predicts the supply accurately, and hence we recommend using the average value of the forecasts obtained under these four methods for estimating the future supply [15, 1921].

5. Discussion

This study focusses on predicting the supply of red blood cells for Taiwan Blood Services Foundation (TBSF) [22], a nongovernmental and nonprofit organization. So far, more than seven million citizens have donated blood in Taiwan through this foundation (which accounts for over 25% of the total population of Taiwan) [23]. Currently, blood centers at TBSF do not have a proper blood forecasting system, and some blood centers face blood shortage problems as a result to lack of accurate forecasting of blood supply. This paper focusses on developing a blood supply forecasting decision support tool for TBSF using time series and machine learning algorithms. The accurate forecasting models will enable TSBF to make good blood supply chain management planning decisions, such as when to collect blood from donors, how much units to collect, proper assignment of the workforce for collecting blood in donor drives, and blood component testing process. Upon accurately forecasting the future supply using the methods discussed in this study, inventory models can then be developed to make decisions on the number of units to order and time between orders.

There are some limitations on forecasting methods. Accuracy of forecasting could be affected by various factors. If there are some unknown variable(s) that could cause some of the fluctuations in the data, then it will be more difficult to forecast unless there are known explanatory variable(s) accounting for the variations. Blood supply forecasting is vital for blood supply chain decisions, and they have to be updated as more reliable information becomes available. Hence, after appropriate forecasting methods are selected, it is important to continuously monitor the forecast accuracy.

Data Availability

The data used to support the findings of this study have not been made available because they are confidential to the case study blood center and hospitals.

Conflicts of Interest

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

Acknowledgments

We are grateful to Kuan-Tsou (Johnny) Lin, Director of Department of Operation, and Ming Chang Lin, Director of Hsin Chu Blood Center at the TBSF, for providing us with five years of daily blood supply data. We would also like to show our gratitude to Sabrina Lei Li, Director of Department of Public Relations, who provides important insight and expertise that greatly assisted the research. The first author is grateful to the US Department of Education for funding his PhD study through the Graduate Assistance in Areas of National Need (GAANN) fellowship.