You are currently viewing a new version of our website. To view the old version click .
  • Article
  • Open Access

8 March 2022

Research on Quantitative Analysis of Multiple Factors Affecting COVID-19 Spread

,
and
1
Faculty of Information Technology, Beijing University of Technology, Beijing 100124, China
2
Beijing Institute of Smart City, Beijing University of Technology, Beijing 100124, China
*
Author to whom correspondence should be addressed.

Abstract

The Corona Virus Disease 2019 (COVID-19) is spreading all over the world. Quantitative analysis of the effects of various factors on the spread of the epidemic will help people better understand the transmission characteristics of SARS-CoV-2, thus providing a theoretical basis for governments to develop epidemic prevention and control strategies. This article uses public data sets from The Center for Systems Science and Engineering at Johns Hopkins University (JHU CSSE), Air Quality Open Data Platform, China Meteorological Data Network, and WorldPop website to construct experimental data. The epidemic situation is predicted by Dual-link BiGRU Network, and the relationship between epidemic spread and various feature factors is quantitatively analyzed by the Gauss-Newton iteration Method. The study found that population density has the greatest positive correlation to the spread of the epidemic among the selected feature factors, followed by the number of landing flights. The number of newly diagnosed daily will increase by 1.08% for every 1% of the population density, the number of newly diagnosed daily will increase by 0.98% for every 1% of the number of landing flights. The results of this study show that the control of social distance and population movement has a high priority in epidemic prevention and control strategies, and it can play a very important role in controlling the spread of the epidemic.

1. Introduction

Since December 2019, The Corona Virus Disease 2019 (COVID-19) caused by the SARS-CoV-2, has spread rapidly around the world. On 11 March 2020, the WHO announced that COVID-19 has become a major issue in the world [,,,]. The spread of COVID-19 has had a serious impact on the medical and economic aspects of countries around the world []. Due to the complexity of the spread of COVID-19, existing models cannot accurately estimate the direction of the spread of the epidemic []. Therefore, we need to build a quantitative analysis model to deeply explore the spread and influencing factors of COVID-19 on a global scale. In the current research, the data-driven deep learning model has an outstanding performance in the task of modeling time series [].
The symptoms of COVID-19 are fever, cough, shortness of breath, loss of consciousness and fatigue. Other symptoms include dyspnea and chest pain []. In order to prevent the spread of the epidemic, countries have adopted many measures, such as reducing gathering activities, controlling the movement of people, advocating the use of masks, and regular disinfection in public areas []. As of 31 December 2021, there have been more than 287 million confirmed cases of COVID-19 worldwide, and at least 5 million people have lost their lives []. In order to further grasp the factors affecting the spread of SARS-CoV-2, better support the decision-making of epidemic prevention and control, timely made targeted countermeasures, and control the further spread of the epidemic, it is very urgent to quantitatively analyze the relationship between various factors and the spread of SARS-CoV-2.
The remainder of this paper is arranged as follows. Section 2 comprehensively introduces the current research on COVID-19 and the transmission characteristics of the SARS-CoV-2. Section 3 introduces the data sources and presents our research methodology. Section 4 describes the experimental results and provides an analytical discussion, and Section 5 summarizes the conclusions of this study and proposes further research directions.

3. Data Sources

The data set in this paper is mainly divided into four parts including epidemic data, climate data, population and flight data, and air quality data.
  • The source of the epidemic data is COVID-19 data set published by the Center for Systems Science and Engineering (CSSE) at Johns Hopkins University. The data set was collected from all over the world from 22 January 2020, in the early stage of the epidemic. The experimental data in this article include the collected epidemic data from 22 January 2020 to 31 December 2021. The feature data elements include the cumulative number of confirmed cases, the cumulative number of cured people, the cumulative number of deaths, and the number of new cases per day.
  • The climate data comes from the daily recorded data of weather stations around the world collected by the China Meteorological Data Network (http://data.cma.cn/). This experiment selects the climate data of various regions from 22 January 2020 to 31 December 2021. The feature data elements include daily maximum temperature, daily minimum temperature, wind speed, precipitation, dew point temperature, atmospheric pressure, wind gust, altitude, absolute humidity and relative humidity.
  • The population and flight data come from the Population Division of the Department of Economic and Social Affairs of the United Nations Secretariat. (https://population.un.org/wpp/). This experiment selects population and flight data in various regions from 22 January 2020 to 31 December 2021. The feature data elements include total population, population density, the total number of flights, number of domestic flights, and international flights.
  • The air quality data come from the open-source air quality website WAQI (https://aqicn.org/data-platform/covid19/). This experiment selects air quality data in various regions from 22 January 2020 to 31 December 2021. The feature data elements include NO 2 , PM 10 , PM 2.5 , PM 1 , SO 2 , O 3 , CO content in the air, Air Quality Index(AQI), Suspended particle concentration(from NEPH), UV Index(UVI), Pollution(POL) and Wavelength Dominant(WD).
We collected 31-dimensional features of 81 countries to form a data set. Because we can get the data we need in these countries, we selected these 81 countries. In order to ensure that there was a sufficient amount of data to train the model, we selected the 9:1 segmentation ratio to divide the training set and test set, that is, the data from 22 January 2020 to 31 October 2021 was set as the training set and that from 1 November 2021 to 31 December 2021 as the test set.

4. Research Methods

The quantitative relationship model between COVID-19 spread and various characteristic factors proposed in this paper includes three steps: multi-source heterogeneous data preprocessing, constructing Dual-link BiGRU Network to prediction COVID-19 spread, and building a quantitative analysis model of multiple feature data relationships.

4.1. Multi-Source Heterogeneous Data Preprocessing

Because the data comes from a variety of public data sets, there are some problems among data sets, such as inaccurate data, missing data, inconsistent data format and etc. In the data preprocessing stage, this paper builds a dataset with the original data as the core. For inaccurate data, when the values of the same feature data in datasets from different sources are the same, we consider the data to be reasonable; otherwise, most of the data in datasets from different sources are selected as the final data. For missing data, the Cubic Spline Interpolation method is used to supplement the data. For inconsistent data format, feature level fusion method is adopted to extract the features of each source data set first, while the extracted feature information comes from the high-order representation of the original information, and then to aggregate and synthesize the multi-source data according to the feature information. The data with inconsistent scales are normalized by the linear normalization method to unify the data scale. This is also a commonly used data preprocessing method in the field of COVID-19 prediction. The information contained in the fused data is shown in Table 1.
Table 1. Feature display of fusion data set.

4.2. Dual-Link BiGRU Network to Predict the Spread of COVID-19

In this paper, we construct Dual-link BiGRU Network to predict the spread of COVID-19. The task of Dual-link BiGRU is to regress and predict the number of new cases per day with input data. Dual-link BiGRU conducts parameter training through the relationship between daily different factors in the training set and the number of new cases. It inputs the values of the daily factors in the test set, and outputs the regression estimation of the number of new cases on that day. The network structure diagram of Dual-link BiGRU is shown in Figure 1.
Figure 1. The network structure diagram of Dual-link BiGRU.
Dual-link BiGRU consists of a dual-link feature network and a fully connected network. In the feature network, Link 1 is composed of one-dimensional convolutional network, BiGRU network, and one-dimensional inverse convolutional network. Link 2 is composed of one-dimensional convolutional network, fully connected network, and one-dimensional inverse convolutional network. Link 1 is mainly responsible for learning the timing information in the data of multiple factors. The one-dimensional convolutional network in Link 2 provides a larger receptive field for the network with a larger size of convolution kernel to learn different feature information from Link 1. In this experiment, in order to obtain a larger receptive field and better features, we select the kernel size of 16. After the dual-link feature network is a fully connected network. The fully connected network’s main function is to change the output dimension of the entire Dual-link BiGRU network to the desired output dimension.
According to the prediction performance of the test set, the parameter settings of the prediction network are shown in Table 2. The optimizer used for model training is Adam, the loss function is Mean Squared Error Loss Function (MSELoss), and the number of iterations is set to 500. In this paper, we selects BiLSTM [], BiGRU [], and CNN [] for comparison at the same dataset which comes from Table 1. BiLSTM, BiGRU, and CNN are connected by their respective models and fully connected layers. The hidden layer size and number of layers of BiLSTM and BiGRU are consistent with Dual-link BiGRU, and the parameter setting of CNN is consistent with 1-D Conv1 in Dual-link BiGRU.
Table 2. Prediction network parameter settings.

4.3. The Quantitative Analysis Model of Multi Characteristic Data Relationships

In this paper, we sets the tolerance of the prediction error rate β ∈ [0, 1]. The model with a prediction error rate lower than β is called an effective model, otherwise it is called an invalid model. It is assumed that only effective models can participate in quantitative analysis. Therefore, the larger of β means the more effective models, and the quantitative analysis results have better generalization ability, but it also means that the results have larger errors; the smaller of β means the less effective the models and the poorer generalization ability of the quantitative analysis results, while the results have smaller errors within a limited range. This paper needs to have a small result errors on the basis of ensuring a certain generalization ability, so β = 0.2 is set in the experiment of this paper.
In this paper, the Gauss-Newton iterative method is used for quantitative analysis. The Gauss-Newton iterative method uses Taylor series expansion to approximately replace the nonlinear regression model. Through multiple iterations, the regression coefficient is modified many times, so that the regression coefficient continuously approaches the best regression coefficient of the nonlinear regression model, and finally the Residual Sum of Square of the original model is minimized.
According to the selected observation variable data, a multiple nonlinear regression model as in Equation (1) can be constructed.
y = f ( X , β ) + ϵ
where y is the dependent variable, which represents the number of newly diagnosed people every day in this experiment; X is the set of independent variables, which represents the data of each characteristic factor in this experiment; β is an unknown parameter; ϵ is an error term, and it is an unobservable random variable with a mean of zero and a variance of σ 2 > 0 . The above model can be used to predict the number of the newly diagnosed daily and determine the nonlinear quantitative relationship between each independent variable and the dependent variable. The Gauss-Newton iteration method estimates the to-be-regressed parameter β of the nonlinear regression model through continuous iteration.
The realization process of the quantitative analysis model includes the following steps:
  • Construct multiple regression models and train through data;
  • The prediction ability of the model is evaluated by modifying the determination coefficient;
  • The quantitative relationship between multiple factors and the number of new cases per day was determined by a multiple regression model;
  • Given different initial values for different factors x 0 ;
  • For the k t h iteration, calculate the Jacobian matrix J, Hessian matrix H, B, and calculate the increment x k ;
  • If x k is small enough, stop the iteration, otherwise, update x ( k + 1 ) = x k + x k ;
  • Repeat steps (5) (6) until the maximum number of iterations is reached, or the termination condition of (6) is met;
  • Complete the estimation of the unknown parameter β , and determine the quantitative relationship between different elements and the number of new cases per day;
  • Complete for β to determine the quantitative relationship between different elements and the number of new cases per day.

5. Experimental Results and Discussion

5.1. Dual-Link BiGRU

In this paper, the evaluation index is selected as the error rate ρ , and the error rate calculation formula is shown in Equation (2):
ρ = ( 1 / m i = 0 m ( y ^ i y i ) ) / ( 1 / m i = 0 m y i )
where y ^ i represents the model output, y i represents the label of the number of new cases per day, and m represents the total number of samples in the test set. This indicator can measure the gap between the model output and the label of the entire test set sample.
In this paper, we selects BiLSTM [], BiGRU [], and CNN [] for comparison at the same dataset which comes from Table 1. BiLSTM, BiGRU, and CNN are connected by their respective models and fully connected layers. The hidden layer size and number of layers of BiLSTM and BiGRU are consistent with Dual-link BiGRU in Table 2, and the parameter setting of CNN is consistent with 1-D Conv1 in Dual-link BiGRU in Table 2. Sets the prediction error tolerance β = 0.2, and uses the model error rate as the evaluation index. In the data of 81 countries, the model with an error rate lower than β is regarded as an effective model, and the difference in the number of effective models among different models is compared in the test dataset. The comparison experiment results are shown in Table 3.
Table 3. Comparison of model results.
Table 3 shows that (1) Dual-link BiGRU has a larger effective model ratio in the prediction network; (2) Compared with BiGRU, BiLSTM, and CNN, Dual-link BiGRU performs better in low error rate. Therefore, it is believed that the Dual-link BiGRU has better performance and generalization ability in predicting the daily number of new epidemics in various countries. Therefore, this paper selects the Dual-link BiGRU as the prediction network. Figure 2 shows the difference between the daily number of new cases predicted of the Dual-link BiGRU and the label value. Because showing the forecast results for all countries would make the paper extraordinarily long, in this paper, we select 6 countries with better results for display, including Canada, China, India, Indonesia, Russia, and United Kingdom.
Figure 2. Display of Dual-link BiGRU prediction results.
It can be seen from Figure 2 that in the selected 6 countries, the red solid line is the label of the number of new cases per day, and the green dashed line is the predicted value by the Dual-link BiGRU network. The two curves have a high degree of overlap. Therefore, the prediction network constructed in the experiment has a good fit with the real data. The trained prediction network can better predict the daily new cases and has a strong generalization ability. For different countries, the model can learn more appropriate parameters to predict the number of the daily new cases.

5.2. Quantitative Analysis Results of Multi-Characteristic Data Relationships

In this paper, we uses the method of Lin [] and others to build a multiple regression model for the selected 44 effective national models and train them. Through the multiple regression model, the quantitative relationship between multiple factors and the number of new cases per day is determined, and the prediction ability of the model is evaluated by determining the Adjusted R Square (R). The larger R is, the stronger the prediction ability of the model is. If R is greater than 0.6, the model has strong epidemic prediction ability. Then, the initial value of the Gauss-Newton iterative method is selected through the model parameters. The quantitative relationship between multiple factors and the number of new cases per day is shown in Table 4, and the initial values are shown in Table 5.
Table 4. Regression equation parameter.
Table 5. Example of initial value of each characteristic coefficient.
In this paper, we uses the trained Dual-link BiGRU model of various countries to generate simulation data for quantitative analysis. The data generation method is as follows:
  • Goal: To generate data for analyzing the quantitative relationship between x 1 and y, where x 1 is the maximum temperature per day and y is the number of new cases per day.
  • To control other factors unchanged, adjust x 1 , and generate the predicted value of y.
  • The simulation data is used as input, and training is performed with the Gauss-Newton method to obtain the coefficient between x 1 and y, so as to determine the quantitative relationship between them.
According to the above method, the coefficient equations between the number of new cases per day in each country and the characteristic factors in Table 1 are obtained respectively, and the quantitative relationship between the number of new cases per day and the characteristic factors in each country is determined. Then take the average of the quantitative relationship coefficients of the same feature in all countries, and finally get the quantitative relationship between each feature that is applicable in the selected country and the number of new cases per day with strong generalization performance, as shown in Table 6.
Table 6. Quantitative relationship between characteristic factors and daily number of new cases.
As shown in Table 6, among the selected features, the population density per unit land area has the largest positive correlation with the number of new cases per day, followed by the number of landing flights. The population density per square kilometer increases by 1%, and the number of new cases per day in the corresponding area increases by about 1.076%. For every 1% increase in the number of landing flights, the number of new cases per day in the corresponding area increases by about 0.98%. Among the selected features, the daily maximum temperature, daily minimum temperature and dew point temperature have negative correlations to the number of new cases per day. Within the range of 0–50 °C, each increase of 1 °C can reduce the number of new cases per day by 0.021%, 0.028% and 0.015% respectively.
Based on the above analysis, the following further inferences can be drawn:
  • Population factors and flight factors has an obvious positive correlation impact on the spread of COVID-19. From the data of the selected 44 countries, it can be seen that population factors and flight factors have a greater impact on the spread of COVID-19. Every 1% increase in population factors will increase the spread of the epidemic by 1.044%. Every 1% increase in the number of arrival flights will increase the spread of the epidemic by 0.98%. Therefore it can be seen that population factors and flight factors have a more obvious impact on the increase in the spread of the epidemic. From the perspective of formulating epidemic prevention and control policies, controlling social distancing and population movement will have a more obvious positive correlation impact on epidemic prevention and control.
  • The increase in temperature and relative humidity has a negative correlation impact on the spread of COVID-19.Among the climatic factors, the increase of temperature and humidity has a negative correlation impact on the spread of COVID-19. In this paper, the temperature range of 0–50 °C and the relative humidity range of 1–100% are selected for the experiment. It is obtained that within this range, temperature and relative humidity has a negative correlation impact on the spread of COVID-19, but the impact is not obvious. Since the correlation between population density and the speed of the epidemic is far greater than the correlation between temperature and the speed of the epidemic, it is speculated that in areas with higher temperatures and higher population densities, such as India and other countries, the speed of the epidemic still has a relatively rapid possibility.
  • A larger AQI has a positive correlation impact on the spread of COVID-19.AQI represents the degree of air cleanliness or pollution and its impact on health. The higher the AQI, the more serious the air pollution in the region. This experiment shows that in the range of AQI value 100–200, the epidemic transmission speed of COVID-19 will increase by 0.013% every time AQI increases by 1. Some researchers have shown that SARS-CoV-2 can spread through aerosols [,,]. Therefore, a higher AQI means a higher aerosol content in the air, which is not good for air circulation. Such an environment may promote the spread of COVID-19.

6. Discussion

Since the discovery of COVID-19 in 2019, countries have successively formulated epidemic prevention and control policies that suit their own national conditions []. According to the current development status of the world epidemic, a long-term coexistence with the virus has been formed, that is, even though the vaccine has been developed, it will take a long time to completely eliminate COVID-19 [,]. This paper carries out quantitative analysis and research on COVID-19 transmission by various factors all over the world and comes to the conclusion that the increase of population density, population flow, and flight times has a positively correlated impact on the epidemic transmission, and the increase of temperature, relative humidity, and dew point temperature has a negative correlation impact on the epidemic transmission. It can be concluded that the positive correlation effect of population density on the epidemic spread is much greater than the negative correlation effect of climate factors on the epidemic spread.
Therefore, according to the regional characteristics and national conditions, governments should formulate epidemic prevention and control policies to control population density and population flow in the climate environment with high local temperature and relative humidity, maximize the effect of epidemic prevention and control, and curb the spread of the epidemic from the aspects of transmission route and virus characteristics.
International organizations need to establish high, medium and low-risk epidemic spread levels globally. The faster the epidemic spread, the higher the epidemic spread level, and the more stringent prevention and control policies need to be adopted. For cities where the epidemic has spread, it is necessary to keep wearing masks, maintain proper social distancing, and reduce public recreational activities. For cities with large population density and serious epidemic spread, it is recommended to strictly control population flow, tighten restrictive measures for international flights, and take “city closure” measures when necessary, and other cities need to take more stringent entry epidemic prevention measures for personnel from high-risk countries and regions. For cities with slow epidemic spread, it is suggested to control the population flow within a certain range, allow international flights under the condition of good epidemic prevention measures, strictly control the flow of people from high-risk countries and regions, and be vigilant against the epidemic spread caused by climate change.

7. Conclusions and Future Work

In this paper, we fuses multi-source heterogeneous data, and makes predictions for the current COVID-19 epidemic based on the fusion data set, and quantitatively analyzes the model to obtain the quantitative relationship between various factors and the spread of the epidemic. The contributions of this paper are as follows:
  • Dual-link BiGRU network is proposed, which integrates time-series features and high-order features through dual-link construction, and can obtain more accurate prediction effects and generalization capability. Through experiments, it can be determined that the Dual-link BiGRU network has the following advantages:
    • Compared with the CNN, LSTM, and GRU networks, the prediction accuracy of the Dual-link BiGRU network is improved by 35.03%, 31.41%, and 27.36%, respectively;
    • Compared with the CNN, LSTM, and GRU networks, the generalization ability of the Dual-link BiGRU network is improved by 25.00%, 27.50%, and 28.75%, respectively.
  • According to the quantitative analysis between the SARS-CoV-2 virus and its characteristic factors on a global scale, we concluded that the SARS-CoV-2 virus transmission has the following characteristics:
    • The increase in population factors and flight factors has an obvious positively correlated impact on the spread of COVID-19.
    • The increase in AQI will has a minor positively correlated impact on the spread of COVID-19.
    • The increase in temperature and relative humidity has a negative correlation impact on the spread of COVID-19.
Accordingly, this paper makes the following recommendations for global epidemic prevention and control:
  • Countries should take appropriate or even stricter prevention and control measures according to their national conditions, such as demographic factors, climate factors, air quality factors, and the number of flights, to minimize the risk of outbreaks.
  • Demographic factors have a strong positive relationship with the spread of COVID-19 epidemic. Governments can control the spread of the epidemic by strictly controlling the movement of people both within and outside the country.
  • Since the impact of population and flight factors on the spread of the epidemic is much greater than that of climate factors, governments of various countries should not expect the epidemic to disappear after the temperature rises, and should actively control population movement.
This paper has completed the multi-factor quantitative analysis model affecting the spread of COVID-19. Due to the different detection coverage of COVID-19 in various countries, the number of confirmed cases is inevitably underestimated, and this paper does not evaluate the impact of changes in policies and local prevention and control strategies on the spread of COVID-19. Therefore, more detailed exploration is needed on these issues in the next step.

Author Contributions

Y.F. collected literature and wrote the manuscript; S.L. reviewed and edited the manuscript; Z.X. Put forward suggestions for revision of the article. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Institutional Review Board Statement

Not applicable.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Yunbo, X.S.W. Novel coronavirus pneumonia epidemic and China’s urban population and the spatial relationship between the city’s public health classification governance enlightenment. Trop. Geogr. 2020, 40, 408–421. [Google Scholar]
  2. Sharifi, A.; Khavarian-Garmsir, A.R. The COVID-19 pandemic: Impacts on cities and major lessons for urban planning, design, and management. Sci. Total Environ. 2020, 749, 142391. [Google Scholar] [CrossRef] [PubMed]
  3. Conforti, C.; Giuffrida, R.; Dianzani, C.; Di Meo, N.; Zalaudek, I. COVID-19 and psoriasis: Is it time to limit treatment with immunosuppressants? A call for action. Dermatol. Ther. 2020, 33, e13298. [Google Scholar] [CrossRef] [PubMed]
  4. Arora, P.; Jafferany, M.; Lotti, T.; Sadoughifar, R.; Goldust, M. Learning from history: Coronavirus outbreaks in the past. Dermatol. Ther. 2020, 33, e13343. [Google Scholar] [CrossRef] [Green Version]
  5. Velavan, T.P.; Meyer, C.G. The COVID-19 epidemic. Trop. Med. Int. Health 2020, 25, 278. [Google Scholar] [CrossRef] [Green Version]
  6. Fauci, A.S.; Lane, H.C.; Redfield, R.R. COVID-19—Navigating the Uncharted. N. Engl. J. Med. 2020, 382, 1268–1269. [Google Scholar] [CrossRef]
  7. Namasudra, S.; Dhamodharavadhani, S.; Rathipriya, R. Nonlinear neural network based forecasting model for predicting COVID-19 cases. Neural Process. Lett. 2021, 1–21. [Google Scholar] [CrossRef]
  8. Yuki, K.; Fujiogi, M.; Koutsogiannaki, S. COVID-19 pathophysiology: A review. Clin. Immunol. 2020, 215, 108427. [Google Scholar] [CrossRef]
  9. Watkins, J. Preventing a COVID-19 Pandemic. BMJ 2020, 368, m810. [Google Scholar] [CrossRef] [Green Version]
  10. Haynes, B.F.; Corey, L.; Fernandes, P.; Gilbert, P.B.; Hotez, P.J.; Rao, S.; Santos, M.R.; Schuitemaker, H.; Watson, M.; Arvin, A. Prospects for a safe COVID-19 vaccine. Sci. Transl. Med. 2020, 12, eabe0948. [Google Scholar] [CrossRef]
  11. Fanelli, D.; Piazza, F. Analysis and forecast of COVID-19 spreading in China, Italy and France. Chaos Solitons Fractals 2020, 134, 109761. [Google Scholar] [CrossRef] [PubMed]
  12. Velásquez, R.M.A.; Lara, J.V.M. Forecast and evaluation of COVID-19 spreading in USA with reduced-space Gaussian process regression. Chaos Solitons Fractals 2020, 136, 109924. [Google Scholar] [CrossRef] [PubMed]
  13. Rahimi, I.; Chen, F.; Gandomi, A.H. A review on COVID-19 forecasting models. Neural Comput. Appl. 2021, 1–11. [Google Scholar] [CrossRef] [PubMed]
  14. Putra, S.; Khozin Mutamar, Z. Estimation of parameters in the SIR epidemic model using particle swarm optimization. Am. J. Math. Comput. Model. 2019, 4, 83–93. [Google Scholar] [CrossRef]
  15. Mbuvha, R.R.; Marwala, T. On data-driven management of the COVID-19 outbreak in South Africa. medRxiv 2020. [Google Scholar] [CrossRef]
  16. Notari, A. Temperature dependence of COVID-19 transmission. Sci. Total Environ. 2021, 763, 144390. [Google Scholar] [CrossRef]
  17. Shi, P.; Dong, Y.; Yan, H.; Zhao, C.; Li, X.; Liu, W.; He, M.; Tang, S.; Xi, S. Impact of temperature on the dynamics of the COVID-19 outbreak in China. Sci. Total Environ. 2020, 728, 138890. [Google Scholar] [CrossRef]
  18. Tobías, A.; Molina, T. Is temperature reducing the transmission of COVID-19? Environ. Res. 2020, 186, 109553. [Google Scholar] [CrossRef]
  19. Wang, J.; Tang, K.; Feng, K.; Li, X.; Lv, W.; Chen, K.; Wang, F. High temperature and high humidity reduce the transmission of COVID-19. arXiv 2020, arXiv:2003.05003. [Google Scholar] [CrossRef] [Green Version]
  20. Ma, Y.; Zhao, Y.; Liu, J.; He, X.; Wang, B.; Fu, S.; Yan, J.; Niu, J.; Zhou, J.; Luo, B. Effects of temperature variation and humidity on the death of COVID-19 in Wuhan, China. Sci. Total Environ. 2020, 724, 138226. [Google Scholar] [CrossRef]
  21. Bhadra, A.; Mukherjee, A.; Sarkar, K. Impact of population density on Covid-19 infected and mortality rate in India. Model. Earth Syst. Environ. 2021, 7, 623–629. [Google Scholar] [CrossRef] [PubMed]
  22. Sun, Z.; Zhang, H.; Yang, Y.; Wan, H.; Wang, Y. Impacts of geographic factors and population density on the COVID-19 spreading under the lockdown policies of China. Sci. Total Environ. 2020, 746, 141347. [Google Scholar] [CrossRef] [PubMed]
  23. Davies, N.G.; Klepac, P.; Liu, Y.; Prem, K.; Jit, M.; Eggo, R.M. Age-dependent effects in the transmission and control of COVID-19 epidemics. Nat. Med. 2020, 26, 1205–1211. [Google Scholar] [CrossRef] [PubMed]
  24. Monod, M.; Blenkinsop, A.; Xi, X.; Hebert, D.; Bershan, S.; Tietze, S.; Baguelin, M.; Bradley, V.C.; Chen, Y.; Coupland, H.; et al. Age groups that sustain resurging COVID-19 epidemics in the United States. Science 2021, 371, eabe8372. [Google Scholar] [CrossRef]
  25. Lin, S.; Fu, Y.; Jia, X.; Ding, S.; Wu, Y.; Huang, Z. Discovering correlations between the COVID-19 epidemic spread and climate. Int. J. Environ. Res. Public Health 2020, 17, 7958. [Google Scholar] [CrossRef]
  26. Patanavanich, R.; Glantz, S.A. Smoking is associated with COVID-19 progression: A meta-analysis. Nicotine Tob. Res. 2020, 22, 1653–1656. [Google Scholar] [CrossRef]
  27. Kass, D.A.; Duggal, P.; Cingolani, O. Obesity could shift severe COVID-19 disease to younger ages. Lancet 2020, 395, 1544–1545. [Google Scholar] [CrossRef]
  28. Wu, X.; Nethery, R.C.; Sabath, M.B.; Braun, D.; Dominici, F. Air pollution and COVID-19 mortality in the United States: Strengths and limitations of an ecological regression analysis. Sci. Adv. 2020, 6, eabd4049. [Google Scholar] [CrossRef]
  29. Coşkun, H.; Yıldırım, N.; Gündüz, S. The spread of COVID-19 virus through population density and wind in Turkey cities. Sci. Total. Environ. 2021, 751, 141663. [Google Scholar] [CrossRef]
  30. Zeroual, A.; Harrou, F.; Dairi, A.; Sun, Y. Deep learning methods for forecasting COVID-19 time-Series data: A Comparative study. Chaos Solitons Fractals 2020, 140, 110121. [Google Scholar] [CrossRef]
  31. Behura, A. A deep learning application for prediction of COVID-19. In Impact of AI and Data Science in Response to Coronavirus Pandemic; Mishra, S., Mallick, P.K., Tripathy, H.K., Chae, G.S., Mishra, B.S.P., Eds.; Algorithms for Intelligent Systems; Springer: Berlin/Heidelberg, Germany, 2021; pp. 127–148. [Google Scholar]
  32. Aslan, M.F.; Unlersen, M.F.; Sabanci, K.; Durdu, A. CNN-based transfer learning–BiLSTM network: A novel approach for COVID-19 infection detection. Appl. Soft Comput. 2021, 98, 106912. [Google Scholar] [CrossRef] [PubMed]
  33. Anderson, E.L.; Turnham, P.; Griffin, J.R.; Clarke, C.C. Consideration of the aerosol transmission for COVID-19 and public health. Risk Anal. 2020, 40, 902–907. [Google Scholar] [CrossRef] [PubMed]
  34. Casanova, L.M.; Jeon, S.; Rutala, W.A.; Weber, D.J.; Sobsey, M.D. Effects of air temperature and relative humidity on coronavirus survival on surfaces. Appl. Environ. Microbiol. 2010, 76, 2712–2717. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  35. Gardner, E.G.; Kelton, D.; Poljak, Z.; Van Kerkhove, M.; Von Dobschuetz, S.; Greer, A.L. A case-crossover analysis of the impact of weather on primary cases of Middle East respiratory syndrome. BMC Infect. Dis. 2019, 19, 1–10. [Google Scholar] [CrossRef] [Green Version]
  36. Zhou, C.; Pei, T.; Du, Y.; Chen, J.; Xu, J.; Wang, J.; Zhang, G.; Su, F.; Song, C.; Yi, J.; et al. Big data analysis on COVID-19 epidemic and suggestions on regional prevention and control policy. Bull. Chin. Acad. Sci. 2020, 35, 200–203. [Google Scholar]
  37. Cheng, Z.J.; Qu, H.Q.; Tian, L.; Duan, Z.; Hakonarson, H. COVID-19: Look to the Future, Learn from the Past. Viruses 2020, 12, 1226. [Google Scholar] [CrossRef]
  38. Sun, C.; Zhai, Z. The efficacy of social distance and ventilation effectiveness in preventing COVID-19 transmission. Sustain. Cities Soc. 2020, 62, 102390. [Google Scholar] [CrossRef]
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.