欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

数据可视化之 tick_params( 参数 )

程序员文章站 2022-09-04 18:05:39
参考:https://blog.csdn.net/helunqu2017/article/details/78736554/ 初学数据可视化,遇到了tick_params() 里面传参数问题,找了一些资料,觉得这个简单明了,非常好用,推荐看下! 1.tick_params语法 Axes.tick_p ......

参考:https://blog.csdn.net/helunqu2017/article/details/78736554/

初学数据可视化,遇到了tick_params() 里面传参数问题,找了一些资料,觉得这个简单明了,非常好用,推荐看下!

1.tick_params语法 
axes.tick_params(axis=’both’, **kwargs)

参数: 
axis : {‘x’, ‘y’, ‘both’} axis on which to operate; default is ‘both’. (axis:轴) 
reset : bool if true, set all parameters to defaults before processing other keyword arguments. default is false. 
which : {‘major’, ‘minor’, ‘both’} default is ‘major’; apply arguments to which ticks. 
direction : {‘in’, ‘out’, ‘inout’} puts ticks inside the axes, outside the axes, or both. 
length : float tick length in points. 
width : float tick width in points. 
color : color tick color; accepts any mpl color spec. 
pad : float distance in points between tick and label. 
labelsize : float or str tick label font size in points or as a string (e.g., ‘large’). 
labelcolor : color tick label color; mpl color spec. 
colors : color changes the tick color and the label color to the same value: mpl color spec. 
zorder : float tick and label zorder. 
bottom, top, left, right : bool or {‘on’, ‘off’} controls whether to draw the respective ticks. 
labelbottom, labeltop, labelleft, labelright : bool or {‘on’, ‘off’} controls whether to draw the respective tick labels. 
labelrotation : float tick label rotation

2.tick_params例子: 
参数axis的值为’x’、’y’、’both’,分别代表设置x轴、y轴以及同时设置,默认值为’both’。 
ax1.tick_params(axis=’x’,width=2,colors=’gold’) 
ax2.tick_params(axis=’y’,width=2,colors=’gold’) 
ax3.tick_params(axis=’both’,width=2,colors=’gold’) 
数据可视化之 tick_params(  参数 ) 
参数which的值为 ‘major’、’minor’、’both’,分别代表设置主刻度线、副刻度线以及同时设置,默认值为’major’ (主刻度线、副刻度线类似于厘米尺。cm与mm的区别) 
ax1.tick_params(which=’major’,width=2,colors=’gold’) 
ax2.tick_params(which=’minor’,width=2,colors=’gold’) 
ax3.tick_params(which=’both’,width=2,colors=’gold’) 
数据可视化之 tick_params(  参数 )

参数direction的值为’in’、’out’、’inout’,分别代表刻度线显示在绘图区内侧、外侧以及同时显示 
ax1.tick_params(direction=’in’,width=2,length=4,colors=’gold’) 
ax2.tick_params(direction=’out’,width=2,length=4,colors=’gold’) 
ax3.tick_params(direction=’inout’,width=2,length=4,colors=’gold’) 
数据可视化之 tick_params(  参数 )

length和width 
参数length和width分别用于设置刻度线的长度和宽度 
ax2.tick_params(width=4,colors=’gold’) 
ax3.tick_params(length=10,colors=’gold’) 
数据可视化之 tick_params(  参数 )

参数pad用于设置刻度线与标签间的距离 
ax2.tick_params(pad=1,colors=’gold’) 
ax3.tick_params(pad=10,colors=’gold’) 
数据可视化之 tick_params(  参数 )

参数color、labelcolor、colors分别用于设置刻度线的颜色、刻度线标签的颜色以及同时设置刻度线及标签颜色 
ax1.tick_params(width=4,color=’gold’) 
ax2.tick_params(width=4,labelcolor=’gold’) 
ax3.tick_params(width=4,colors=’gold’) 
数据可视化之 tick_params(  参数 )

参数labelsize用于设置刻度线标签的字体大小 
ax1.tick_params(labelsize=’medium’) 
ax2.tick_params(labelsize=’large’) 
ax3.tick_params(labelsize=15) 
数据可视化之 tick_params(  参数 )

参数bottom, top, left, right的值为布尔值,分别代表设置绘图区四个边框线上的的刻度线是否显示 
ax1.tick_params(bottom=false,top=true,width=4,colors=’gold’) 
ax2.tick_params(left=false,right=true,width=4,colors=’gold’) 
ax3.tick_params(top=true,right=true,width=4,colors=’gold’) 
数据可视化之 tick_params(  参数 )

参数labelbottom, labeltop, labelleft, labelright的值为布尔值,分别代表设置绘图区四个边框线上的刻度线标签是否显示 
ax1.tick_params(labelbottom=false,labeltop=true,width=4,colors=’gold’) 
ax2.tick_params(labelleft=false,labelright=true,width=4,colors=’gold’) 
ax3.tick_params(labeltop=true,labelright=true,width=4,colors=’gold’) 
数据可视化之 tick_params(  参数 )