我试过了
import locale
locale.setlocale(locale.LC_TIME,'en_US')
tyme = [datetime(2009,10,6,12) + timedelta(hours=6*i) for i in range(5)]
plt.contour(x, tyme, data)
ax=plt.gca()
ax.yaxis.set_major_formatter(matplotlib.dates.DateFormatter('%Hz%d%b'))
,但y轴标签不是00Z07Oct,而是00Z0710□(可能是在我的语言环境中设定的,日语,字符是乱码的。)
另一方面,我试过了,
import locale
locale.setlocale(locale.LC_TIME,'en_US')
print datetime(2009,10,7,0).strftime(''%Hz%d%b)
结果是
00z07Oct
这个很好。
如何在不同的语言环境中设置matplotlib.dates.DateFormatter为英文?
我怀疑这与unicode问题有关,特别是matplotlib.cbook.unicode_safe()
。这个函数实际上是在strftime
输出的DateFormatter
中运行的。尝试为所有内容设置local,看看是否有帮助:
locale.setlocale(locale.LC_ALL,'en_US')
如果没有,只需定义一个没有cbook.unicode_safe()
调用的新DateFormatter
:
return cbook.unicode_safe(dt.strftime(fmt))
替换为:
return dt.strftime(fmt)
插入:
locale.setlocale(locale.LC_TIME,'en_US')
或:
locale.setlocale(locale.LC_ALL, "en_GB.utf8")
在你的身影里。
如果这不起作用,请尝试在图之前定义格式。例如
import locale
dfmt = dates.DateFormatter('%Hz%d%b')
...
locale.setlocale(locale.LC_ALL, "en_GB.utf8")
ax.yaxis.set_major_formatter(dfmt)