Issue
I have a matplotlib
plot generated with the following code:
import matplotlib.pyplot as pyplot
Fig, ax = pyplot.subplots()
for i, (mark, color) in enumerate(zip(
['s', 'o', 'D', 'v'], ['r', 'g', 'b', 'purple'])):
ax.plot(i+1, i+1, color=color,
marker=mark,
markerfacecolor='None',
markeredgecolor=color,
label=i)
ax.set_xlim(0,5)
ax.set_ylim(0,5)
ax.legend()
with this as the generated figure:
I don't like the lines through the markers in the legend. How can I get rid of them?
Solution
You can specify linestyle='None'
or linestyle=''
as a keyword argument in the plot command. Also, ls=
can replace linestyle=
.
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
for i, (mark, color) in enumerate(zip(
['s', 'o', 'D', 'v'], ['r', 'g', 'b', 'purple'])):
ax.plot(i+1, i+1, color=color,
marker=mark,
markerfacecolor='None',
markeredgecolor=color,
linestyle='None',
label=i)
ax.set_xlim(0, 5)
ax.set_ylim(0, 5)
ax.legend(numpoints=1)
plt.show()
Since you're only plotting single points, you can't see the line attribute except for in the legend.
Answered By - tom10
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.