将度符号插入python图中

use*_*143 28 python symbols matplotlib

这是一个非常简单的问题,但它逃避了我.我只是想在我的python情节的标题和图例中插入一个度数符号.代码如下.谢谢.

from numpy import *
import numpy as np
import matplotlib.pyplot as plt

theta1 = linspace(0,60,610)
theta2 = linspace(0,45,460)
theta3 = linspace(45,90,460)

CTS = 1/cos(radians(theta1))
CTS0 = 1/cos(radians(60-theta2))
CTS45 = 1/cos(radians(105-theta3))

plt.plot(theta1,CTS,label=u'CTS Head at 0',linewidth=2)
plt.plot(theta2,CTS0,label='CTS Head at 60',linewidth=2)
plt.plot(theta3,CTS45,label='CTS Head at 105',linewidth=2)

plt.xlabel('Manufactured Ply Angle (degrees)')
plt.ylabel('Thickness')

plt.legend( loc='lower right', numpoints = 1 )
plt.ylim([0,2.5])

plt.grid(b=None, which='major', axis='both')
plt.grid(color='k', linestyle='--', linewidth=0.5)
plt.axhline(y=1.035, xmin=0, xmax=90,color='k', linestyle='-', linewidth=1)

plt.show()
Run Code Online (Sandbox Code Playgroud)

Mai*_*mon 37

使用LaTeX Style.例如:$^\circ$ Text会产生°Text

有关打印(尤其是数学表达式)的更多信息,请参阅matplotlib文档.

在您的情况下,代码必须是: plt.xlabel('Manufactured Ply Angle $^\circ$')

表达式的TeX部分必须用美元符号"$"括起来.


dad*_*ist 5

使用LaTeX数学。在我的系统上,通过

label = r'$45\degree$'

它看起来就像极坐标图的默认theta标签。

正如其他人指出的那样,

  • label = r'$45^\circ$'
  • label = '$45^o$'

等也可以,但是视觉效果不是很好。在我的系统上,这些变通办法呈现的符号太小。YMMV,因此可能要尝试在她的系统上看起来最好的东西。

例如,在一个极性轮廓图上,可能要使用半径为天顶角的正弦值

deg_labels = np.array([5, 10, 20, 30, 45, 60, 90])
ax.set_rgrids(np.sin(np.deg2rad(deg_labels)),     
              labels=(r"${:.0f}\degree$".format(_) for _ in deg_labels))
Run Code Online (Sandbox Code Playgroud)

  • `\deg` 看起来比 `^\circ` 更好。 (2认同)