Hans Moritz Günther

Results 445 comments of Hans Moritz Günther

There are a few assumptions hardcoded. I'll have ot get to that when I get to plotting datastacks...

Note on this: Astropy saw a significant (> 30% if I remember correctly) speed-up with numpy 2.0 over numpy 1.x on average across the test suite on some systems (in...

It's always fun if a problem can be solved by removing code...

That should be as easy as changing `self.current_fig.title = title` to `self.current_axis.title = title` if that's what we want. If there is only one plot, that will work. I have...

First let me say that is very useful and very welcome functionality. I've monkeyed way to do just that in essentially every paper I've ever done with Sherpa. In it's...

I worry a bit about the complexity of our plotting system. Adding this plot here is fine, but I'm not sure we are in a state to re-wire it for...

All my concerns have been answered. Feel free to rebase any time you are ready.

And I'll give it a final approval when the tests pass after that.

I agree that it's not easy and won't be addressed any time soon, however I do think it would be useful in many scenarios and thus deserved an open issue...

The datastack plotting wrapper uses yet again to different functions ``` def initialize_plot(self, dataset, ids): plt.figure(ids.index(dataset['id']) + 1) def select_plot(self, dataset, ids): plt.figure(ids.index(dataset['id']) + 1) ``` Theses are not currently...