当前位置:主页 > python教程 > python legend如何设置不要边框

python legend设置不要边框的方法技巧

发布:2019-07-03 16:05:19 456


给大家整理一篇相关的编程文章,网友茹翠曼根据主题投稿了本篇教程内容,涉及到python、legend、不要边框、python legend如何设置不要边框相关内容,已被844网友关注,内容中涉及的知识点可以在下方直接下载获取。

python legend如何设置不要边框

python matlab绘图中legend的终极用法

legend有时候挺烦人的,尽管大多时候挺好用。

基本数据:

data = rand(25)+repmat(1:25,25,1);
H = plot(data);

基本用法:

legend({'str1','str2','strn'});

高级用法1:指定legend显示的位置:

legend({'str1','str2','strn'},1);

legend({'str1','str2','strn'},2);

legend({'str1','str2','strn'},'Location','SouthEast');

可选的位置很多:

North:Inside plot box near top
South:Inside bottom
EastI:nside right
West:Inside left
NorthEast:Inside top right (default)
NorthWest:Inside top left
SouthEast:Inside bottom right
SouthWest:Inside bottom left
NorthOutside:Outside plot box near top
SouthOutside:Outside bottom
EastOutside:Outsideright
WestOutside:Outside left
NorthEastOutside:Outside top right
NorthWestOutside:Outside top left
SouthEastOutside:Outside bottom right
SouthWestOutside:Outside bottom left
Best:Least conflict with data in plot
BestOutside:Least unused space outside plot

通常,用'Best‘比较不错

高级用法2:指定显示某几条曲线的legend:

方法1:复杂到吐血

例如你有25条曲线,想显示其中1,6,11,16,21的legend,则

for i = [2:5 7:10 12:15 17:20 22:25]
     set(get(get(H(i),'Annotation'),'LegendInformation'),'IconDisplayStyle','off');
end
legend('1','6','11','16','21');

方法2:简单到郁闷

H = plot(data);
legend(H([1 6 11 16 21],'1,'6','11’,'16','21');

高级用法3:legend横排

hl = legend(H([1 6 11 16 21],'1,'6','11’,'16','21');
set(hl,'Orientation','horizon')

高级用法4:不显示方框:

hl = legend(H([1 6 11 16 21],'1,'6','11’,'16','21');
set(hl,'Box','off');

另外,去掉legend边框

legend('x','y')
legend('boxoff')

写两次就好了。我最初尝试着写成legend('x','y','boxoff')是不行的。

修改legend的字体:

legend1=legend('x','y');
set(legend1,'FontName','Times New Roman','FontSize',12,'FontWeight','normal');

修改legend位置:

i=0;%i=0,自动调整最佳位置;i=1,右上;i=2,左上;i=3,左下;i=4,右下;

legend1=legend('x','y',i);

20160518

最好的说明文档,当然是帮助文档:

matlab:

doc legend

legend('hide'), legend(axes_handle,'hide') makes the legend in the current axes or the axes specified by axes_handle invisible.

legend('show'), legend(axes_handle,'show') makes the legend in the current axes or the axes specified by axes_handle visible. A legend is created if one did not exist previously. Legends created automatically are limited to depict only the first 20 lines in the plot; if you need more legend entries, you can manually create a legend for them all with legend('string1','string2',...) syntax.

legend('boxoff'), legend(axes_handle,'boxoff') removes the box from the legend in the current axes or the axes specified by axes_handle, and makes its background transparent.

legend('boxon'), legend(axes_handle,'boxon') adds a box with an opaque background to the legend in the current axes or the axes specified by axes_handle.

 


参考资料

相关文章

  • Python常见数据类型转换操作示例

    发布:2023-01-24

    为网友们分享了关于Python的教程,这篇文章主要介绍了Python常见数据类型转换操作,结合实例形式分析了Python针对列表、集合、元组、字典等数据类型转换的相关操作技巧,需要的朋友可以参考下


  • python登录密码重置的操作方法

    发布:2019-12-07

    这篇文章主要介绍了python实现登录密码重置简易操作,代码简单易懂,非常不错,具有一定的参考借鉴价值 ,需要的朋友可以参考下


  • Python3列表、数组、矩阵的相互转换方法

    发布:2019-11-26

    这篇文章主要介绍了Python3 列表,数组,矩阵的相互转换的方法示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学


  • python中函数定义的关键字是

    python中函数定义的关键字是

    发布:2023-01-06

    为网友们分享了关于python的教程,python中函数定义的关键字是def。函数是组织好的,可重复使用的,用来实现单一,或相关联功能的代码段。


  • Python import导入上级目录文件的方法

    发布:2023-03-08

    这篇文章主要介绍了Python import导入上级目录文件,本文结合示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下


  • Python 3.8中实现functools.cached_property功能实例代码

    发布:2020-02-16

    这篇文章主要介绍了Python 3.8中实现functools.cached_property功能,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下


  • 有关Python的MD5加密用法详解

    发布:2022-04-04

    这篇文章主要介绍了Python MD5加密实例详解的相关资料,这里提供实现方法及实例,需要的朋友可以参考下


  • Python中selenium获取token的方法

    发布:2023-04-15

    本文主要介绍了Python中selenium获取token的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧


网友讨论