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
in a Jupyter notebook, the plots of data and fit are automatically displayed, but the fitted line is only plotted over the first and last datapoint. In an unsorted array/list, this gives unexpected plots, not starting from the beginning. A simple addition of min/max calls when plotting would solve this issue.
The text was updated successfully, but these errors were encountered:
Can you upload an example image? I cannot quite picture what you mean. Ideally, if you could provide a short reproducer so that I can see what the issue is, I might be able to fix it. Or if you already know how to fix it, please submit a PR.
After fitting a function where the x-values are not ordered, the line plot is not covering the whole range. See below image. The x-value array/list here starts at 0.43 and ends (last entry) is 0.83, while the whole array/list contains smaller and larger values.
After running
in a Jupyter notebook, the plots of data and fit are automatically displayed, but the fitted line is only plotted over the first and last datapoint. In an unsorted array/list, this gives unexpected plots, not starting from the beginning. A simple addition of min/max calls when plotting would solve this issue.
The text was updated successfully, but these errors were encountered: