Matplotlib特定标记(旋转符号)

时间:2014-07-21 20:52:20

标签: python matplotlib marker

我想知道这个标记名称是什么(到目前为止我无法发现):

enter image description here

如果有相反的一个(箭头在顺时针方向旋转)

来自that示例。

谢谢。

1 个答案:

答案 0 :(得分:4)

使用乳胶(或者更确切地说,matplotlib内置" mathtex")来绘制$\circlearrowleft$。相反的方向是`$ \ circlearrowright $'。

作为一个简单的例子:

import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots()

ax.scatter(*np.random.random((2, 5)), s=200, marker=r'$\circlearrowleft$')
ax.scatter(*np.random.random((2, 5)), s=200, marker=r'$\circlearrowright$')

plt.show()

enter image description here