Hi all,
I've used AxesGrid to draw a multipanel plot, and it properly worked. But now, I want to make a multipanel plot with a multicolumn like this. First row - 3 plots Second row - 4 plots Third row - 3 plots I looked at the document of AxesGrid but it seems that it only supports uniform grid structure (ex. 2x5, 3x3)
And I also tried to use fixed resolution buffer to transform dataset to array, but it doesn't work ``` p = yt.ParticleProjectionPlot(ds,'z', (dm_f, 'particle_mass') ,width = (1200, "kpccm"),center=cen, density=True) p.data_source.to_frb((size, "kpccm"), 1024)
'ParticleAxisAlignedDummyDataSource' object has no attribute 'to_frb'
```
Is there any way to draw a multicolumn plot like this link? (https://matplotlib.org/stable/gallery/subplots_axes_and_figures/gridspec_mul...) I would appreciate it if anyone can give me some hints. Thank you for reading!
Sincerely, HyeonYong