python熱力圖實現(xiàn)簡單方法
在我們想要對不同變量進行判斷的時候,會分析其中的之間的聯(lián)系。這種理念同樣也被用在實例生活中,最常見到的是做一個地理的熱力圖。很多人對畫熱力圖的方法不是很清楚,我們可以先裝好相關(guān)的工具,了解一些使用參數(shù),然后在實例中進行畫熱力圖的實例體驗,下面就來看看具體的方法吧。
1.導(dǎo)入相關(guān)的packagesimport seaborn as sns%matplotlib inlinesns.set(font_scale=1.5)2.參數(shù)
vmax:設(shè)置顏色帶的最大值
vmin:設(shè)置顏色帶的最小值
cmap:設(shè)置顏色帶的色系
center:設(shè)置顏色帶的分界線
annot:是否顯示數(shù)值注釋
fmt:format的縮寫,設(shè)置數(shù)值的格式化形式
linewidths:控制每個小方格之間的間距
linecolor:控制分割線的顏色
cbar_kws:關(guān)于顏色帶的設(shè)置
mask:傳入布爾型矩陣,若為矩陣內(nèi)為True,則熱力圖相應(yīng)的位置的數(shù)據(jù)將會被屏蔽掉(常用在繪制相關(guān)系數(shù)矩陣圖)
3.實例用Python生成heatmap比較簡單,導(dǎo)入googlmap然后把經(jīng)緯度plot在地圖上就可以了。最后把heatmap生成為一個html文件,可以放大和縮小。
import gmplot # plot the locations on google mapimport numpy as np # linear algebraimport pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv())import matplotlib.pyplot as plt # data visualizationimport seaborn as sns # data visualizationdf = pd.read_csv('data.csv')df = pd.DataFrame(df)df_td = pd.read_csv('datacopy.csv')df_td = pd.DataFrame(df_td)# print df.dtypesprint (df.shape)print (df_td.shape)def plot_heat_map(data, number): latitude_array = data[’INTPTLAT’].values latitude_list = latitude_array.tolist() print(latitude_list[0]) Longitude_array = data[’INTPTLONG’].values longitude_list = Longitude_array.tolist() print(longitude_list[0]) # Initialize the map to the first location in the list gmap = gmplot.GoogleMapPlotter(latitude_list[0], longitude_list[0], 10) # gmap.scatter(latitude_list, longitude_list, edge_width=10) gmap.heatmap(latitude_list, longitude_list) # Write the map in an HTML file # gmap.draw(’Paths_map.html’) gmap.draw(’{}_Paths_map.html’.format(number))plot_heat_map(df,’4’)
內(nèi)容擴展:
實例擴展1
# -*- coding: utf-8 -*-from pyheatmap.heatmap import HeatMapimport numpy as npN = 10000X = np.random.rand(N) * 255 # [0, 255]Y = np.random.rand(N) * 255data = []for i in range(N): tmp = [int(X[i]), int(Y[i]), 1] data.append(tmp)heat = HeatMap(data)heat.clickmap(save_as='1.png') #點擊圖heat.heatmap(save_as='2.png') #熱圖
實例擴展2
import matplotlib.pyplot as pltimport matplotlib.cm as cmfrom matplotlib.colors import LogNormimport numpy as npx, y = np.random.rand(10), np.random.rand(10)z = (np.random.rand(9000000)+np.linspace(0,1, 9000000)).reshape(3000, 3000)plt.imshow(z+10, extent=(np.amin(x), np.amax(x), np.amin(y), np.amax(y)), cmap=cm.hot, norm=LogNorm())plt.colorbar()plt.show()
以上就是python熱力圖實現(xiàn)簡單方法的詳細內(nèi)容,更多關(guān)于python熱力圖的原理實現(xiàn)的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. C語言字符串轉(zhuǎn)換為Python字符串的方法2. 利用python+ffmpeg合并B站視頻及格式轉(zhuǎn)換的實例代碼3. 解決Python數(shù)據(jù)可視化中文部分顯示方塊問題4. 五分鐘學(xué)會怎么用python做一個簡單的貪吃蛇5. python 根據(jù)列表批量下載網(wǎng)易云音樂的免費音樂6. 如何用python開發(fā)Zeroc Ice應(yīng)用7. python開發(fā)一個解析protobuf文件的簡單編譯器8. python uuid生成唯一id或str的最簡單案例9. ASP編碼必備的8條原則10. Python基于traceback模塊獲取異常信息
