给出以下代码:
import matplotlib.pyplot as plt
import numpy as np
y=np.linspace(0,135000, 135001)
t=range(-len(y),0)
plt.plot(t,y)
答案 0 :(得分:2)
使用matplotlib.ticker.FuncFormatter
(see docs):
plt.gca().get_xaxis().set_major_formatter(FuncFormatter(lambda x, p: format(int(x/1000), ',')))
plt.show()