You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, if including channel number 0 in to the analysis, one can get a residual plot like this: residuals_original.pdf
when it really should look like this (note: in this example there are no counts below channel ~20): residuals_fixed.pdf
To fix the problem one can replace lines like self._ax_resid.set_ylim([channel_edges[0], with self._ax_resid.set_ylim([_np.max([channel_edges[0],0.001]), in _residual.py. Similar fixes should probably be done in other signal plot types.
For example, if including channel number 0 in to the analysis, one can get a residual plot like this:
residuals_original.pdf
when it really should look like this (note: in this example there are no counts below channel ~20):
residuals_fixed.pdf
To fix the problem one can replace lines like
self._ax_resid.set_ylim([channel_edges[0],
withself._ax_resid.set_ylim([_np.max([channel_edges[0],0.001]),
in_residual.py
. Similar fixes should probably be done in other signal plot types.This problem was encountered by @Sidewaysgravity79 .
The text was updated successfully, but these errors were encountered: