之前论文中作图遇到的,其实也很简单。
关键的代码如下:
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
的官方文档中关于text
部分的内容。