mjpelah
mjpelah
Ahh yes I understand. So you want a new method (ex. `_plot_cell_type_morphologies`), which calls `plot_cell_morphology`, that iterates through the cell types and creates models for each one. This new method...
> Btw, all the visualization functions are put in one file so that the code is all in one place and redundancy is avoided between functions. Then they are called...
> I would create a separate function/method. You can always combine it with other visualizations by creating subplots. E.g.: > > ```python > fig, axes = plt.subplots(2, 1) > net.plot_morphology(ax=axes[0])...