91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

python怎么設置柱狀圖參數

發布時間:2022-02-21 15:53:24 來源:億速云 閱讀:178 作者:iii 欄目:開發技術

這篇文章主要介紹“python怎么設置柱狀圖參數”,在日常操作中,相信很多人在python怎么設置柱狀圖參數問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”python怎么設置柱狀圖參數”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

version:python 3.6

環境:anaconda/JupyterLab 0.27.0

操作系統:Windows 10

import pandas as pd
import matplotlib.pyplot as plt
a = pd.DataFrame(train_set['收率'].value_counts()).reset_index()
a.rename(columns={'index': 'yield','收率':'frequency'}, inplace=True)
a.head()
plt.figure(figsize=(24,8))
plt.bar(a['yield'].values,a['frequency'].values.round(2),color='rgb',width = 0.005,
tick_label=a['yield'].values.round(3))
plt.xlabel('yield', fontsize=20)
plt.ylabel('frequency', fontsize=20)
plt.show()

補充:python 用 matplotlib 繪制柱狀圖參數詳解 plt.bar()

1、加載庫

import numpy as np
import matplotlib as mpl
import matplotlib.pyplot as plt

2 繪圖,逐步設置 bar() 參數

def title_table(ax):
    '''為圖表添加標題和表格'''
    ax.set_title(label=f'No.{i+1}',
                loc='center',
                pad=None,
                fontdict={'color': 'b'}
                 )
    ax.table(loc='upper right',    # 表格在圖表區的位置
          
          colLabels=[f'{i+2} args'],    # 表格每列的列名稱
          colColours=['g'],    # 表格每列列名稱所在單元格的填充顏色
          colLoc='left',    # 表格中每列列名稱的對齊位置
          colWidths=[0.15],    # 表格每列的寬度         
          cellText=args,    # 表格中的數值, 每行數據的列表的列表
          cellColours=[['cornsilk']]*len(args),    # 表格中數據所在單元格的填充顏色
          cellLoc='left',    # 表格中數據的對齊位置
          fontsize=8)
# 配置字體,顯示中文
mpl.rcParams['font.sans-serif'] = ['SimHei']  
# 配置坐標軸刻度值模式,顯示負號
mpl.rcParams['axes.unicode_minus'] = True
# 定義數據
x = [1, 2, 3, 4, 5]
y = [6, 10, 4, 5, 1]
labels = list('ABCDE')
                   
fig, axes = plt.subplots(nrows=3,
                         ncols=3,
                         sharex=True,
                         sharey=True,
                         figsize=(18, 20),
                         facecolor='cornsilk')
axes = axes.ravel()
i = 0
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
       )
args = [[e] for e in ['x', 'height']]
# 向圖表子區添加標題和數據表
title_table(ax)
i = 1
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
        align='edge',    #  x 軸上的坐標與柱體對其的位置
       )
args = [[e] for e in ['x', 'height', 'align']]
# 向圖表子區添加標題和數據表
title_table(ax)
i = 2
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
        align='edge',    #  x 軸上的坐標與柱體對其的位置
        color='c',    # 柱體的填充顏色
        )
args = [[e] for e in ['x', 'height', 'align', 'color']]
# 向圖表子區添加標題和數據表
title_table(ax)
i = 3
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
        align='edge',    #  x 軸上的坐標與柱體對齊的位置
        color='cyan',    # 柱體的填充顏色
        tick_label=labels,    # 每個柱體的標簽名稱
        )
args = [[e] for e in ['x', 'height', 'align', 'color', 'tick_label']]
# 向圖表子區添加標題和數據表
title_table(ax)
i = 4
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
        align='edge',    #  x 軸上的坐標與柱體對其的位置
        color='blue',    # 柱體的填充顏色
        tick_label=labels,    # 每個柱體的標簽名稱
        alpha=0.6    # 柱體填充顏色的透明度
        )
args = [[e] for e in ['x', 'height', 'align', 'color', 'tick_label', 'alpha']]
# 向圖表子區添加標題和數據表
title_table(ax)
i = 5
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
        align='edge',    #  x 軸上的坐標與柱體對其的位置
        color='wheat',    # 柱體的填充顏色
        tick_label=labels,    # 每個柱體的標簽名稱
        alpha=0.6,    # 柱體填充顏色的透明度
        width=1,  # 柱體的寬度
        )
args = [[e] for e in ['x', 'height', 'align', 'color', 'tick_label', 'alpha', 'width']]
# 向圖表子區添加標題和數據表
title_table(ax)
i = 6
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
        align='edge',    #  x 軸上的坐標與柱體對其的位置
        color='aqua',    # 柱體的填充顏色
        tick_label=labels,    # 每個柱體的標簽名稱
        alpha=0.6,    # 柱體填充顏色的透明度
        width=0.8,    # 柱體的寬度
        bottom=0.2,     # 柱體基線的 y 軸坐標
        )
args = [[e] for e in ['x', 'height', 'align', 'color', 'tick_label', 'alpha', 'width',
                      'bottom']]
# 向圖表子區添加標題和數據表
title_table(ax)
i = 7
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
        align='edge',    #  x 軸上的坐標與柱體對其的位置
        color='lightpink',    # 柱體的填充顏色
        tick_label=labels,    # 每個柱體的標簽名稱
        alpha=0.6,    # 柱體填充顏色的透明度
        width=0.8,    # 柱體的寬度
        bottom=0.2,    # 柱體基線的 y 軸坐標
        edgecolor='g'   # 柱體的邊框顏色
        )
args = [[e] for e in ['x', 'height', 'align', 'color', 'tick_label', 'alpha', 'width',
                      'bottom', 'edgecolor']]
# 向圖表子區添加標題和數據表
title_table(ax)
i = 8
ax = axes[i]
# 繪制柱狀圖
ax.bar(x=x,    # 柱體在 x 軸上的坐標位置
        height=y,    # 柱體的高度
        align='center',    #  x 軸上的坐標與柱體對其的位置
        color='bisque',    # 柱體的填充顏色
        tick_label=labels,    # 每個柱體的標簽名稱
        alpha=0.6,    # 柱體填充顏色的透明度
        width=0.8,    # 柱體的寬度
        bottom=0.2,    # 柱體基線的 y 軸坐標
        edgecolor='g',   # 柱體的邊框顏色
        linewidth=1.5,   # 柱體邊框線的寬度
        )
args = [[e] for e in ['x', 'height', 'align', 'color', 'tick_label', 'alpha', 'width',
                      'bottom', 'edgecolor', 'linewidth']]
# 向圖表子區添加標題和數據表
title_table(ax)
# 設置整個子區的布局
fig.subplots_adjust(left=0,
                    bottom=0,
                    right=0.9,
                    top=1,
                    wspace=0.1,    # 子區間空白區域的寬度的歸一化值
                    hspace=0.2);    # 子區間空白區域的高度的歸一化值

到此,關于“python怎么設置柱狀圖參數”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永年县| 枞阳县| 石台县| 克山县| 文登市| 鸡东县| 汉中市| 邹平县| 天祝| 金溪县| 博客| 巨野县| 西和县| 淮阳县| 古交市| 云安县| 蓬溪县| 翼城县| 华容县| 新宾| 乌拉特后旗| 闸北区| 曲水县| 泽库县| 彭阳县| 福贡县| 临湘市| 宁国市| 永清县| 密云县| 叙永县| 确山县| 上虞市| 西城区| 清河县| 丹凤县| 临潭县| 乌兰浩特市| 凤冈县| 安仁县| 武功县|