Student Marks Dataset
Student Marks Prediction - Regression Problem
@kaggle.yasserh_student_marks_dataset
Student Marks Prediction - Regression Problem
@kaggle.yasserh_student_marks_dataset
The data consists of Marks of students including their study time & number of courses. The dataset is downloaded from UCI Machine Learning Repository.
Properties of the Dataset:
Number of Instances: 100
Number of Attributes: 3 including the target variable.
The project is simple yet challenging as it is has very limited features & samples. Can you build regression model to capture all the patterns in the dataset, also maitaining the generalisability of the model?
CREATE TABLE student_marks (
"number_courses" BIGINT,
"time_study" DOUBLE,
"marks" DOUBLE
);Anyone who has the link will be able to view this.