Objective Finding a pattern of association among the indicators of the given dataset using numerical association rules which are generated via genetic algorithm Data collection and preparation For this project, we will use the SDG 5 dataset of the United Nations. This Dataset is cleaned and pre-processed. All the parameters of this dataset are renamed to I1, I2, I3, and so on. for ease of doing data analysis. EDA 1. Understanding the makeup of the data 2. Understanding the Correlation between different parameters 3. Box Plots Numerical rules generation using genetic algorithm For this purpose, we will use quantminer After the rules are generated, I copy them to a Text file. This is what the text file looks like - 1. support = 34 (91%) , confidence = 100 % : I1 in [12.1; 115.2] --> I2 in [0.0; 958.0] 2. support = 35 (94%) , confidence = 100 % : I2 in [0.0; 941.0] --> I1 in [4.1; 177.8] 3....