how to make hollow square marks with matplotlib in python

后端 未结 2 1042
我寻月下人不归
我寻月下人不归 2021-02-05 04:19

Black line in the following graph is plotting using the below command for matplotlib python

pylab.semilogy(xaxis, pq_averages, \'ks-\',color=\'black\', label=\'D         


        
2条回答
  •  我寻月下人不归
    2021-02-05 04:30

    Try adding markerfacecolor like so:

    pylab.semilogy(xaxis, pq_averages, 'ks-', markerfacecolor='none', label='DCTCP-PQ47.5')
    

提交回复
热议问题