Car_Price_Prediction_Using_Linear-Regression

🚗 Car Price Prediction using Machine Learning

This project predicts the selling price of a used car based on features such as year, fuel type, kilometers driven, seller type, and more.

📂 Files Included

🧠 Model Overview

📈 Example Prediction

new_data = np.array([[2018, 8.5, 25000, 0, 1, 1]])  # Encoded input
scaled = scaler.transform(new_data)
price = model.predict(scaled)
print("Predicted Price:", price)

✅ Requirements

Install them using:

pip install -r requirements.txt

📌 How to Use

  1. Clone the repo:
    git clone https://github.com/yourusername/Car-Price-Prediction.git
    
  2. Open Car_Price_Prediction.ipynb to train the model or understand the process.

  3. Use testing_on_newdata.ipynb to test the model on unseen data.

👨‍💻 Author