You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above time series was obtained from a non-Gaussian distribution; the vertical axis is not centered at 0 but rather at that tiny value (something ^ -18).
Are the two things related and can the axis centering be rounded either by hand or automatically ?
The text was updated successfully, but these errors were encountered:
You could manually set either to get it to display 0.0 exactly.
I'm not sure the best way to deal with this case automatically. You could do something adhoc like map (\x -> if x < 1e-5 * abs (b - a) then 0 else x) ticks (where a and b are the bounds of the axis) to set values very close to zero and much smaller than the data range to exactly zero. But it's not perfect.
Another option is to calculate the majorTicksFunction using Rational so we get exact values.
The above time series was obtained from a non-Gaussian distribution; the vertical axis is not centered at 0 but rather at that tiny value (something ^ -18).
Are the two things related and can the axis centering be rounded either by hand or automatically ?
The text was updated successfully, but these errors were encountered: