python數(shù)據(jù)分析繪圖可視化
前言:
數(shù)據(jù)分析初始階段,通常都要進(jìn)行可視化處理。數(shù)據(jù)可視化旨在直觀(guān)展示信息的分析結(jié)果和構(gòu)思,令某些抽象數(shù)據(jù)具象化,這些抽象數(shù)據(jù)包括數(shù)據(jù)測(cè)量單位的性質(zhì)或數(shù)量。本章用的程序庫(kù)matplotlib是建立在Numpy之上的一個(gè)Python圖庫(kù),它提供了一個(gè)面向?qū)ο蟮腁PI和一個(gè)過(guò)程式類(lèi)的MATLAB API,他們可以并行使用。
1、
import numpy as np import matplotlib.pyplot as plt scores=np.random.randint(0,100,50) plt.hist(scores,bins=8,histtype=‘stepfilled') plt.title(‘37') plt.show()
2、
x=np.arange(6) y1=np.array([1,4,3,5,6,7]) y2=np.array([3,4,3,5,6,7]) y3=np.array([2,4,3,5,6,7]) plt.stackplot(x,y1,y2,y3) plt.title(‘37') plt.show()
3、
random_state=np.random.RandomState(1231241) random_x=random_state.randn(10000) plt.hist(random_x,bins=25) plt.title(‘37') plt.show()
4、
data=np.array([10,30,15,30,15]) pie_labels=np.array([‘A',‘B',‘C',‘D',‘E']) plt.pie(data,radius=1.5,labels=pie_labels,autopct='%3.1f%%') plt.title(‘37') plt.show()
5、
import matplotlib as mpl mpl.rcParams[‘font.sans-serif']=[‘SimHei'] mpl.rcParams[‘a(chǎn)xes.unicode_minus']=False kinds=[‘購(gòu)物',‘禮尚往來(lái)',‘餐飲美食',‘通信',‘生活日用',‘交通出行',‘休閑娛樂(lè)',‘其他'] money_scale=[500/1500,123/1500,400/1500,234/1500,300/1500,200/1500,100/1500,150/1500] dev_position=[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1] plt.pie(money_scale,labels=kinds,autopct='%3.1f%%',shadow=True, explode=dev_position,startangle=90) plt.title(‘37') plt.show()
6、
num=50 x=np.random.rand(num) y=np.random.rand(num) plt.scatter(x,y) plt.title(‘37') plt.show()
7、
num=50 x=np.random.rand(num) y=np.random.rand(num) area=(800*np.random.rand(num)**2) plt.scatter(x,y,s=area) plt.title(‘37') plt.show()
8、
plt.rcParams[‘font.sans-serif']=‘SimHei' plt.rcParams[‘a(chǎn)xes.unicode_minus']=False x_speed=np.arange(10,210,10) y_distance=np.array([0.3,0.5,1,3,5,5.5,7,8,9,12,14,15.5,17.8,19,20,23,27,30,31,32]) plt.scatter(x_speed,y_distance,s=50,alpha=0.9) plt.title(‘37') plt.show()
9、
plt.rcParams[‘font.family']= ‘SimHei' plt.rcParams[‘a(chǎn)xes.unicode_minus']=False data_2018=np.array([4500,6654.5,5283.4,5107.8,5443.3,5550.6,6400.2,6404.9,5483.1,5330.2,5543,6199.9]) data_2017=np.array([4605.2,4710.3,5168.9,4767.2,4947,5203,6047.4,5945.5,5219.6,5038.1,5196.3,5698.6]) plt.boxplot([data_2018,data_2017],labels=(‘2018年',‘2017年'),meanline=True,widths=0.5,vert=False,patch_artist=True) plt.title(‘37') plt.show()
10、
plt.rcParams[‘font.family']= ‘SimHei' plt.rcParams[‘a(chǎn)xes.unicode_minus']=False dim_num=6 data=np.array([[0.50,0.32,0.35,0.30,0.30,0.88], [0.45,0.35,0.30,0.40,0.40,0.30], [0.43,0.99,0.30,0.28,0.22,0.30], [0.30,0.25,0.48,0.95,0.45,0.40], [0.20,0.38,0.87,0.45,0.32,0.28], [0.34,0.31,0.38,0.40,0.92,0.28]]) angles=np.linspace(0, 2 * np.pi, dim_num, endpoint=False) angles=np.concatenate((angles,[angles[0]])) data=np.concatenate((data,[data[0]])) radar_labels=[‘研究型(I)',‘藝術(shù)型(A)',‘社會(huì)型(S)',‘企業(yè)型(E)',‘傳統(tǒng)型?',‘現(xiàn)實(shí)型?'] radar_labels=np.concatenate((radar_labels, [radar_labels[0]])) plt.polar(angles, data) plt.thetagrids(angles * 180/np.pi, labels=radar_labels) plt.fill(angles, data, alpha=0.25) plt.title(‘37') plt.show()
11、
data =np.array([20,50,10,15,30,55]) pie_labels=np.array([‘A',‘B',‘C',‘D',‘E',‘F']) plt.pie(data,radius=1.5,wedgeprops={‘width': 0.7},labels=pie_labels,autopct='%3.1f%%',pctdistance=0.75) plt.title(‘37') plt.show()
12、
x = np.arange(1,13) y_a = np.array([191,123,234,42,123,432,567,234,231,132,123,134]) y_b = np.array([123,143,234,242,523,232,467,334,131,332,234,345]) y_c = np.array([91,123,534,432,223,332,367,434,111,322,345,560]) plt.stackplot(x,y_a,y_b,y_c) plt.title(‘37') plt.show()
到此這篇關(guān)于python數(shù)據(jù)分析繪圖可視化的文章就介紹到這了,更多相關(guān)python 可視化內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
- Python數(shù)據(jù)分析應(yīng)用之Matplotlib數(shù)據(jù)可視化詳情
- python數(shù)據(jù)分析之單因素分析線(xiàn)性擬合及地理編碼
- Python數(shù)據(jù)分析基礎(chǔ)之異常值檢測(cè)和處理方式
- Python數(shù)據(jù)分析numpy數(shù)組的3種創(chuàng)建方式
- Python數(shù)據(jù)分析之Matplotlib數(shù)據(jù)可視化
- Python數(shù)據(jù)分析之使用scikit-learn構(gòu)建模型
- Python數(shù)據(jù)分析matplotlib折線(xiàn)圖案例處理
- Python數(shù)據(jù)分析之堆疊數(shù)組函數(shù)示例總結(jié)
- 使用python對(duì)泰坦尼克號(hào)幸存者進(jìn)行數(shù)據(jù)分析與預(yù)測(cè)
相關(guān)文章
python sklearn數(shù)據(jù)預(yù)處理之正則化詳解
數(shù)據(jù)的預(yù)處理是數(shù)據(jù)分析,或者機(jī)器學(xué)習(xí)訓(xùn)練前的重要步驟,這篇文章主要為大家詳細(xì)介紹了sklearn數(shù)據(jù)預(yù)處理中正則化的相關(guān)知識(shí),需要的可以參考下2023-10-10Python+Redis實(shí)現(xiàn)布隆過(guò)濾器
布隆過(guò)濾器(Bloom Filter)是1970年由布隆提出的。它實(shí)際上是一個(gè)很長(zhǎng)的二進(jìn)制向量和一系列隨機(jī)映射函數(shù)。這篇文章主要介紹了Python+Redis實(shí)現(xiàn)布隆過(guò)濾器,需要的朋友可以參考下2019-12-12Pyqt QImage 與 np array 轉(zhuǎn)換方法
今天小編就為大家分享一篇Pyqt QImage 與 np array 轉(zhuǎn)換方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2019-06-06Python解決多進(jìn)程間訪(fǎng)問(wèn)效率低的方法總結(jié)
這篇文章主要為大家詳細(xì)介紹了當(dāng)Python多進(jìn)程間訪(fǎng)問(wèn)效率低時(shí),應(yīng)該如何解決?文中的示例代碼講解詳細(xì),感興趣的小伙伴可以了解一下2022-09-09python排序函數(shù)sort()與sorted()的區(qū)別
這篇文章主要介紹了python排序函數(shù)sort()與sorted()的區(qū)別,需要的朋友可以參考下2018-09-09Python實(shí)現(xiàn)的彩票機(jī)選器實(shí)例
這篇文章主要介紹了Python實(shí)現(xiàn)彩票機(jī)選器的方法,可以模擬彩票號(hào)碼的隨機(jī)生成功能,需要的朋友可以參考下2015-06-06python Django批量導(dǎo)入數(shù)據(jù)
這篇文章主要為大家詳細(xì)介紹了python Django批量導(dǎo)入數(shù)據(jù)的相關(guān)資料感興趣的小伙伴們可以參考一下2016-03-03利用python爬取散文網(wǎng)的文章實(shí)例教程
這篇文章主要跟大家介紹了利用python爬取散文網(wǎng)文章的相關(guān)資料,文中介紹的非常詳細(xì),對(duì)大家具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起看看吧。2017-06-06