matplotlib marker 추가/제거

fig = plt.Figure()

ax = fig.add_subplot(111)

ax.plot(list(range(10)), marker="o")

ax.lines[0].set_marker(None)

ax.lines[0].set_markevery([5, 7])

댓글

이 블로그의 인기 게시물

sklearn tsne + matplotlib scatter

Implementation of Focal Loss using Pytorch