溫馨提示×

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

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

Python?圖形繪制詳細(xì)代碼怎么寫(xiě)

發(fā)布時(shí)間:2021-12-22 20:19:51 來(lái)源:億速云 閱讀:219 作者:柒染 欄目:開(kāi)發(fā)技術(shù)

這篇文章給大家介紹Python 圖形繪制詳細(xì)代碼怎么寫(xiě),內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

1、條形圖

下面介紹條形圖的畫(huà)法。

1.1 代碼

import matplotlib.pyplot as plt



# x-coordinates of left sides of bars

left = [1, 2, 3, 4, 5]



# heights of bars

height = [10, 24, 36, 40, 5]



# labels for bars

tick_label = ['one', 'two', 'three', 'four', 'five']



# plotting a bar chart

plt.bar(left, height, tick_label = tick_label,

        width = 0.8, color = ['red', 'green'])



# naming the x-axis

plt.xlabel('x - axis')

# naming the y-axis

plt.ylabel('y - axis')

# plot title

plt.title('My bar chart!')



# function to show the plot

plt.show()

1.2 輸出

Python?圖形繪制詳細(xì)代碼怎么寫(xiě)

1.3 代碼的部分解釋

  • 1)使用 plt.bar() 函數(shù)來(lái)繪制條形圖。

  • 2)x軸與height兩個(gè)參數(shù)必須有。

  • 3)可以通過(guò)定義 tick_labels 為 x 軸坐標(biāo)指定另外的名稱。

2、直方圖

2.1 代碼

import matplotlib.pyplot as plt



# frequencies

ages = [2,5,70,40,30,45,50,45,43,40,44,

        60,7,13,57,18,90,77,32,21,20,40]



# setting the ranges and no. of intervals

range = (0, 100)

bins = 10 



# plotting a histogram

plt.hist(ages, bins, range, color = 'green',

        histtype = 'bar', rwidth = 0.8)



# x-axis label

plt.xlabel('age')

# frequency label

plt.ylabel('No. of people')

# plot title

plt.title('My histogram')



# function to show the plot

plt.show()

2.2 輸出

Python?圖形繪制詳細(xì)代碼怎么寫(xiě)

2.3 代碼的部分解釋

  • 1)使用 plt.hist() 函數(shù)繪制直方圖。

  • 2)age列表作為頻率傳入函數(shù)。

  • 3)可以通過(guò)定義包含最小值和最大值的元組來(lái)設(shè)置范圍。

  • 4)下一步是對(duì)值的范圍進(jìn)行“裝箱”——即將整個(gè)值范圍劃分為一系列區(qū)間——然后計(jì)算落入每個(gè)區(qū)間的值的數(shù)量。 這里我們定義了 bins = 10。所以,總共有 100/10 = 10 個(gè)區(qū)間。

3、散點(diǎn)圖

3.1 代碼

import matplotlib.pyplot as plt



# x-axis values

x = [1,2,3,4,5,6,7,8,9,10]

# y-axis values

y = [2,4,5,7,6,8,9,11,12,12]



# plotting points as a scatter plot

plt.scatter(x, y, label= "stars", color= "green",

            marker= "*", s=30)



# x-axis label

plt.xlabel('x - axis')

# frequency label

plt.ylabel('y - axis')

# plot title

plt.title('My scatter plot!')

# showing legend

plt.legend()



# function to show the plot

plt.show()

3.2 輸出

Python?圖形繪制詳細(xì)代碼怎么寫(xiě)

3.3 代碼的部分解釋

  • 1)使用 plt.scatter() 函數(shù)繪制散點(diǎn)圖。

  • 2)作為一條線,我們?cè)谶@里也定義了 x 和相應(yīng)的 y 軸值。

  • 3)標(biāo)記參數(shù)用于設(shè)置用作標(biāo)記的字符。 它的大小可以使用 s 參數(shù)定義。

關(guān)于Python 圖形繪制詳細(xì)代碼怎么寫(xiě)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

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

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

AI