-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scatter plot tick labels too large for bbob and bbob-largescale data? #1934
Comments
|
OK, I think the problem is that we see the automatically generated minor ticks, because the overall scale of the data is small. Disabling minor ticks should be a quick fix. |
l = matplotlib.ticker.FixedLocator([])
gca().xaxis.set_minor_locator(l) |
We added a marker at log10( |
Actually, the current version has the marker at |
I thought that the axis labels in our scatter plots show the exponent of the
log10(#f-evals)
, however, when comparing for example BIPOP-CMA-ES (onbbob
) with LBFGS (onbbob-largescale
), the scatter plots show for some functions surprisingly high values on the axes:Is this to be considered a bug or are these values really that high (I imagine it is the former)? It almost looks to me as if the dimensions (from 2 to 640) play a role here for the axes labels, but that would be even weirder.
The text was updated successfully, but these errors were encountered: