How to adjust individual axes for AlgebraOfGraphics faceted plots?

I have a faceted plot drawn with, where rows and columns are mapped to some variables so I have a grid of figures. They are drawn with linked axes:

facet=(; linkxaxes=:none, linkyaxes=:minimal),

However, some axes become too cramped while others are not. How can I adjust individual rows of axis?

Example rows from the same plot:

Screenshot_20230123_131130
Screenshot_20230123_131149

I hard coded it with a custom struct implementing Makie.get_tickvalues. Kind of undocumented way to do things.

You can try WilkinsonTicks https://docs.makie.org/stable/examples/blocks/axis/index.html#wilkinsonticks with something like 3 or so to reduce the number of ticks from our auto-tick-finder. There are also other settings like min and max number of ticks.