When plotting Makie automatically set axis limits. I would like to keep the automatically generated upper limit while setting the lower one to zero. How could I do that?
At first I wanted to get the current limits and reset them, but ax.limits give me (nothing, nothing).
I would have to add that scenario specifically, I guess I could go with ((nothing, lim), nothing) for setting the upper x limit, for example. What is the scenario in which you want to do this, so I understand it better. Are you adding plots but don’t want zero to shift? Also, ax.finallimits is what contains the actual current limits
I am plotting errors (always positive) for different methods. If the errors are all huge but one is like 1% smaller, having limits tight around the lines make it look like one method is much better than the other when really it is not. I want like the plot to start at 0 so that relative small difference or noise actually look small.