1.1用圖表分析單變數資料
阿新 • • 發佈:2018-12-12
單變數:表示式、方程式、函式或者一元多項式等
一、獲取資料
本次使用到的資料量並不多,不過還是按照常規思路,通過爬蟲獲取。
1 import urllib.request
2 import re
3
4
5 def crawler(url):
6 headers = {
7 "User-Agent": "Mozilla/5.0 (X11; U; Linux x86_64; zh-CN; rv:1.9.2.10) Gecko/20100922 Ubuntu/10.10 (maverick) Firefox/3.6.10"
8 }
9 req = urllib.request.Request(url, headers=headers)
10 response = urllib.request.urlopen(req)
11
12 html = response.read().decode('utf-8')
13 print(type(html))
14
15 pat = r'<tr align="center">(.*?)</tr>'
16 re_html = re.compile(pat, re.S) # re.S可以使匹配換行
17 trslist = re_html.findall(html) # 匹配出每條資訊的資料
18
19 x = []
20 y = []
21 for tr in trslist:
22 re_i = re.compile(r'<div align="center">(.*?)</div>', re.S)
23 i = re_i.findall(tr)
24 x.append(int(i[1].strip())) # 從每條資料中取出所需要的兩個資料年份和訴求數量
25 y.append(int(i[2].strip()) if i[2] != '' else 0) # 當匹配到空字串時就是資料缺失部分,用0代替
26 print(x,y) # 檢視結果發現第一組和第四組資料有誤,看原始碼發現他們兩個的分類名不是使用的center標籤,為了簡便,手動新增這兩個資料
27 x[0] = 1946
28 y[0] = 41
29 x[3] = 1949
30 y[3] = 28
31 return x, y
32
33 url = "http://www.presidency.ucsb.edu/data/sourequests.php"
34 x, y = crawler(url)
得到的資料:
x:[41, 1947, 1948, 28, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997] y:[16, 23, 16, 17, 20, 11, 19, 14, 39, 32, 0, 14, 0, 16, 6, 25, 24, 18, 17, 38, 31, 27, 26, 17, 21, 20, 17, 23, 16, 13, 13, 21, 11, 13, 11, 8, 8, 14, 9, 7, 5, 5, 54, 34, 18, 20, 27, 30, 22, 25, 19, 26]
二、繪製圖形觀察趨勢
1 import numpy as np
2 import matplotlib.pyplot as plt
3 from matplotlib.pylab import frange
4
5 plt.figure(1)
6 plt.title("All data")
7 plt.plot(x, y, 'ro')
8 plt.xlabel('year')
9 plt.ylabel('No Presedential Request')
根據獲取到的資料繪製出散點圖,觀察其分佈情況,發現有一個極大的異常點,和兩個為零的異常點(獲取資料時的缺失值,預設填充為0).
三、計算百分位數
1 # 使用numpy中的求分位數函式分別計算
2 perc_25 = np.percentile(y, 25)
3 perc_50 = np.percentile(y, 50)
4 perc_75 = np.percentile(y, 75)
5 print("25th Percentile = %.2f" % perc_25)
6 print("50th Percentile = %.2f" % perc_50)
7 print("75th Percentile = %.2f" % perc_75)
8
9 '''
10 結果:
11 25th Percentile = 13.00
12 50th Percentile = 18.50
13 75th Percentile = 25.25
14 '''
上面已經求得各分位數值,分別在圖中畫出來,為了在上面原始圖中畫出,要放在一起執行:
1 # 在圖中畫出第25、50、75位的百分位水平線
2 # ----------------------------------------
3 plt.figure(1)
4 plt.title("All data")
5 plt.plot(x, y, 'ro')
6 plt.xlabel('year')
7 plt.ylabel('No Presedential Request')
8 # ----------------------------------------
9 plt.axhline(perc_25, label='25th perc', c='r')
10 plt.axhline(perc_50, label='50th perc', c='g')
11 plt.axhline(perc_75, label='75th perc', c='m')
12 plt.legend(loc='best')
四、檢查異常點
1 # 檢查生成的圖形中是否有異常點,若有,使用mask函式將其刪除
2 # 0是在起初獲取資料時候的缺失值的填充,根據影象看到y=54的點遠遠高出其他,也按異常值處理
3 y = np.array(y) # 起初發現y為0的點沒有被刪掉,考慮到他是對陣列進行隱藏,而本來的y是個列表,因此又加了這一句,果然去掉了兩個零點
4 y_masked = np.ma.masked_where(y==0, y)
5 y_masked = np.ma.masked_where(y_masked==54, y_masked)
6 print(type(y),type(y_masked))
7
8 '''
9 <class 'numpy.ndarray'> <class 'numpy.ma.core.MaskedArray'>
10 '''
重新繪製圖像:
1 # 重新繪製圖像
2 plt.figure(2)
3 plt.title("Masked data")
4 plt.plot(x, y_masked, 'ro')
5 plt.xlabel('year')
6 plt.ylabel('No Presedential Request')
7 plt.ylim(0, 60)
8
9 # 在圖中畫出第25、50、75位的百分位的水平線
10 plt.axhline(perc_25, label='25th perc', c='r')
11 plt.axhline(perc_50, label='50th perc', c='g')
12 plt.axhline(perc_75, label='75th perc', c='m')
13 plt.legend(loc='best')
14 plt.show()
得到的最後的影象,就是去除了0和54的三個異常點後的結果。
五、知識點
plot
1 plt.close('all') # 關閉之前開啟的所有圖形
2 plt.figure(1) # 給圖形編號,在繪製多個圖形的時候有用
3 plt.title('All data') # 設定標題
4 plt.plot(x, y, 'ro') # "ro" 表示使用紅色(r)的點(o)來繪圖
百分位數
一組n個觀測值按數值大小排列。如,處於p%位置的值稱第p百分位數。p=50,等價於中位數;p=0,等價於最小值;p=100,等價於最大值。
plt.axhline()
給定y的位置,從x的最小值一直畫到x的最大值 label設定名稱 c引數設定線條顏色 eg:perc_25 = 13.00 plt.axhline(perc_25, label='25th perc', c='r')
legend(loc)
plt.legend() 是將圖中一些標籤顯示出來 loc引數讓pyplot決定最佳放置位置,以免影響讀圖
numpy-mask函式
刪除異常點 y_masked = np.ma.masked_where(y==0, y) ma.masked_where函式接受兩個引數,他將陣列中符合條件的點進行隱藏,而不需要刪除