반응형
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 |
Tags
- 결합전문기관
- 재귀함수
- discrete_scatter
- java역사
- CES 2O21 참가
- mglearn
- 대이터
- cudnn
- Keras
- tensorflow
- CES 2O21 참여
- web 용어
- web
- 자료구조
- broscoding
- web 사진
- 데이터전문기관
- pycharm
- KNeighborsClassifier
- html
- web 개발
- inorder
- C언어
- bccard
- vscode
- classification
- postorder
- 머신러닝
- 웹 용어
- paragraph
Archives
- Today
- Total
bro's coding
sklearn.linearRegression. basic 본문
반응형
X=iris.data[:,:3]
# 만약 X=iris.data[:,3] 이렇게 넣으면 차원이 맞지 않는다.
# ex) error : x=[1,2,3] ->
# sol1 ) X=[[1],[2],[3]]
# sol2 ) X=iris.data[:,[2]]
# sol3 ) X=iris.data[:,2].reshape(-1,1)
# because : X는 2차원 형태여야 한다.
y=iris.data[:,3]
from sklearn.model_selection import train_test_split
X_train,X_test,y_train,y_test=train_test_split(X,y)
from sklearn.linear_model import LinearRegression
model=LinearRegression()
model.fit(X_train,y_train)
pred_y=model.predict(X_test)
model.score(X_test,y_test)
import matplotlib.pyplot as plt
plt.scatter(pred_y,y_test,c=y_test)
plt.plot([0,3],[0,3],'r:')
plt.xlabel('pred_y')
plt.ylabel('test_y')
# 원본에 대한 비율
import matplotlib.pyplot as plt
plt.scatter(pred_y,pred_y/y_test,c=y_test)
plt.xlabel('pred_y')
plt.ylabel('test_y')
plt.hlines(1,0,pred_y.max(),linestyle=':')
index=np.argsort(y_test)
plt.plot(y_test[index],'bo:',alpha=0.3)
plt.plot(pred_y[index],'ro:',alpha=0.3)
plt.legend(['test_y','pred_y'])
model.coef_ # u= ax+by+cz > (a,b,c) 와 비슷한 개념(가중치, 기울기)
# array([-0.23392987, 0.24854725, 0.53728789])
model.intercept_# u= ax+by+cz > (u) 와 비슷한 개념(절편)
# -0.2123844501296439
반응형
'[AI] > python.sklearn' 카테고리의 다른 글
sklearn.datasets .make_blobs 사용하기 (0) | 2020.04.13 |
---|---|
sklearn.linear regression.다차원(wine)등급 예상하기(정규화) (0) | 2020.04.10 |
sklearn.linear regression.꽃종류 별 회귀 선 그리기 (0) | 2020.04.10 |
sklearn.linear regression 회귀 선 그리기 (0) | 2020.04.09 |
sklearn.영향력 없는 column 찾기(knn) (0) | 2020.04.09 |
sklearn.matplotlib로 knn표현하기 (0) | 2020.04.09 |
sklearn.knn.KNeiborsClassifier(K값 변화에 따른 score 관찰) (0) | 2020.04.09 |
sklearn.knn.KNeiborsClassifier(K값 변화에 따른 결과 관찰) (0) | 2020.04.09 |
Comments