Forecasting COVID-19 per Regions Using ARIMA Models and Polynomial Functions

Applied Soft Computing, Volume 96 (2020), Article 106610

Introduction

The COVID-19 pandemic, caused by the novel coronavirus, has had a worldwide impact. Predicting its spread is critical for health resource planning, policy-making, and public safety measures. This paper introduces a two-stage approach for COVID-19 forecasting, combining Auto-Regressive Integrated Moving Average (ARIMA) models and polynomial functions to handle the complexity of different geographic regions.

The core motivation is that countries within the same geographic region (e.g., North America, South America, Africa, etc.) might share certain quantifiable variables, such as climate or population distributions, and non-quantifiable factors such as cultural behavior and social patterns. By grouping countries by region, the proposed system more accurately captures underlying trends.

Databases

The primary source for COVID-19 infection data is ‘‘Our World in Data’’, which aggregates statistics from institutions such as the ECDC, WHO, and Johns Hopkins University. Data used in this paper include:

The time series for each country begins on the day its first COVID-19 case was detected and runs up to a cutoff date (April 25, in the paper’s analysis). A separate dataset from a later date (May 11 or May 28) is used to evaluate forecasting performance.

Methodology

1. Building the Model

This stage begins by applying ARIMA to each country within a given region:

2. Evaluating (Forecasting) with the Regional Polynomial Model

After building the polynomial functions for ARIMA parameters in each region, the model can quickly forecast future cases for any new or existing country data in that region:

  1. Lookup ARIMA Parameters: Given updated total cases and population, the new “combined metric” is fed into the polynomial functions, returning an estimate for p, D, and q.
  2. Forecast Cases: Once p, D, q are obtained, the ARIMA model is instantiated and used to predict future daily cases. The paper typically looks 15+ days ahead.
  3. Compare to Observed Values: The predictions are compared against real data for verification, and the RMSE is reported for performance assessment.

Results

The method was tested on 145 countries grouped into six continental regions (North America, South America, Africa, Oceania, Asia, and Europe). Each country's model parameters (p, D, q) and its error were recorded. The following highlights emerged:

Discussion

The paper demonstrates that countries sharing a continent may have overlapping social, environmental, or cultural characteristics that affect COVID-19 transmission. Modeling these nations jointly through a single polynomial function for ARIMA parameters simplifies forecasting without sacrificing accuracy.

One interesting discovery is the partial correlation between a country’s population size (per million) and the overall forecast error, but climate, testing rates, government response (lockdowns, social distancing), and other interventions also heavily influence the spread.

As the pandemic evolves, re-training the polynomial models with updated data is key to maintaining accuracy in longer-term forecasts. This method can be extended by incorporating additional variables (e.g., humidity, culture, or more sophisticated epidemiological indicators) and by refining the selection of ARIMA hyperparameters.

Conclusion

This study presents a unified, two-stage framework for short-term COVID-19 forecasting. First, country-level ARIMA models are estimated, and then their parameters (p, D, q) are captured as polynomial functions indexed by a “cases × population” metric. By grouping countries into six geographic regions, the system can leverage shared attributes to improve forecasting.

The results confirm that ARIMA models, with the help of polynomial interpolation for parameter selection, can achieve low RMSE in predicting daily case counts across diverse countries. Future research can broaden these polynomial-based parameter mappings and adapt them to a wider set of influencing factors for improved generalization and robustness.