NREL / rdtools

PV Analysis Tools in Python
https://rdtools.readthedocs.io/
MIT License
146 stars 61 forks source link

linewidth should be 0 in plotting.degradation_summary_plots #408

Open mdeceglie opened 5 months ago

mdeceglie commented 5 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.

Screenshot 2024-02-12 at 5 04 18 PM

mdeceglie commented 5 months ago

Workaround until this is addressed:

ax1, ax2 = fig.get_axes()
ax1.collections[0].set_linewidth(0)