Student Performance Prediction
A dummy dataset of 40,000 student data
@kaggle.souradippal_student_performance_prediction
A dummy dataset of 40,000 student data
@kaggle.souradippal_student_performance_prediction
This dataset is designed for practicing classification tasks, specifically predicting whether a student will pass or fail a course based on various academic and demographic factors. It contains 40,000 records of students, with attributes including study habits, attendance rates, previous grades, and more. The dataset also introduces challenges such as missing values, incorrect data, and noise, making it ideal for practicing data cleaning, exploratory data analysis (EDA), and feature engineering.
CREATE TABLE student_performance_prediction (
"student_id" VARCHAR,
"study_hours_per_week" DOUBLE,
"attendance_rate" DOUBLE,
"previous_grades" DOUBLE,
"participation_in_extracurricular_activities" VARCHAR,
"parent_education_level" VARCHAR,
"passed" VARCHAR
);Anyone who has the link will be able to view this.