本文介绍了如何在python中使用matplotlib制作空心方形标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
下图中的黑线是使用以下命令绘制的matplotlib python
Black line in the following graph is plotting using the below command for matplotlib python
pylab.semilogy(xaxis, pq_averages, 'ks-',color='black', label='DCTCP-PQ47.5')
所以ks-"部分表示带有方形黑色标记的实线.因此,对于绘制的点,它具有实心正方形.这些方块可以做成空心的吗?
So 'ks-' part indicates solid line with square black marks. So it had solid squares for the plotted points. Can these squares be made hollow instead?
推荐答案
尝试像这样添加 markerfacecolor
:
pylab.semilogy(xaxis, pq_averages, 'ks-', markerfacecolor='none', label='DCTCP-PQ47.5')
这篇关于如何在python中使用matplotlib制作空心方形标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!