Sos*_*hty 4 python axis matplotlib pandas
我对这个情节有问题:
[![在此处输入图像描述][1]][1]
y 轴以单位为单位,但我需要它们以百万为单位:
[![在此处输入图像描述][2]][2]
你知道实现这一目标的方法吗?提前致谢。
import pandas as pd
import matplotlib .pyplot as plt
import matplotlib.ticker as ticker
fig, ax=plt.subplots()
ax.plot([1, 2], [1000000, 5000000])
scale_y = 1e6
ticks_y = ticker.FuncFormatter(lambda x, pos: '{0:g}'.format(x/scale_y))
ax.yaxis.set_major_formatter(ticks_y)
ax.set_ylabel('val in millions')
Run Code Online (Sandbox Code Playgroud)
您可以像这样使用自定义的 FuncFormatter:
from matplotlib.ticker import FuncFormatter
import matplotlib.pyplot as plt
def millions(x, pos):
'The two args are the value and tick position'
return '%1.1fM' % (x * 1e-6)
formatter = FuncFormatter(millions)
fig, ax = plt.subplots()
ax.yaxis.set_major_formatter(formatter)
Run Code Online (Sandbox Code Playgroud)
或者您甚至可以用以下函数替换数百万以支持所有量级:
def human_format(num, pos):
magnitude = 0
while abs(num) >= 1000:
magnitude += 1
num /= 1000.0
# add more suffixes if you need them
return '%.2f%s' % (num, ['', 'K', 'M', 'G', 'T', 'P'][magnitude])
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6565 次 |
| 最近记录: |