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
When running plot_pareto.plot, I am getting the following error:
File "/usr/local/lib/python3.9/dist-packages/hypermapper/plot_pareto.py", line 371, in plot
tick.label.set_fontsize(
AttributeError: 'XTick' object has no attribute 'label'
When running
plot_pareto.plot
, I am getting the following error:I believe this is a bug as
Tick
objects do not have alabel
property (https://matplotlib.org/stable/api/axis_api.html#matplotlib.axis.Tick). This is an error regardless of whether I run it viahm-plot-pareto
orplot_pareto
.Replacing the two lines with
tick.label1.set_fontsize(...)
fixes this behavior.The text was updated successfully, but these errors were encountered: