Machine Learning Pycaret : Improve Math Score in Institutes

Muhammad Ammar Jamshed 05 Jul, 2022 • 5 min read

This article was published as a part of the Data Science Blogathon.

Introduction

Academia is the integral coaching zone for humanity’s future talent and the development of new approaches toward our survival as human species in terms of task execution and thinking. The academic score is an indicator used for performance assessment and management by schools and institutions, where rank and scale student talent and ability.

Data Context

We first see all the variables in the dataset and which variables we need for targets and their related attributions towards generating a prediction correctly. We have to use relatable and dependent variables toward a predictive outcome.

math score

We can see that our dataset has multiple dependent and independent variables which showcase academic workflow and social and motivational influencing factors towards.

Our goal with the dataset is to predict the future math scores and related variables to see its interactive expedition.

Model Stage

Educational Model

We will choose ‘math score’ as our target variable against all remaining variables to get the correct prediction with a 30% Split. We will use 70% training and 30% testing(unseen) data for predictive accuracy.

machine learning

We can see above that math score is linearly influenced by reading and writing scores showing students who are good at reading and writing can also learn maths at a good pace.

We first transform all categorical variables using a label encoder to make it easier for Machine Learning modeling to detect inputs and give outputs. As shown below:

Math Score

As shown above, our inputs have transformed into a readable format for ML algorithms.

We feed our transformed data into Pycaret algorithms and get model recommendations below.

Our model choices from the list above are:

  • One class SVM(svm)
  • Isolation forest(forest).
  • Principal Component Analysis(PCA).

They are the best choices for accounting outliers into our data fitting and forecasting datasets with accuracy even if the linear data becomes non-linear at any point of the journey and help us identify and reduce those irrelevant data points to achieve accuracy in predictions as math scores involve grading beyond percentile levels and can create anomalies.

IOF Model machine learning

IOF Model

SVM Model machine learning
SVM Model
PCA model machine learning
PCA Model

We can see Linear relationships in all three model visualizations. We choose PCA as our best predictive approach amongst all three as data shows best fitted in it with anomalies accounted.

 

Score relevance

After conducting our Exploratory analysis of our PCA model predictions generated, we can create insights for education strategy development to improve math scores earnt by students.

machine learning

We can see that males are getting better-predicted grades for maths than females, which might demotivate females from improved scores. Thus, extra classes for maths need to be provided to females at their discretion to allow them to improve without demotivation.

machine learning

We have to identify Group D as they are showing the best predictive math scores so they can help other groups in math teaching assistance.

machine learning model

We are noticing that female parents are showing higher predicted levels of education. However, in terms of math scores, males still receive more grades at the top quartile, thus showing that cultural factors or promoting male education at Home and School may be the outer influencing variable behind it.

Modeling Machine Learning life cycle Programming

Dataset is available in the below link:
StudentPerformanceDataset

import missingno as mn
mn.heatmap(df)


# We Fill in the missing values based on the relationships above.
#we can see that missing values are not at random
# Machine Learning model

import seaborn as sns
from matplotlib import pyplot as plt

sns.pairplot(df)

from sklearn.preprocessing import OneHotEncoder, LabelEncoder

#tranform variables:

#gender
#race/ethnicity
#parental level of education
#lunch
#test preparation course

#Label encoding on categorical variables
encoder = LabelEncoder()

#perform encoding on 'team' column
df['gender']= encoder.fit_transform(df[['gender']])

#perform encoding on 'race' column
df['race/ethnicity']= encoder.fit_transform(df[['race/ethnicity']])

#perform encoding on 'education level' column
df['parental level of education']= encoder.fit_transform(df[['parental level of education']])

#perform encoding on 'lunch' column
df['lunch']= encoder.fit_transform(df[['lunch']])

#perform encoding on 'test prep' column
df['test preparation course'] = encoder.fit_transform(df[['test preparation course']])

df.head()

## We can see linear relationships amongst our variables

# especially how math is related to reading and writing
# We check our approach using Pycaret
# Lets do it

!pip install pycaret
!pip install markupsafe==2.0.1

# we set our math SAT score as target variable

X = df
y = df['math score']

from pycaret.anomaly import *

### we divide the data into a 30 % split in seen(train) and unseen(test)

data = X.sample(frac=0.70, random_state=700)
data_unseen = X.drop(data.index)
data.reset_index(drop=True, inplace=True)
data_unseen.reset_index(drop=True, inplace=True)

print('Data for Modeling: ' + str(data.shape))
print('Unseen Data For Predictions: ' + str(data_unseen.shape))

exp_ano101 = setup(data, normalize = False, session_id = 123, log_experiment = False)

models()

## lof Local Outlier Factor, pyod.models.lof.LOF,
## svm One-class SVM detector pyod.models.ocsvm.OCSVM,
## pca Principal Component Analysis pyod.models.pca.PCA
# Will be the model we will test

# Local Outlier Factor

Local_Outlier_Factor = create_model('lof')
Local_Outlier_Factor_results = assign_model(Local_Outlier_Factor)
Local_Outlier_Factor_results
plot_model(Local_Outlier_Factor)

# One-class SVM

One_class_SVM = create_model('svm')
One_class_SVM_results = assign_model(One_class_SVM)
One_class_SVM_results

plot_model(One_class_SVM)

# Principal Component Analysis

PCA = create_model('pca')
PCA_results = assign_model(PCA)
PCA_results

plot_model(PCA)

# Predictions

predictions = predict_model(PCA,data_unseen)
predictions

#Output Analysis

ax = sns.barplot('gender', 'math score', errcolor='w', capsize=0.1, data=data_unseen)
ax = sns.barplot('race/ethnicity', 'math score', errcolor='w', capsize=0.1, data=data_unseen)
sns.scatterplot('parental level of education','math score', hue='gender', s =30, edgecolor='none', data=data_unseen);


Conclusion

Project Success

We were able to get an analysis of the Female grading and model predictions of it and insight into cultural trends in our education settings.

With the implementation and analysis of our machine learning workflow above, we can:

  • Create Improvement plans for female academic performance in classrooms.
  • Do awareness sessions on education and the importance of meritocracy in bridging the gap between success likelihood between males and females.
  • Invest in a gender-neutral curriculum and encourage females in STEM-based subject selection as we can see higher rates of male performance within it.

Project Implementation process

To implement machine learning workflow at any institute, we need to follow a particular sequence of steps, including pilot testing and feasibility study, which include:

  1. Conduct data analysis on the ratio of school genders.
  2. Check academic success records of female and male students and other recognized genders in school settings.
  3. Check which gender lacks Academic success.
  4. Sign an agreement between the Institute and the implementor regarding data migration and usage.
  5. Ensure all ethical guidelines are met on the dataset used.
  6. Feature engineer the variables “gender”, “race/ethnicity”, “parental level of education”, “lunch”,”test preparation course”, “math score”, “reading score”, “writing score”.
  7. Run the model on the data and see if it needs cross-validation for more improvement.
  8. Deploy it on the Institute’s cloud server or local machines once the test run is successful with the stakeholder’s agreement.

The media shown in this article is not owned by Analytics Vidhya and is used at the Author’s discretion.

Frequently Asked Questions

Lorem ipsum dolor sit amet, consectetur adipiscing elit,

Responses From Readers

Clear

Machine Learning
Become a full stack data scientist