最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

python 畫(huà)圖 圖例自由定義方式

 更新時(shí)間:2020年04月17日 14:23:05   作者:suxianshuai  
這篇文章主要介紹了python 畫(huà)圖 圖例自由定義方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧

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

# -*- 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 
# 設(shè)置legend
plt.legend(loc='center', bbox_to_anchor=(0.5,-0.2),ncol=4,frameon=False,shadow=False)
plt.tight_layout() 
plt.show() 

去除邊框,圖例放圖下面。設(shè)置橫標(biāo)線

以上這篇python 畫(huà)圖 圖例自由定義方式就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

灵山县| 宣威市| 波密县| 颍上县| 吴忠市| 凤冈县| 灵寿县| 南开区| 陇西县| 渭源县| 石林| 班玛县| 汽车| 晴隆县| 花垣县| 连江县| 长治县| 刚察县| 禄丰县| 香格里拉县| 丰城市| 景宁| 和田市| 河东区| 荆州市| 阿巴嘎旗| 青河县| 阳新县| 喀喇沁旗| 区。| 台州市| 苏尼特左旗| 抚顺县| 宁明县| 石柱| 磐安县| 大关县| 定兴县| 宁南县| 南阳市| 黔江区|