diff --git a/CHANGELOG.md b/CHANGELOG.md index 42e181183d3c8232a55c8bc476f7c04307a05b01..6f5536a0065b8b84162029c5034cbc6092fd7261 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - The logo has now been moved to the lower-right corner of the figure so that it does not overlap with any information and it has been updated for a less pixelated version. (Médéric Boquien & Rodrigo González Castillo) - The wavelength range in SED plots is now dynamically adapted to cover the observed wavelengths. (Médéric Boquien) - The uncertainties on the SED plots now correspond only to 1σ rather than 3σ so they do not appear exceedingly large. (Médéric Boquien) +- The lines linking the different bands in the residual SED plot have been eliminated to improve the readability. (Médéric Boquien) ### Fixed - Make sure we can plot the PDF of equivalent widths. (Médéric Boquien) - Fix a crash when generating a mock catalogue containing intensive properties. (Médéric Boquien) diff --git a/pcigale_plots/plot_types/sed.py b/pcigale_plots/plot_types/sed.py index de39499bedea63589736bd50e4e60511150032a2..fb5001119943938fcc7a9ece4da440200ba33bf6 100644 --- a/pcigale_plots/plot_types/sed.py +++ b/pcigale_plots/plot_types/sed.py @@ -278,7 +278,7 @@ def _sed_worker(obs, mod, filters, sed_type, logo, xrange, yrange, series, (obs_fluxes[mask]-mod_fluxes[mask])/obs_fluxes[mask], yerr=obs_fluxes_err[mask]/obs_fluxes[mask], marker='_', label="(Obs-Mod)/Obs", color='k', - capsize=0.) + capsize=0., ls='None') ax2.plot([xmin, xmax], [0., 0.], ls='--', color='k') ax2.set_xscale('log') ax2.minorticks_on()