国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

python 畫圖 圖例自由定義方式

瀏覽:81日期:2022-07-29 15:45:20

我就廢話不多說了,還是直接看代碼吧!

# -*- coding: utf-8 -*-'''Created on Wed Mar 7 13:10:21 2018 @author: su''' import numpy as npimport matplotlib.pyplot as plt n_groups = 2 num_list = [0.8,0.80] num_list1 = [0.8,0.8] num_list2 = [0.9,0.9] num_list3 = [0.9,0.9] fig, ax = plt.subplots()plt.grid(True, linestyle = '-', color = '#9dbcd4', linewidth = '0.7',axis= ’y’) ax = plt.gca()ax.spines[’top’].set_visible(False) #去掉上邊框ax.spines[’right’].set_visible(False) #去掉右邊框ax.spines[’bottom’].set_visible(False) #去掉上邊框ax.spines[’left’].set_visible(False) #去掉右邊框ax.tick_params(axis=’y’,width=0,length=0)ax.tick_params(axis=’x’,width=0,length=0)index = np.arange(n_groups)bar_width = 0.5opacity = 1rects1 = plt.bar(index, num_list, bar_width/4,alpha=opacity, color=’#6B7C85’,label=’Logistic’,hatch=’’)rects2 = plt.bar(index + bar_width/4, num_list1, bar_width/4,alpha=opacity,color=’#9dbcd4’,label=’SVM’,hatch=’/’)rects3= plt.bar(index + bar_width/2, num_list2, bar_width/4,alpha=opacity,color=’#1f3d4b’,label=’CNN’,hatch=’-’)rects4= plt.bar(index + bar_width*3/4, num_list3, bar_width/4,alpha=opacity,color=’#3f829d’,label=’LSTM’,hatch=’:’) # plt.xlabel(’Group’)plt.ylabel(’Accuracy’, fontsize=18)# plt.title(’Scores by group and gender’)plt.xticks(index - 0.3+ bar_width, (’Chinese’, ’English’),fontsize =18) plt.yticks(fontsize =18) #change the num axis size plt.ylim(0.7,0.95) #The ceil # 設置legendplt.legend(loc=’center’, bbox_to_anchor=(0.5,-0.2),ncol=4,frameon=False,shadow=False)plt.tight_layout() plt.show()

python 畫圖 圖例自由定義方式

去除邊框,圖例放圖下面。設置橫標線

以上這篇python 畫圖 圖例自由定義方式就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 乐山市| 富源县| 凤冈县| 衡东县| 渭源县| 昔阳县| 岚皋县| 肇源县| 都江堰市| 临朐县| 北海市| 清水河县| 东乌珠穆沁旗| 金堂县| 固原市| 通海县| 灯塔市| 手机| 沭阳县| 福泉市| 青川县| 清苑县| 郯城县| 关岭| 双城市| 平南县| 灵宝市| 浪卡子县| 南宫市| 东城区| 林甸县| 志丹县| 万宁市| 班戈县| 镇雄县| 山阴县| 三台县| 耿马| 溆浦县| 凉城县| 三穗县|