-
Notifications
You must be signed in to change notification settings - Fork 0
/
Malaria_India_Trends.Rmd
409 lines (253 loc) · 26 KB
/
Malaria_India_Trends.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
---
title: "Predictive Time Series Modeling of Malaria Incidence in India: A 20-Year Retrospective and 5-Year Forecast."
author:
name: Dr Ami Soni
output:
html_document
abstract: >
**Background:** Malaria poses a significant health challenge in India, with notable contributions to the global malaria burden. This study aims to analyze trends in malaria incidence in India over the past two decades, evaluating the effectiveness of public health interventions.
**Objective:** The objective of this study is to analyze trends in malaria incidence in India over the past decades, evaluate the effectiveness of public health interventions, and project future trends in order to support the country's goal of malaria elimination by 2030.
**Methods:** A comprehensive 20-year dataset was utilized to conduct time series analyses, including linear regression and ARIMA modeling. The linear regression model assessed the trend in malaria incidence per 1,000 population at risk, while the ARIMA model was used for forecasting future trends. Residuals were evaluated for adequacy to ensure model reliability.
**Results:** The linear regression analysis revealed a significant annual decrease in malaria incidence by approximately 0.92 units (p < 0.001), explaining 90.77% of the variability in the data. The ARIMA model forecasts indicate a continued decline, projecting negative incidence values by 2026 and 2027, despite some residual autocorrelation suggesting further model refinement may be necessary.
**Discussion:** These findings highlight the effectiveness of current public health strategies and the importance of ongoing monitoring to address remaining challenges. The projected downward trend aligns with India’s goal of malaria elimination by 2030, reinforcing the need for sustained interventions in high-burden areas.
**Conclusion:** This study underscores the positive impact of public health initiatives on malaria incidence in India, while emphasizing the necessity for continuous research and adaptive strategies to achieve the ambitious target of malaria eradication by 2030.
---
---------------------------------------------------------------------------------------------------
**Keywords:** Malaria, Predictive Time Series Analysis, ARIMA, Linear Regression, Public Health, India, Malaria Incidence, Malaria Eradication, Public Health Strategies.
---------------------------------------------------------------------------------------------------
```{r global_options, include=FALSE}
knitr::opts_chunk$set(echo=FALSE, warning=FALSE, message=FALSE)
```
```{r, echo = FALSE}
# Load all necessary packages:
pacman::p_load(ggplot2, # For Visualization of Graph
rio, # For import and export
here, # File locator
tidyverse, # For Data management and visualisation
plotly, # For interactive graphs
forecast, # Fit sin and cosin terms to data
tseries, # For Time Series analysis
ggpubr, # Simplyfies plots and customisation.
gt, # To generate tables.
kableExtra) # For styling tables.
Malaria <- import("D:/Downloads/Data/442CEA8_ALL_LATEST.csv")
Malaria <- Malaria %>% select(5,11:14)
colnames(Malaria) <- c("Time", "Country", "Rate_per_1000_N", "Lower_bound", "Upper_bound")
Malaria <- Malaria %>% arrange(Country,Time) %>% slice(-c(1:23))
Malaria_World <- Malaria %>% filter(Country == "World")
Malaria_South_East_Asia <- Malaria %>% filter(Country == "South-East Asia")
Malaria_India <- Malaria %>% filter(Country == "India")
```
### **Introduction**
Malaria is a potentially life-threatening illness caused by several parasitic species, namely Plasmodium vivax, Plasmodium falciparum, Plasmodium malariae, and Plasmodium ovale, and is transmitted through the bite of infected female Anopheles mosquitoes (1). In 2022, approximately 249 million malaria cases were reported globally across 85 endemic countries, reflecting an increase of 5 million cases compared to the previous year (2). Within the WHO South-East Asia Region, nine countries were identified as malaria-endemic, contributing to 5.2 million cases, which represented 2% of the global malaria burden (1). India’s significant malaria case load places it among the eleven countries with the highest burden which collectively account for 70% of the global incidence of malaria as seen in Figure 1, with the remaining ten countries located in Africa. India accounting for roughly 65.7% of all malaria cases within the south-eastern region, with nearly 46% attributed to P. vivax. Together, India and Indonesia were responsible for 94% of malaria-related fatalities in the south-east region (4).
```{r Figure 1, fig.cap = "Figure 1: Malaria incidence in World, South-East Asia and India (2000-2022)", out.width = "60%", fig.align = "center"}
# Convert to time series object
# 1) World:
ts_world <- ts(Malaria_World$Rate_per_1000_N, start = 2000, end = 2022, frequency = 1)
# 2) South-East Asia:
ts_South_East_Asia <- ts(Malaria_South_East_Asia$Rate_per_1000_N, start = 2000, end = 2022, frequency = 1)
# 3) India:
ts_India <- ts(Malaria_India$Rate_per_1000_N, start = 2000, end = 2022, frequency = 1)
Malaria_incidence <- Malaria %>% filter(Country %in% c("World","South-East Asia", "India"))
ggplot(Malaria_incidence, aes(x = Time, y = Rate_per_1000_N, color = Country)) +
geom_line() +
labs(title = "Malaria incidence 2000-2022", y = "Rate per 1000 population at Risk", x = "Year") +
theme(plot.title = element_text(face = "bold", hjust = 0.5), axis.text.x = element_text(face ="bold" ), axis.text.y = element_text(face = "bold"), legend.position = c(0.85,0.85), legend.background = element_rect(fill = "transparent", color = "black"), legend.text = element_text(face = "bold"), legend.title = element_blank()) + scale_color_manual(values =c("purple","orange","blue"), name = "Region") +
geom_point()
```
To combat this public health challenge, the World Health Assembly adopted the “Global Technical Strategy for Malaria 2016–2030,” which guides malaria elimination initiatives. The WHO Global Malaria Programme (GMP) is tasked with co-ordinating international efforts focused on controlling and ultimately eliminating malaria. Aligned with this strategy in February 2016 with the assistance of WHO, the Government of India launched the National Framework for Malaria Elimination 2016–2030, followed by the National Strategic Plan for Malaria Elimination 2017–2022 in July 2017. India's goal is to attain malaria - free status by 2027 and achieve complete eradication by 2030. Under the NSP 2017-2022, the WHO has supported the acceleration of malaria elimination initiative across several states. In 2018 WHO launched High Burden and High Impact(HBHI) initiative which seeks to strengthen malaria control efforts in high burden nation. Follwoing WHO, in july 2019, India introduced the High Burden of High Impact (HBHI) strategy in four highly endemic states: West Bengal, Jharkhand, Chhattisgarh and Madhya Pradesh.Despite these efforts, challenges remain due to the extensive diversity of ecosystems in India, with approximately 80% of the malaria burden concentrated in only ten of the 28 states, six of which are located in the northeastern part of the country (3,4).
```{r, Figure_2, echo = FALSE, fig.cap = "Figure 2: Malaria incidence of India with confidence internval.", out.width = "60%" , fig.align = "center"}
# Plot the malaria incidence over time in India with confidence Interval:
ggplot(Malaria_India, aes(x = Time, y = Rate_per_1000_N)) +
geom_line(aes(color = "Rate per 1000 at risk"), linewidth = 1) +
geom_ribbon(aes(ymin = Lower_bound, ymax = Upper_bound, fill = "Confidence Interval"), alpha = 0.2) +
labs(title = "Malaria Incidence in India (2000-2022)",
x = "Year",
y = "Rate per 1000 Population at Risk") +
theme_bw(base_size = 13) +
scale_color_manual(values = c("Rate per 1000 at risk" = "black")) +
scale_fill_manual(values = c("Confidence Interval"= "purple")) +
theme(legend.title = element_blank(),
legend.position = c(0.8, 0.8),
legend.background = element_rect(fill = "transparent", color = "black"),
legend.text = element_text(face = "bold"),
plot.title = element_text(face = "bold", hjust = 0.5)) +
geom_point(color = "black", size = 3) +
scale_x_continuous(limits = c(2000,NA), breaks = seq(2000,2022, 2)) +
scale_y_continuous(limits = c(0,35)) +
theme(axis.text.x = element_text(face = "bold"), axis.text.y = element_text(face = "bold"))
```
### **Methods**
This study employs a comprehensive 20-year dataset to analyze malaria incidences in India, utilizing time series analysis as a crucial approach for understanding and forecasting trends in endemic regions. A thorough examination of historical data was conducted to identify key components, including underlying trends and irregular fluctuations. Given the annual frequency of the data and the absence of a clear seasonal component, traditional decomposition methods such as `decompose()` and `stl()` were deemed unsuitable, as these approaches typically require larger datasets to effectively capture seasonal patterns.
Consequently, a linear regression model was fitted to the time series to analyze the trend, with the rate of malaria incidence per 1,000 population at risk as the dependent variable and time as the independent variable. The results were visualized to illustrate the time series data alongside the fitted trend line, as depicted in Figure 3.
Following the linear regression analysis, ARIMA modeling techniques were employed using the `auto.arima()` function in R, which automates the selection of appropriate ARIMA parameters. The ARIMA model was fitted to the malaria incidence time series data to capture any potential autocorrelations and temporal dependencies that may not have been addressed by the linear regression model.
To project future malaria incidence, the `forecast(fit, h = 5)` function was utilized, allowing for the generation of forecasts for the next five years, which are presented alongside their confidence intervals in Figure 6. Throughout this analysis, a rigorous data cleaning process was conducted to ensure the integrity and reliability of the results.
The residuals of both the linear regression and ARIMA models were evaluated for adequacy. The `checkresiduals(fit)` function was used to assess the ARIMA model’s residuals, ensuring that no patterns remained unexplained. Additionally, the Autocorrelation Function (ACF) and Partial Autocorrelation Function (PACF) were employed to generate plots that further analyze the residuals, confirming that the models adequately captured the time-dependent structure of the data.
By leveraging these advanced analytical methods, this study aims to elucidate trends in malaria incidence in India, thereby supporting data-driven public health strategies designed to achieve malaria elimination by 2030. A comprehensive understanding of these trends is critical for informing targeted interventions in high-burden areas and optimizing resource allocation effectively.
```{r, Figure_3, echo = FALSE, fig.cap = "Figure 3: Linear regression model to the time series analysis", out.width = "60%", fig.align = "center", message = FALSE}
# Fit a linear model
trend_model <- lm(Rate_per_1000_N ~ Time, data = Malaria_India)
# Plot the time series with trend line
ggplot(Malaria_India, aes(x = Time)) +
geom_line(aes(y = Rate_per_1000_N, color = "Actual Malaria Incidence")) +
geom_smooth(aes(y = Rate_per_1000_N, color = "Fitted Regression Line"), method = "lm", se = FALSE) +
labs(title = "Malaria Incidence with Trend Line",
x = "Year",
y = "Rate per 1000 Population at Risk") +
theme_bw(base_size = 16) +
theme(plot.title = element_text(face = "bold", hjust = 0.5), legend.title = element_blank(), legend.position = c(0.8, 0.8), legend.background = element_rect(fill = "transparent", color = "black"), axis.text.x = element_text(face = "bold"), axis.text.y = element_text(face = "bold")) +
scale_color_manual(values = c("blue", "red"),labels = c("Actual Malaria Incidence", "Fitted Regression Line"))
```
### **Results**
##### **Linear Regression Analysis**
The linear regression analysis revealed significant findings:
```{r, Table_1, echo = FALSE, message = FALSE, warning = FALSE}
s <- capture.output(summary(trend_model))
# Part1: For residuals
rs <- s[6:7]
rs <- gsub("\\s+", " ", rs)
names <- unlist(strsplit(trimws(rs[[1]]), " "))
values <- unlist(strsplit(trimws(rs[[2]]), " "))
# Create a data frame for residuals
residuals_df <- data.frame(
Statistic = names,
Value = as.numeric(values)
)
# Part2: For coefficients:
# Extracting coefficients
coefficients_raw <- s[10:12]
coefficients_cleaned <- gsub("\\s+", " ", trimws(unlist(coefficients_raw)))
# Create a data frame for coefficients
coefficients_list <- do.call(rbind, strsplit(coefficients_cleaned, " "))
coefficients_df <- data.frame(
Term = coefficients_list[, 1],
Estimate = as.numeric(coefficients_list[, 2]),
Std_Error = as.numeric(coefficients_list[, 3]),
t_value = as.numeric(coefficients_list[, 4]),
p_value = coefficients_list[, 5]
)
coefficients_df <- coefficients_df[-1,]
# create a table using kable
coefficients_df %>% kable(row.names = FALSE, caption = "<strong style ='color:black;text-align: center;'> Table 1a: Coefficients of the Trend model</strong>") %>%
kable_styling(c("striped", "bordered", "condensed"), full_width = FALSE)
Residual_standard_error <- sub("Residual standard error:\\s*([0-9.]+).*","\\1",s[16])
multiple_r_squared <- sub("Multiple R-squared:\\s*([0-9.]+),.*", "\\1",s[17])
adjusted_r_squared <- sub(".*Adjusted R-squared:\\s*([0-9.]+)\\s*.*", "\\1",s[17])
f_statistic <- sub("F-statistic:\\s*([0-9.]+).*", "\\1", s[18])
p_value <- sub(".*p-value:\\s*([0-9.e-]+)", "\\1", s[18])
# Creating a data frame
summary_df <- data.frame(
Statistic = c("Residual Standard Error","Multiple R-squared", "Adjusted R-squared", "F-statistic", "p-value"),
Value = c(Residual_standard_error,multiple_r_squared, adjusted_r_squared, f_statistic, p_value)
)
rest <- rbind(residuals_df,summary_df)
rest %>% kable(caption = "<strong style ='color:black;text-align: center;'> Table 1b Residuals & Summary Statistics of the Trend Model</strong>") %>%
kable_styling(c("striped", "bordered", "condensed"), full_width = FALSE) %>%
pack_rows("Residuals", 1,5, color = "black") %>%
pack_rows("Summary Statstic", 6, 9, color = "black")
```
**Coefficients:**
* *Intercept:*
* The estimated baseline incidence rate at the start of the time series was 1858.76 (p < 0.001), serving as a reference point despite not correspinding to a real value due to data starting in 2000.
* *Time:*
* The coefficient of -0.91779 indicates a significant annual decrease in malaria incidence by approximately 0.92 units (p < 0.001), highlighting a statistically significant downward trend.
**Residuals:**
The residuals range form -3.32 to 3.91, suggesting that while the model fits well, there are some unexplained variations.
**Model Fit:**
* *Residual Standard Error:*
* At 2.031, this value indicates a relatively good fit of the model.
* *Multiple R-squared:*
* The value 0.9077 suggest that the model explains about 90.77% of the variability in malaria incidence, demonstrating a strong fit.
* *Adjusted R-squared:*
* At 0.9033, this value confirms the model's robustness while accounting for the number of predictors.
* *F-statistics and P-value:*
* The value 206.6 of F-statitsics, with a *P-value* of 2.441e-12, indicates that the model is statistically significant overall.
##### **Forecasting with ARIMA :**
The application of the ARIMA model yielded the following findings:
**Residuals check:**
The residuals were analyzed , yielding the following results. Table.2 Residuals from ARIMA(0,1,0) with drift.
```{r, Figure_4 , echo = FALSE, fig.cap = "Figure 4: Residuals with Arima Model (0,1,0)", out.width = "60%", fig.align = "center", message = FALSE, warning = FALSE}
library(forecast)
pacman::p_load(kableExtra)
# Fit an ARIMA model
fit <- auto.arima(ts_India)
# step1: capture the output
a <- capture.output(checkresiduals(fit))
# Step 2: Extract relevant values
q_value <- sub("Q\\* = (.*), df.*", "\\1", a[5]) # Extract Q*
df_value <- sub(".*df = (\\d+).*", "\\1", a[5]) # Extract df value
p_value <- sub(".*p-value = (.*)", "\\1", a[5]) # Extract p-value
model_df <- sub("Model df: (.*)\\..*", "\\1", a[7]) # Extract Model df
total_lags <- sub(".*Total lags used: (.*)", "\\1", a[7]) # Extract Total lags
# Create a data frame
results_df <- data.frame(
Statistic = c("Q*", "Degrees of Freedom", "p-value", "Model df", "Total lags used"),
Value = c(
q_value, # Q* value
df_value, # df value
p_value, # p-value
model_df, # Model df
total_lags # Total lags used
),
stringsAsFactors = FALSE
)
# Display the results using kable
results_df %>%
kable(caption = "<strong style ='color:black;text-align: center;'> Table 2: Residuals from ARIMA (0,1,0) with drift</strong>", align = "c") %>%
kable_styling(c("striped","condensed","bordered"), full_width = TRUE)
```
**Q-statistics:**
The Q-statistics of 11.447 and p-value of 0.04321 indicates that there is some remaining autocorrelation in the residuals, suggesting that the model model may not fully capture the underlying structure of the data.
```{r, Figure_5 , echo = FALSE, fig.cap = "Figure 5: ACF and PACF Analysis.", out.width = "60%", fig.align = "center"}
par(mfrow = c(1,2))
acf(fit$residuals, main = "ACF analysis")
pacf(fit$residuals, main = "PACF Analysis")
```
**ACF & PACF Analysis:**
The ACF & PACF plots provided disgnostics insights into the model's fit, as seen in Figure 5. The ACF plot revealed minimal autocorrelation among the residuals across various time lags, with most points falling within the confidence interval. However, minor spikes, particularly at lag 1, suggest some residual autocorrelation though the overall effect is likely minimal. The PACF plot confirmed that most partial autocorrelation values lie within the confidence bounds, indicating no significant correlation remains among the residuals after accounting for previous lags. A small spike at lag 1 suggests potential short-term autocorrelation.
**Model Fit:**
Overall, the model effectively captured the underlying structure of the malaria incidence data, with residuals behaving largely like white noise. However, the minor autocorrelation at lag 1 suggests opportunities for model refinement.
```{r,Figure_6 , echo = FALSE, fig.cap = "Figure 6: Forecast of Malaria Incidence in India for next 5 years", fig.align = "center", out.width = "60%"}
# Forecast the next 5 years
forecast_result <- forecast(fit, h = 5)
# Plot the forecast
plot(forecast_result)
```
**Forecast for the Next Five Years:**
The forecasts for the upcoming years are illustrated in Figure 6 and summarized in the following Table 3. The projections indicate an estimated incidence of approximately 1.77 cases in 2023, declining to 0.99 cases in 2024, with further decreases projected for subsequent years, ultimately suggesting negative incidence values by 2026 and 2027. It is important to note that the wide confidence intervals associated with these forecasts reflect variability in the predictions, underscoring the inherent uncertainty in forecasting future malaria incidences.
```{r, Table_3, echo = FALSE}
pacman::p_load(kableExtra,knitr)
forecast_data <- as.data.frame(forecast_result)
# Add Year column
forecast_data$Year <- seq(from = 2023, by = 1, length.out = nrow(forecast_data))
row.names(forecast_data) <- c(seq(1:5))
forecast_data <- forecast_data %>% select(Year, everything())
# Create the table using kable
forecast_data %>% kable(caption = "<strong style ='color:black;text-align: center;'> Table 3: Forecast of Malaria Incidence in India for next five years</strong>",escape = FALSE, align = "c", ) %>%
kable_styling(c("striped","condensed","bordered"), full_width = TRUE) %>%
row_spec(0,bold = TRUE,color = "black", align = "center")
```
### **Discussion**
**LINEAR Regressions :**
The findings from the linear regression analysis provide valuable insights into the trends of malaria incidence rates in recent years. The observed annual decrease of approximately 0.92 units strongly suggests that the public health interventions implemented are making a positive impact on malaria control. This downward trend is not only encouraging but also aligns with global efforts to reduce malaria transmission, reinforcing the effectiveness of targeted health strategies.
Despite the model's ability to explains a substantial portion of the variability in malaria incidence, the residuals ranging from -3.32 to 3.91 indicate that there are still unexplained variations. These residuals may be influenced by factors such as local environmental conditions, socio-economic disparities, or variations in health service accessibility, which were not accounted for in the model. This highlights the complexity of malaria dynamics and the need for comprehensive approaches that address these underlying factors.
The high multiple R-squared value demonstrates the model's efficacy in explaining the observed data, while the adjusted R-squared confirms its robustness after considering the number of predictors. The strong F-statistic and its corresponding p-value reinforces the overall significance of the model, indicating that the predictors employed are indeed relevant to understanding malaria trends.
**ARIMA Model & Forecast:**
Transitioning to the ARIMA modeling and forecasting analysis, the results provides further insights into malaria incidence trends in India. The projected decline in malaria cases aligns with the positive impact of ongoing public health interventions. The model's effectiveness is evidenced by minimal autocorrelation observed in the ACF and PACF plots, suggesting that the fitted model adequately captures the temporal dynamics of malaria incidence.
However, the presence of statistically significant autocorrelation in the residuals indicates that some patterns remain unaccounted for. This suggests opportunities for refinement in the model, particularly concerning the minor autocorrelation observed at lag 1. Future model iterations could explore alternative specifications or additional predictors to enhance fit and predictive accuracy.
The forecasting results reveals a significant reduction in malaria incidence, with projections indicating a decline to negative values by 2026 and 2027. While these findings are encouraging, they necessitates cautious interpretation due to the wide confidence intervals that reflect inherent uncertainty. Continuous monitoring of malaria incidence trends and adaptive management strategies will be crucial for sustaining this positive trajectory and achieving malaria elimination goals by 2030.
Overall, the results underscore a significant downward trend in malaria incidence, aligning with India's public health initiatives aimed at malaria elimination. The study's findings suggest that current interventions are effective, yet ongoing efforts remain essential, particulary in high-burden regions. The data-driven approaches utilized in this analysis are vital for understanding and forecasting malaria trends, thereby supporting public health strategies aimed at achieving malaria eradication by 2030.
As India strives for malaria-free status by 2027, these findings emphasize the critical need for sustained public health interventions to overcome remaining challenges. The effective capture of historical patterns and projection of future trends through the ARIMA model highlighting the importance of ongoing monitoring and evaluation in the fight against malaria.
### **Conclusion**
This study provides a comprehensive analysis of malaria incidence in India over the past two decades, employing predictive time series modeling techniques to uncover significant trends. The findings reveal a marked downward trajectory in malaria cases, which underscores the positive impact of ongoing public health interventions. However, achieveing the ambitious goal of malaria eradication by 2030 will require Continued monitoring and the implementation of targeted strategies.
The analysis not only highlights the effectiveness of current malaria control efforts but also emphasizes the importance of ongoing research. Identifying and addressing the remaining factors contributing to variability in malaria incidence is essential for refining interventions. A nuanced understanding of these dynamics will be critical in enhancing the effectiveness of public health strategies and ensuring resource allocation is optimized.
In summary, this analysis reaffirms the efficacy of current public health initiatives in reducing malaria transmission while underscoring the necessity for continous research and model refinement. These efforts will be pivotal in sustaining progress towards malaria elimination and realizing a malaria-free future for India by 2030.
**Data Availability:**
The dataset used in this study are available from World Health Oraganization website.(2)
**Source Code:**
The source code for this study is available at [GitHub/Dr-A-Soni.](https://github.com/Dr-A-Soni/Malaria_Incidence_Trends)
### **Reference:**
1. World Health Organization. Malaria. [Online]. Available at: <https://www.who.int/india/health-topics/malaria> (Accessed: 19 September 2024).
2. World Health Organization 2024 data.who.int, Malaria incidence (per 1000 population at risk) [Indicator]. <https://data.who.int/indicators/i/B868307/442CEA8> (Accessed on 19 September 2024).
3. World Health Organization. 2023. World Malaria Report 2022. Geneva: World Health Organization. <https://www.who.int/publications/i/item/9789240086173> (Accessed on 19 September 2024).
4. World Health Organization. "Southeast Asia Region Malaria Progress Report." <https://www.who.int/docs/default-source/wrindia/malaria/sear-progress-report-ind.pdf?sfvrsn=6f754bf7_2> (Accessed September 23, 2024).