在使用 matplotlib 绘制数据时,我需要在 m2 中编写 2 的上标字符串。我该怎么做?
import matplotlib.pyplot as plt
x = [1,3,5,7,9,10,12]
y = [2,5,6,3,9,11,4]
plt.scatter(x, y)
plt.xlabel('x (m2)')
plt.ylabel('y')
plt.show()
plt.close()
在使用 matplotlib 绘制数据时,我需要在 m2 中编写 2 的上标字符串。我该怎么做?
import matplotlib.pyplot as plt
x = [1,3,5,7,9,10,12]
y = [2,5,6,3,9,11,4]
plt.scatter(x, y)
plt.xlabel('x (m2)')
plt.ylabel('y')
plt.show()
plt.close()