This tool provides a set of visualizations for analyzing data from the INSPIRE MANAK 2023 project The data is taken from data.gov.in for the year 2023.
- Participants per State (Pie Chart): Visualizes the distribution of participants across different states.
- Participants per District (Bar Chart): Shows the number of participants from each district.
- Gender-wise Participation (Pie Chart): Displays the proportion of male and female participants.
- Scholarship Amount per Category (Bar Chart): Compares the scholarship amounts awarded to different categories.
- Students per Grade/Class (Bar Chart): Illustrates the number of students in each grade or class.
-
Prerequisites:
- Python 3.x
- Libraries: pandas, numpy, matplotlib
pip install pandas numpy matplotlib
-
Running the Tool:
python src/main.py
The script reads data from
assets/INSPIRE_MANAK.csv. Ensure this file exists in theassetsdirectory relative to the script's location.
.
├── assets
│ └── INSPIRE_MANAK.csv # CSV data file
├── src
│ └── main.py # Main script with analysis and menu
├── analysis_functions.py # Helper functions for generating plots
└── README.md # This file
After running the script, a menu will appear in the console. Enter the number corresponding to the desired plot to display it. Enter 0 to exit.
- The quality of the visualizations depends on the data in
INSPIRE_MANAK.csv. - Ensure that the required libraries are installed before running the script.