-
Notifications
You must be signed in to change notification settings - Fork 101
/
n階擬合函式-02.py
62 lines (46 loc) · 1.55 KB
/
n階擬合函式-02.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import numpy as np
import matplotlib.pyplot as plt
import scipy as sp
# 讀入資料
data=np.genfromtxt('web_traffic.tsv', dtype="i", delimiter='\t', usecols=(0,1), unpack=True)
# 整理資料
data=np.transpose(data)
data=data[data[:,1]>0]
# 待繪製的資料
x=data[:,0]
y=data[:,1]
# 找出趨近測試資料的1階線性方程式
fp1, residuals, rank, sv, rcond=sp.polyfit(x, y, 1, full=True)
fp2, residuals, rank2, sv2, rcond2=sp.polyfit(x, y, 2, full=True)
fp3, residuals, rank3, sv3, rcond3=sp.polyfit(x, y, 3, full=True)
# 設定字型及大小
plt.rcParams['font.sans-serif']=['SimHei']
plt.rcParams['font.size'] = 14
# 設定圖標題
fig, ax = plt.subplots()
ax.set_title('網路流量')
# 設定x軸及y軸標題
plt.xlabel('日期')
plt.ylabel('每小時用量')
# 線性方程式
f1=sp.poly1d(fp1)
f2=sp.poly1d(fp2)
f3=sp.poly1d(fp3)
# 印出誤差
print(f1.order, '階-', '誤差:', sp.sum((f1(x)-y)**2))
print(f2.order, '階-', '誤差:', sp.sum((f2(x)-y)**2))
print(f3.order, '階-', '誤差:', sp.sum((f3(x)-y)**2))
#傳回1000個(從0到x元素個數), 間隔相同的數
fx=sp.linspace(0, x[-1], 1000)
# 將產生的數一個個代入線性方程式, 並畫在圖上
plt.plot(fx, f1(fx), linewidth=4)
plt.plot(fx, f2(fx), linewidth=4)
plt.plot(fx, f3(fx), linewidth=4)
# 產生左上角的標籤說明
plt.legend(["d=%i" % f1.order, "d=%i" % f2.order, "d=%i" % f3.order], loc="upper left")
# 將測試資料畫在圖上
plt.scatter(x, y)
# 畫出格線
plt.grid()
# 顯示圖表
plt.show()