所以有這個指南: http://matplotlib.org/examples/pylab_examples/scatter_symbol.html Matplotlib定製標記/符號
# http://matplotlib.org/examples/pylab_examples/scatter_symbol.html
from matplotlib import pyplot as plt
import numpy as np
import matplotlib
x = np.arange(0.0, 50.0, 2.0)
y = x ** 1.3 + np.random.rand(*x.shape) * 30.0
s = np.random.rand(*x.shape) * 800 + 500
plt.scatter(x, y, s, c="g", alpha=0.5, marker=r'$\clubsuit$',
label="Luck")
plt.xlabel("Leprechauns")
plt.ylabel("Gold")
plt.legend(loc=2)
plt.show()
但如果你像我一樣,不想使用clubsuit標誌...
如何你做自己的記號嗎?
UPDATE
我喜歡這個特殊的標記類型是很容易用簡單的matplotlib語法調整:
from matplotlib import pyplot as plt
import numpy as np
import matplotlib
x = np.arange(0.0, 50.0, 2.0)
y = x ** 1.3 + np.random.rand(*x.shape) * 30.0
s = np.random.rand(*x.shape) * 800 + 500
plt.plot(x, y, "ro", alpha=0.5, marker=r'$\clubsuit$', markersize=22)
plt.xlabel("Leprechauns")
plt.ylabel("Gold")
plt.show()
,你會不得不看看[這裏](http://stackoverflow.com/q/2318288/1025391)? – moooeeeep
是的,我其實有。但它沒有爲我工作。我喜歡matplotlib示例代碼是'c =「g」',我將其解釋爲該圖的顏色調整(在寫作時沒有測試它的python shell)。 – Norfeldt