일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 코딩애플
- 크롤링
- 유데미
- 선형회귀
- 피플
- 크롤러
- pytorch
- mnist
- 선형대수학
- 앱개발
- Flutter
- filtering
- CV
- 머신러닝
- 회귀
- RNN
- 자연어처리
- AI
- 42경산
- 42서울
- Computer Vision
- 플러터
- 인공지능
- 파이썬
- 모델
- 딥러닝
- 지정헌혈
- Regression
- 데이터분석
- map
Archives
- Today
- Total
David의 개발 이야기!
[파트2 섹션6] 단순회귀 Simple Regression 본문
반응형
Simple Linear Regression
단순회귀를 적용하는 방법을 알아보고, 연차별 임금 예측 모형을 만들어보자!
1. 라이브러리 호출하기
Importing the libraries
2. 데이터셋 불러오기
Importing the dataset
3. 훈련세트와 테스트 세트로 나누기
Splitting the dataset into the Training set and Test set
4. 단순선형회귀모델에 학습시키기
Training the Simple Linear Regression model on the Training Set
5. 테스트 세트 결과 예측하기
Predicting the Test set results
6. 결과 시각화하기
Visualizing the Training set and the Test set Results
각각 단계에 맞는 코드를 확인해보자
1. Importing the libraries
import numpy as np
import pandas as pd
import matplotlib as plt
2. Importing the dataset
dataset = pd.read_csv("----")
x = dataset.iloc[:,:-1].values
y = dataset.iloc[:,-1].values
3. Splitting the dataset into the Training set and Test set
from sklearn.model_selection import train_test_split
x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.2, random_state=1)
4. Training the Simple Linear Regression model on the Training set
from sklearn.linear_model import LinearRegression
regressor = LinearRegression()
regressor.fit(x_train, y_train)
regression.fit 이 부분에서 x_train, y_train 훈련데이터로 모델 학습이 이뤄진다!
5. Predicting the Test set results
y_pred = regressor.predict(x_test)
6. Visualizing the Training set and the Test set Results
6-1 Visualizing the Training set
plt.scatter(x_train, y_train, color='red')
plt.plot(x_train, regressor.predict(x_train), color='blue')
plt.title('Salary VS Experience(Train set)')
plt.xlabel('Years of Experiece')
plt.ylabel('Salary')
plt.show()
plt.scatter : 점을 찍어줌
plt.plot : 그래프를 그려줌
plt.title : 제목을 적게 해줌
plt.xlable : x축명을 적을 수 있음
plt.ylabel : y축명을 적을 수 있음
6-2 Visualizing the Test set
plt.scatter(x_test, y_test, color='red')
plt.plot(x_train, regressor.predict(x_train), color='blue')
#여기에 x_train 이 들어간건, 훈련데이터를 통해 모델을 학습시켰기 때문이다!
plt.xlabel('Years of Experience')
plt.ylabel('Salary')
plt.show()
반응형
'Udemy Python Machine Learning A-Z' 카테고리의 다른 글
SVR 서포트벡터머신 체험하기! (0) | 2022.09.14 |
---|---|
Polynomial Regression 다항회귀에 대해 알아보자! (0) | 2022.09.12 |
[ 파트2 섹션7 ] Multiple Linear Regression 다중선형회귀에 대해 알아보자! (0) | 2022.09.11 |
데이터 전처리 fit, fit_transform, transform의 개념 익히기! (0) | 2022.09.09 |
[Part1, Section 4] Data Preprocessing 데이터 전처리 (2) | 2022.09.07 |
Comments