Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fahrettinsolak/ai-based-salary-scale-calculation-project

This project demonstrates a Polynomial Regression model using a dataset related to experience and salary. The model is built using Python with the pandas, matplotlib, and sklearn libraries. The dataset includes information on years of experience and corresponding salary.
https://github.com/fahrettinsolak/ai-based-salary-scale-calculation-project

artificial-intelligence deep-learning jupyter-notebook machine-learning matplotlib pandas pyhton scikit-learn

Last synced: 7 days ago
JSON representation

This project demonstrates a Polynomial Regression model using a dataset related to experience and salary. The model is built using Python with the pandas, matplotlib, and sklearn libraries. The dataset includes information on years of experience and corresponding salary.

Awesome Lists containing this project

README

        

# AI-Based-Salary-Scale-Calculation-Project

## Polynomial Regression Model

This project demonstrates a Polynomial Regression model using a dataset related to experience and salary. The model is built using Python with the `pandas`, `matplotlib`, and `sklearn` libraries. The dataset includes information on years of experience and corresponding salary.

## Project Structure

- `polynomial.csv`: The dataset used for training the model.
- `polynomial_regression.py`: Python script implementing the model.
- `README.md`: Explanation of the project and instructions for use.

## Dataset

The dataset (`polynomial.csv`) contains the following columns:

- `Experience`: Years of work experience
- `Salary`: Salary corresponding to the experience (in local currency)

Example data:

| Experience | Salary |
|------------|---------|
| 1 | 4500 |
| 2 | 5000 |
| 3 | 6000 |
| 4 | 8000 |
| 5 | 11000 |

## Dependencies

To run this project, you will need the following Python libraries:

- `pandas`
- `matplotlib`
- `scikit-learn`

You can install these packages using pip:

```bash
pip install pandas matplotlib scikit-learn