Carter Francis

Results 575 comments of Carter Francis

@jlaehne Hopefully I can get around to looking at this today :)

@hakonanes Seems simple enough and would be a nice addition

I've found this wikipedia section to be quite useful: https://en.wikipedia.org/wiki/DBSCAN#Abstract_algorithm Just a note that there are 2 parameters which are important for DBScan. The `eps` value which is the maximum...

Some other things: We can have multiple signals. Of course both of them respond to the key press events however that is kind of nice I guess in some cases....

Some more examples: This is making inset images from ROI's. It might be nice to make it easier to do things like change the color of the edge for some...

And another example that is a bit more interactive: ```python fig = plt.figure(figsize=(5,3)) gs = fig.add_gridspec(6,15) sub0 = fig.add_subfigure(gs[1:5,0:5]) sub1 = fig.add_subfigure(gs[0:6,5:11]) sub2 = fig.add_subfigure(gs[0:2,11:13]) sub3 = fig.add_subfigure(gs[2:4,12:14]) sub4 =...

@ericpre @magnunor Any thoughts on this? I think this should be fairly useful.

> I wasn't aware of `matplotlib.figure.SubFigure` and it seems that this is exactly what we need! This will be very convenient! > > * This PR introduce an issue: `s._plot.signal_plot.figure`...

@ericpre the closing is a bit more complicated and I wonder what the best way to do that is? We can create a new class which allows you to wrap...

> I suspect that they may be two options: > > * Subclass `matplotlib.figure.Figure` add the hyperspy close event functionality and refactor to integrate with `BlittedFigure` > * make a...