Open mdeceglie opened 9 months ago
rdtools.plotting.degradation_summary_plots() uses a matplotlib scatter plot with semi transparent points. The line width (lw) should be set to 0 to avoid undesirable solid lines appearing in the markers.
lw
Workaround until this is addressed:
ax1, ax2 = fig.get_axes() ax1.collections[0].set_linewidth(0)
taken care of with PR #433
rdtools.plotting.degradation_summary_plots() uses a matplotlib scatter plot with semi transparent points. The line width (
lw
) should be set to 0 to avoid undesirable solid lines appearing in the markers.