This project applies Linear Regression to predict placement outcomes using features from the placement.csv
dataset available on Kaggle.
The dataset used in this project is sourced from Kaggle and contains information about student academic performance and placement outcomes.
- Features include: academic scores, work experience, specialization, etc.
- Target variable: salary or placement status.
- Python π
- Pandas & NumPy
- Matplotlib & Seaborn (for visualization)
- Scikit-Learn (for model training and evaluation)
-
Data Loading
Load and explore the dataset. -
Preprocessing
- Handle missing values
- Encode categorical variables
- Split into training and test sets
-
Modeling
- Apply Linear Regression
- Evaluate using metrics like RΒ², MAE, MSE
-
Visualization
- Plot regression line
- Visualize residuals and performance