Håkon Wiik Ånes
Håkon Wiik Ånes
Hi @kolibril13! I won't say it's not possible, but I've never seen a way to do it. I say this as a daily user of Matplotlib. `savefig()` is ment to...
> As these images have a resolution about 2000x2000 pixel, I don't want to lose image quality when adding the scalebar. Aha, the scalebar would *not* be pixelated, then, wrong...
Hi @altanir84, you could perhaps pass `border_pad`? ```python >>> import matplotlib.pyplot as plt >>> from matplotlib_scalebar.scalebar import ScaleBar >>> import numpy as np >>> a = np.random.normal(size=100).reshape((10, 10)) >>> legend_kwds...
Great! I suppose passing `bbox_to_anchor` overrides `location`?
> I will only have time to look into this after next week. That would be great! However, there is no rush to amend this behaviour with sphinx-gallery v0.11 from...
We have plans to try out LiberTEM's UDFs in kikuchipy as well (https://github.com/pyxem/kikuchipy/issues/321), so I'm interested in seeing it goes, @din14970! As Magnus mentions, the "interactivity" of dask array signals...
For reviewers of this, the failing tests are unrelated to this PR.
To decide whether a point in a crystal map is "in the data" or not, I simply added a boolean array in the attribute `CrystalMap.is_in_data` ([code](https://github.com/pyxem/orix/blob/master/orix/crystal_map/crystal_map.py#L197)). `True` are in the...
I haven't thought much about how to implement masking, but our plan is to start small and allow passing boolean masks of navigation shape to some EBSD methods. I don't...
Seems to me like adding a tolerance to 1e-3 should fix this.