Machine Learning (Simple Linear Regression) using phyton
# Importing the libraries
import numpy as np
import [Link] as plt
import pandas as pd
# Importing the dataset
dataset = pd.read_csv('[Link]') #baca dataset salary
X = [Link][:, :-1].values
y = [Link][:, 1].values
# Splitting the dataset into the training set and test set
from sklearn.cross_validation import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 1/3, random_state = 0)
# Fitting Simple Linear Regression terhadap Training set
from sklearn.linear_model import LinearRegression
regressor = LinearRegression()
[Link](X_train, y_train)
# Predicting the test set
y_pred = [Link](X_test)
# Visualising the training set results
[Link](X_train, y_train, color = 'red')
[Link](X_train, [Link](X_train), color = 'blue')
[Link]('Salary vs experience (Training set)')
[Link]('Years of Experience')
[Link]('Salary')
[Link]()
# Visualising the test set results
[Link](X_test, y_test, color = 'red')
[Link](X_train, [Link](X_train), color = 'blue')
[Link]('Salary vs experience (Test set)')
[Link](Years of Experience')
[Link]('Salary')
[Link]()