Hey maintainers!
Thanks for such a cool tutorial resource provided.
One tinyyy thing, in https://github.com/jaxleyverse/jaxley/blob/main/docs/tutorials/01_morph_neurons.ipynb:
#The easiest way to know which branch is the 1st branch (or, e.g., the zero-eth compartment of the 1st branch) is to plot it in a different color:
fig, ax = plt.subplots(1, 1, figsize=(4, 2))
_ = cell.vis(ax=ax, color="k")
_ = cell.branch(1).vis(ax=ax, color="r")
_ = cell.branch(1).comp(1).vis(ax=ax, color="b")
should it be comp(0) instead of comp(1)? considering the comment above cites that?
Hey maintainers!
Thanks for such a cool tutorial resource provided.
One tinyyy thing, in https://github.com/jaxleyverse/jaxley/blob/main/docs/tutorials/01_morph_neurons.ipynb:
should it be comp(0) instead of comp(1)? considering the comment above cites that?