溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python如何使用matplotlib畫柱狀圖、散點(diǎn)圖

發(fā)布時(shí)間:2021-03-30 10:05:53 來源:億速云 閱讀:240 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)python如何使用matplotlib畫柱狀圖、散點(diǎn)圖,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

柱狀圖(plt.bar)

代碼與注釋

import numpy as np
from matplotlib import pyplot as plt
plt.figure(figsize=(9,6))
n = 8
X = np.arange(n)+1
#X是1,2,3,4,5,6,7,8,柱的個(gè)數(shù)
# numpy.random.uniform(low=0.0, high=1.0, size=None), normal
#uniform均勻分布的隨機(jī)數(shù),normal是正態(tài)分布的隨機(jī)數(shù),0.5-1均勻分布的數(shù),一共有n個(gè)
Y1 = np.random.uniform(0.5,1.0,n)
Y2 = np.random.uniform(0.5,1.0,n)
plt.bar(X,Y1,width = 0.35,facecolor = 'lightskyblue',edgecolor = 'white')
#width:柱的寬度
plt.bar(X+0.35,Y2,width = 0.35,facecolor = 'yellowgreen',edgecolor = 'white')
#水平柱狀圖plt.barh,屬性中寬度width變成了高度height
#打兩組數(shù)據(jù)時(shí)用+
#facecolor柱狀圖里填充的顏色
#edgecolor是邊框的顏色
#想把一組數(shù)據(jù)打到下邊,在數(shù)據(jù)前使用負(fù)號(hào)
#plt.bar(X, -Y2, width=width, facecolor='#ff9999', edgecolor='white')
#給圖加text
for x,y in zip(X,Y1):
  plt.text(x+0.3, y+0.05, '%.2f' % y, ha='center', va= 'bottom')
 
for x,y in zip(X,Y2):
  plt.text(x+0.6, y+0.05, '%.2f' % y, ha='center', va= 'bottom')
plt.ylim(0,+1.25)
plt.show()

結(jié)果

python如何使用matplotlib畫柱狀圖、散點(diǎn)圖

散點(diǎn)圖(plt.scatter)

代碼與注釋

plt.figure(figsize=(9,6))
n=1000
#rand 均勻分布和 randn高斯分布
x=np.random.randn(1,n)
y=np.random.randn(1,n)
T=np.arctan2(x,y)
plt.scatter(x,y,c=T,s=25,alpha=0.4,marker='o')
#T:散點(diǎn)的顏色
#s:散點(diǎn)的大小
#alpha:是透明程度
plt.show()

結(jié)果

python如何使用matplotlib畫柱狀圖、散點(diǎn)圖

關(guān)于“python如何使用matplotlib畫柱狀圖、散點(diǎn)圖”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI