【Matplotlib】 标注摄氏度符号

之前论文中作图遇到的,其实也很简单。

关键的代码如下:

ax.set_xlabel('Temperature ($^\circ$C)')

完整的样例代码如下:

# -*- coding: utf-8 -*-

import matplotlib.pyplot as plt
x = range(10,60,1)
y = range(-100, 0, 2)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x,y)
ax.set_xlabel('Temperature ($^\circ$C)')

最终的图像如下:

【Matplotlib】 标注摄氏度符号

提醒:关于其他特殊符号的绘制,请参考matplotlib的官方文档中关于text部分的内容。

上一篇:h5开发安卓机型点击输入框调起输入法,输入框被键盘遮挡的解决方法


下一篇:BZOJ 1103: [POI2007]大都市meg( 树链剖分 )