반응형
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
- java역사
- vscode
- broscoding
- web 사진
- cudnn
- 대이터
- 재귀함수
- html
- bccard
- 데이터전문기관
- web 용어
- CES 2O21 참여
- postorder
- CES 2O21 참가
- mglearn
- web
- 자료구조
- classification
- pycharm
- web 개발
- 결합전문기관
- paragraph
- 웹 용어
- Keras
- tensorflow
- C언어
- 머신러닝
- inorder
- KNeighborsClassifier
- discrete_scatter
Archives
- Today
- Total
bro's coding
머신러닝.상관계수 구하기 본문
반응형
import numpy as np
import matplotlib.pyplot as plt
#data 준비
from sklearn.datasets import load_breast_cancer
cancer=load_breast_cancer()
col1=0
col2=3
X=cancer.data[:,col1]
y=cancer.data[:,col2]
corr=((X-X.mean())*(y-y.mean())).mean()/(X.std()*y.std())
# 0.9873571700566123
np.corrcoef(X.T,y)
# array([[1. , 0.98735717],
[0.98735717, 1. ]])
from sklearn.linear_model import LinearRegression
X=cancer.data[:,[col1]]
y=cancer.data[:,col2]
model=LinearRegression()
model.fit(X,y)
X=cancer.data[:,col1]
plt.scatter(X,y,c=cancer.target)
xxx=[X.min()-.5,X.max()+.5]
yyy=model.coef_*xxx+model.intercept_
plt.plot(xxx,yyy,':r')
display(model.coef_,model.intercept_,corr)
# array([98.59821922])
# -738.036704195749
# 0.9873571700566123
반응형
'[AI] > python.sklearn' 카테고리의 다른 글
sklearn.svm.SVC(kernel 기법) (0) | 2020.04.16 |
---|---|
sklearn.svm.LinearSVC.kernel 기법(타원형 데이터) (0) | 2020.04.16 |
sklearn.kernel 기법 기초 (0) | 2020.04.16 |
머신러닝.make_circles 사용하기 (0) | 2020.04.16 |
머신러닝.Pearson correlation coefficient(피어슨 상관 계수) (0) | 2020.04.14 |
머신러닝.linearSVM(class:3) (0) | 2020.04.14 |
머신러닝.model 정리 (0) | 2020.04.14 |
머신러닝.Linear SVM(선형 서포트벡터머신) 기초 (0) | 2020.04.14 |
Comments