Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- NumPy
- 자료구조
- 알고리즘
- programmers
- python
- MySQL
- 알고리즘스터디
- 프로그래머스
- String Method
- pandas
- Matplotlib
- queue
- javascript
- 파이썬
- 데이터시각화
- 노마드코딩
- 가상환경
- Stack
- Selenium
- Join
- aws jupyter notebook
- 코딩테스트
- 선그래프
- Algorithm
- type hint
- 알고리즘 스터디
- 백준
- dataframe
- 정보처리기사 c언어
- openCV
Archives
- Today
- Total
목록다항회귀 (1)
조금씩 꾸준히 완성을 향해
[Sklearn] 선형 회귀(Linear Regression), 다항 회귀(Polynoimal Regression), 규제(Ridge, Lasso)
선형 회귀 (Linear Regression) # 농어의 길이, 무게 확인 import matplotlib.pyplot as plt plt.scatter(perch_length, perch_weight) plt.xlabel('length') plt.ylabel('weight') plt.show() # 훈련, 테스트 세트 나누기 from sklearn.model_selection import train_test_split train_input, test_input, train_target, test_target = train_test_split( perch_length, perch_weight, random_state=42) # 1차원 배열 => 2차원 배열 train_input = train_input...
AI/Machine Learning
2022. 10. 28. 00:11