This repository is used to predict the salary of the employees with their experience.
This is my first day and Iam learning about Simple Linear Reggression.
- Need to learn about DataFrames in pandas
- Need to learn about StandardScaler
- It uses "sklearn.linear_model" to generate the model
from sklearn.linear_model import LinearRegression
regressor = LinearRegression()
regressor.fit(X_train, Y_train)
MIT Free Software, Hell Yeah!