python 畫圖 圖例自由定義方式
更新時間:2020年04月17日 14:23:05 作者:suxianshuai
這篇文章主要介紹了python 畫圖 圖例自由定義方式,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
我就廢話不多說了,還是直接看代碼吧!
# -*- coding: utf-8 -*- """ Created on Wed Mar 7 13:10:21 2018 @author: su """ import numpy as np import 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.5 opacity = 1 rects1 = 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 # 設置legend plt.legend(loc='center', bbox_to_anchor=(0.5,-0.2),ncol=4,frameon=False,shadow=False) plt.tight_layout() plt.show()
去除邊框,圖例放圖下面。設置橫標線
以上這篇python 畫圖 圖例自由定義方式就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
PyTorch?使用torchvision進行圖片數(shù)據(jù)增廣
本文主要介紹了PyTorch?使用torchvision進行圖片數(shù)據(jù)增廣,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2022-05-05Python爬蟲爬取新浪微博內(nèi)容示例【基于代理IP】
這篇文章主要介紹了Python爬蟲爬取新浪微博內(nèi)容,結(jié)合實例形式分析了Python基于代理IP實現(xiàn)的微博爬取與抓包分析相關(guān)操作技巧,需要的朋友可以參考下2018-08-08python實現(xiàn)數(shù)據(jù)挖掘中分箱的示例代碼
數(shù)據(jù)分箱(英語:Data?binning)是一種數(shù)據(jù)預處理方法,用于最大限度地減少小觀測誤差的影響,本文主要為大家介紹了python實現(xiàn)數(shù)據(jù)分箱的相關(guān)知識,感興趣的可以了解下2024-01-01Django接收post前端返回的json格式數(shù)據(jù)代碼實現(xiàn)
這篇文章主要介紹了Django接收post前端返回的json格式數(shù)據(jù)代碼實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2019-07-07詳細解讀tornado協(xié)程(coroutine)原理
這篇文章主要介紹了詳細解讀tornado協(xié)程(coroutine)原理,涉及協(xié)程定義,生成器和yield語義,F(xiàn)uture對象,ioloop對象,函數(shù)裝飾器coroutine等相關(guān)內(nèi)容,具有一定借鑒價值,需要的朋友可以參考下2018-01-01