質問編集履歴
1
文字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
plt.scatter(x,y)
|
26
26
|
|
27
|
-
plt.plot(x,lin.predict(x))
|
27
|
+
plt.plot(x,lin.predict(x)) ##本来はデータを分けて予測しますが、今回は全データ突っ込んでるので、雰囲気だけで回帰直線
|
28
28
|
|
29
29
|
plt.plot(x,np.sin(x))
|
30
30
|
|