python 将Axis刻度标签格式化为百分比。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将Axis刻度标签格式化为百分比。相关的知识,希望对你有一定的参考价值。

import matplotlib as mpl

# Initialize a Percent Formatter for the axis
def to_percent(y, position): 
    return '%3.0f' % (100. * y) + '%'
  
pct_formatter = mpl.ticker.FuncFormatter(to_percent)

plt.gca().yaxis.set_major_formatter(pct_formatter)

以上是关于python 将Axis刻度标签格式化为百分比。的主要内容,如果未能解决你的问题,请参考以下文章

python使用matplotlib可视化自定义设置X轴刻度标签字体的大小( setting axis ticks size in matplotlib x axis)

格式轴刻度标签

python使用matplotlib可视化自定义设置轴刻度标签字体的大小( setting axis ticks size in matplotlib)

python使用matplotlib可视化移除可视化图像X轴坐标轴的刻度线和标签( remove the default axis ticks and labels of x axis)

python使用matplotlib可视化移除可视化图像Y轴坐标轴的刻度线和标签( remove the default axis ticks and labels of y axis)

python使用matplotlib可视化自定义Y轴轴标签刻度旋转的角度(customize degree rotating axis tick labels in matplotlib)