真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python怎么實現(xiàn)折線圖、柱狀圖、餅圖

本篇內(nèi)容介紹了“Python怎么實現(xiàn)折線圖、柱狀圖、餅圖”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比澧縣網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式澧縣網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋澧縣地區(qū)。費用合理售后完善,10余年實體公司更值得信賴。

折線圖

代碼

import numpy as np
import matplotlib.pyplot as plt

# x軸刻度標簽
x_ticks = ['a', 'b', 'c', 'd', 'e', 'f']
# x軸范圍(0, 1, ..., len(x_ticks)-1)
x = np.arange(len(x_ticks))
# 第1條折線數(shù)據(jù)
y1 = [5, 3, 2, 4, 1, 6]
# 第2條折線數(shù)據(jù)
y2 = [3, 1, 6, 5, 2, 4]

# 設(shè)置畫布大小
plt.figure(figsize=(10, 6))
# 畫第1條折線,參數(shù)看名字就懂,還可以自定義數(shù)據(jù)點樣式等等。
plt.plot(x, y1, color='#FF0000', label='label1', linewidth=3.0)
# 畫第2條折線
plt.plot(x, y2, color='#00FF00', label='label2', linewidth=3.0)

# 給第1條折線數(shù)據(jù)點加上數(shù)值,前兩個參數(shù)是坐標,第三個是數(shù)值,ha和va分別是水平和垂直位置(數(shù)據(jù)點相對數(shù)值)。
for a, b in zip(x, y1):
    plt.text(a, b, '%d'%b, ha='center', va= 'bottom', fontsize=18)
# 給第2條折線數(shù)據(jù)點加上數(shù)值
for a, b in zip(x, y2):
    plt.text(a, b, '%d'%b, ha='center', va= 'bottom', fontsize=18)

# 畫水平橫線,參數(shù)分別表示在y=3,x=0~len(x)-1處畫直線。
plt.hlines(3, 0, len(x)-1, colors = "#000000", linestyles = "dashed")

# 添加x軸和y軸刻度標簽
plt.xticks([r for r in x], x_ticks, fontsize=18, rotation=20)
plt.yticks(fontsize=18)

# 添加x軸和y軸標簽
plt.xlabel(u'x_label', fontsize=18)
plt.ylabel(u'y_label', fontsize=18)

# 標題
plt.title(u'Title', fontsize=18)

# 圖例
plt.legend(fontsize=18)

# 保存圖片
plt.savefig('./figure.pdf', bbox_inches='tight')
# 顯示圖片
plt.show()

效果

Python數(shù)據(jù)可視化:折線圖、柱狀圖、餅圖代碼

柱狀圖

代碼

import numpy as np
import matplotlib.pyplot as plt

# x軸刻度標簽
x_ticks = ['a', 'b', 'c', 'd', 'e', 'f']
# 柱的寬度
barWidth = 0.25
# 第1個柱的x軸范圍(每個柱子的中點)(0, 1, ..., len(x_ticks)-1)
x1 = np.arange(len(x_ticks))
# 第2個柱的x軸范圍(每個柱子的中點)
x2 = [x + barWidth for x in x1]
# 第1個柱數(shù)據(jù)
y1 = [5, 3, 2, 4, 1, 6]
# 第2個柱數(shù)據(jù)
y2 = [3, 1, 6, 5, 2, 4]

# 設(shè)置畫布大小
plt.figure(figsize=(10, 6))
# 畫第1個柱
plt.bar(x1, y1, color='#FF0000', width=barWidth, label='label1')
# 畫第2個柱
plt.bar(x2, y2, color='#00FF00', width=barWidth, label='label2')

# 給第1個柱數(shù)據(jù)點加上數(shù)值,前兩個參數(shù)是坐標,第三個是數(shù)值,ha和va分別是水平和垂直位置(數(shù)據(jù)點相對數(shù)值)。
for a, b in zip(x1, y1):
    plt.text(a, b, '%d'%b, ha='center', va= 'bottom', fontsize=18)
# 給第2個柱數(shù)據(jù)點加上數(shù)值
for a, b in zip(x2, y2):
    plt.text(a, b, '%d'%b, ha='center', va= 'bottom', fontsize=18)

# 畫水平橫線
plt.hlines(3, 0, len(x_ticks)-1+barWidth, colors = "#000000", linestyles = "dashed")

# 添加x軸和y軸刻度標簽
plt.xticks([r + barWidth/2 for r in x1], x_ticks, fontsize=18)
plt.yticks(fontsize=18)

# 添加x軸和y軸標簽
plt.xlabel(u'x_label', fontsize=18)
plt.ylabel(u'y_label', fontsize=18)

# 標題
plt.title(u'Title', fontsize=18)

# 圖例
plt.legend(fontsize=18)

# 保存圖片
plt.savefig('./figure.pdf', bbox_inches='tight')
# 顯示圖片
plt.show()

效果

Python怎么實現(xiàn)折線圖、柱狀圖、餅圖

餅圖

代碼

import numpy as np
import matplotlib.pyplot as plt

# 設(shè)置畫布大小
plt.figure(figsize=(10, 10))
# 設(shè)置每塊區(qū)域的標簽
labels = ['a', 'b', 'c', 'd', 'e']
# 設(shè)置每塊區(qū)域離圓心的距離,這里a區(qū)域凸出一點點
explode = [0.05, 0.01, 0.01, 0.01, 0.01]
# 設(shè)置每塊區(qū)域的值
values = [1, 5, 2, 4, 3]
# 設(shè)置每塊區(qū)域的顏色
colors = ['#F5DEB3', '#87CEFA', '#FFB6C1', '#90EE90', '#D3D3D3']

_, l_text, p_text = plt.pie(values, explode=explode, labels=labels, autopct='%1.1f%%', colors=colors)

# 設(shè)置標簽字體大小
for t in l_text:
    t.set_size(18)
# 設(shè)置數(shù)值字體大小
for t in p_text:
    t.set_size(18)

# 標題
plt.title(u'Title', fontsize=18)

# 圖例
plt.legend(fontsize=18)

# 保存圖片
plt.savefig('./figure.pdf', bbox_inches='tight')
# 顯示圖片
plt.show()

“Python怎么實現(xiàn)折線圖、柱狀圖、餅圖”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!


網(wǎng)站名稱:Python怎么實現(xiàn)折線圖、柱狀圖、餅圖
轉(zhuǎn)載來源:http://weahome.cn/article/jpicps.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部