Analyze student academic performance and identify demographic and educational factors that influence math, reading, and writing scores.
Students Performance in Exams dataset from Kaggle.
Features:
- gender
- race/ethnicity
- parental level of education
- lunch
- test preparation course
- math score
- reading score
- writing score
- Python
- Pandas
- NumPy
- Matplotlib
- Seaborn
Student-Performance-Analysis/ ├── Data/ ├── Notebooks/ ├── Images/ ├── Report.pdf ├── README.md
- Loaded and inspected the dataset
- Handled missing values and duplicates
- Encoded categorical variables (gender, parental education)
- Performed exploratory data analysis (EDA)
- Created visualizations
- Extracted actionable insights
- Math, reading, and writing scores are strongly correlated
- Parental education has a limited but positive impact on scores
- Gender-based performance differences vary by subject
- Reading and writing scores show higher alignment than math
Student performance is influenced more by subject relationships and preparation factors than by demographic attributes alone. Educational interventions should focus on balanced skill development rather than isolated subjects.


