Logo Lanfrica

UmerSR/Malaria-Trends-in-Africa-Regression-Analysis

Domaine:

healthcare
Créateur:
Ume
Hôte:
# Malaria-Trends-in-Africa-Regression-Analysis ## Part 1: Linear Regression Analysis This project aims to perform a linear and polynomial regression analysis on the incidence of Malaria in Africe between 2000 and 2015 in order to identify the areas at highest potential risk, allowing for insight into what areas would most benefit from interventionist policies. The below image is of a linear regression on the entire continent's incidence data by year, alongside a 95% confidence interval. The results display a clear downward trajectory in malaria incidence over time. However, further perusing the data reveals more worrying information. For example, considering Nigeria's incidence rates in isolation show a steady overall increase, even though this data is clearly not modelled using a linear regression model. Looking at South Africa's incidence rates, it can be seen that reported cases, although still not modelled well linearly, show a steady decrease over time. However, it remains the case that South Africa's incidence rate is about 3.75 times that of Nigeria's despite the opposing rates of change ## Part 2: Polynomial Regression Analysis In order to account for the non-linear nature of the data seen in Nigeria, polynomial regression is employed instead of linear regression in pursuit of an effective model. This introduces a new hyperparameter in the form of the order of the polynomial. The caveat with this is that low-order polynomials are less sensitive to change, therefore may not model certain situations effectively, and higher-order polynomials may be too sensitive and cause the model to be overfitted on the data. This phenomenon is often known as the bias-variance tradeoff As seen in the image above, using a quartec (polynomial of order 4) seems to model the data relatively well, and can be justifiably used to make predictions into the near future. Note that it isn't perfect, which is purposeful. If we make it go out of its way to fit the graph b …