Student Performance Dataset
A cleaned dataset containing academic and demographic factors influence
@kaggle.rutaba393_student_performance_dataset
A cleaned dataset containing academic and demographic factors influence
@kaggle.rutaba393_student_performance_dataset
This dataset contains information on academic, behavioral, and demographic factors that influence student exam performance. It is designed to support exploratory data analysis and baseline machine learning tasks related to educational outcomes.
The dataset includes variables such as study hours, attendance, previous academic scores, parental involvement, access to learning resources, motivation level, and lifestyle factors. The primary target variable is Exam_Score, which represents the final academic performance of students.
This cleaned version of the dataset has been preprocessed to handle missing values, remove inconsistencies, and prepare the data for statistical analysis and machine learning modeling. It is suitable for regression analysis, feature importance studies, and educational data science projects.
CREATE TABLE studentperformancefactors (
"hours_studied" BIGINT,
"attendance" BIGINT,
"parental_involvement" VARCHAR,
"access_to_resources" VARCHAR,
"extracurricular_activities" VARCHAR,
"sleep_hours" BIGINT,
"previous_scores" BIGINT,
"motivation_level" VARCHAR,
"internet_access" VARCHAR,
"tutoring_sessions" BIGINT,
"family_income" VARCHAR,
"teacher_quality" VARCHAR,
"school_type" VARCHAR,
"peer_influence" VARCHAR,
"physical_activity" BIGINT,
"learning_disabilities" VARCHAR,
"parental_education_level" VARCHAR,
"distance_from_home" VARCHAR,
"gender" VARCHAR,
"exam_score" BIGINT
);Anyone who has the link will be able to view this.