在Matplotlib,我想繪製厚加號(或橫),但在marker set提供的一個過薄。matplotlib:使加符號較厚
即使我增加它的大小,它也沒有變得更厚。
對於example: 的lines of code繪製紅色加號是:
# Draw median marker.
if plot_opts.get('bean_show_median', True):
ax.plot(pos, np.median(pos_data),
marker=plot_opts.get('bean_median_marker', '+'),
color=plot_opts.get('bean_median_color', 'r'))
如果我添加一個額外的參數markersize=20
,標記只會拉長。它會像以前一樣薄。我可以讓它變厚嗎?
作爲參考,知道默認情況下'mew = 0.5'和'ms = 6'是有用的... http://matplotlib.org/users/customizing.html –