python數(shù)據(jù)分析繪圖可視化
前言:
數(shù)據(jù)分析初始階段,通常都要進(jìn)行可視化處理。數(shù)據(jù)可視化旨在直觀展示信息的分析結(jié)果和構(gòu)思,令某些抽象數(shù)據(jù)具象化,這些抽象數(shù)據(jù)包括數(shù)據(jù)測(cè)量單位的性質(zhì)或數(shù)量。本章用的程序庫(kù)matplotlib是建立在Numpy之上的一個(gè)Python圖庫(kù),它提供了一個(gè)面向?qū)ο蟮腁PI和一個(gè)過程式類的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)物',‘禮尚往來',‘餐飲美食',‘通信',‘生活日用',‘交通出行',‘休閑娛樂',‘其他'] 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ù)分析之單因素分析線性擬合及地理編碼
- 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折線圖案例處理
- Python數(shù)據(jù)分析之堆疊數(shù)組函數(shù)示例總結(jié)
- 使用python對(duì)泰坦尼克號(hào)幸存者進(jìn)行數(shù)據(jù)分析與預(yù)測(cè)
相關(guān)文章
解決python寫入mysql中datetime類型遇到的問題
今天小編就為大家分享一篇解決python寫入mysql中datetime類型遇到的問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2018-06-06
如何修復(fù)使用 Python ORM 工具 SQLAlchemy 時(shí)的常見陷阱
SQLAlchemy 是一個(gè) Python ORM 工具包,它提供使用 Python 訪問 SQL 數(shù)據(jù)庫(kù)的功能。這篇文章主要介紹了如何修復(fù)使用 Python ORM 工具 SQLAlchemy 時(shí)的常見陷阱,需要的朋友可以參考下2019-11-11
Python實(shí)現(xiàn)接口下載json文件并指定文件名稱
在 Web 開發(fā)中,提供文件下載功能是一種常見的需求,尤其是當(dāng)涉及到導(dǎo)出數(shù)據(jù)為 JSON 格式時(shí),為了確保文件名的自定義以及避免亂碼問題,開發(fā)者需要采取一些特定的措施,本文介紹了Python實(shí)現(xiàn)接口下載json文件并指定文件名稱,需要的朋友可以參考下2024-10-10
python使用xslt提取網(wǎng)頁(yè)數(shù)據(jù)的方法
這篇文章主要為大家詳細(xì)介紹了Python使用xslt提取網(wǎng)頁(yè)數(shù)據(jù)的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-02-02
python中正則表達(dá)式findall的用法實(shí)例
在寫著自動(dòng)化測(cè)試的腳本時(shí)重新復(fù)習(xí)了一下正則表達(dá)式findall()方法,下面這篇文章主要給大家介紹了關(guān)于python中正則表達(dá)式findall用法的相關(guān)資料,文中通過實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下2022-09-09

