Philipp Schlegel
Philipp Schlegel
I'm having a related issue: When texts' starting positions are the same, they will never be moved apart. One conceivable option would be to check for text occupying the same...
That makes sense - thanks for the quick response. Some of my confusion comes from the observation that when I do the same thing but with `DataFrame`, there is no...
I'd consider using [ncollpyde](https://github.com/clbarnes/ncollpyde). It's fast (wraps Rust) and has universal wheels (i.e. installs easily on all platforms).
Hi. You should be able to pass a dictionary as `palette` to set colors for specific values. For that to work your label column must be categorical instead of numerical...
Thanks for the report, Jakob! I hadn't looked at this dataset in a while but it seems the datastacks were updated: for the `cortex65` it used to be just `minnie65_public_v117`...
Oh interesting. I have FlyWire matches for ~2800 hemibrain types which gives a decently sized test set.
Hi. I took the liberty to format your code (see this [link](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks)) - makes reading it easier. I see you've found the save to SWC method - that's a commonly...
Out of curiosity: have you experienced issues with the previous sorting when loading the SWC files elsewhere? Also: Did you do any benchmarking, i.e. does this impact performance for writing...
Thanks for testing this! I think 9% slow down isn't the end of the world. I guess there are actually three scenarios to consider here: 1. Leave node IDs as...
I would also try to reduce the number of concurrent requests and see if that improves things: ```python >>> rm = pymaid.CatmaidInstance("URL", None, max_threads=5) # default is max_threads=10 ```