!pip install pandas
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
data = pd.DataFrame([[2,20],[4,40],[8,80],[9,90]],
index=['예진','해도','세연','명진'],
columns=['공부시간','성적'])
def MSE(data,target,weight):#문제, 정답, 가중치
y_pre=h(weight,data)#예측값
return ((y_pre-target)**2).mean()
확인하기
0에 가까워질수록 정확하다.
시각화하기
weight_arr = np.linspace(0,20,50)
weight_arr
c_list=[]#MSE을 담아둘 리스트
for w in weight_arr :
c = MSE(data['공부시간'],data['성적'],w)
c_list.append(c)
plt.plot(weight_arr, c_list, marker="*")#라인그래프
plt.show()