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 'hack' solution is to edit visualisation.py (in the package).
Edit lines 382 and 385, changing the "%.2g" to a "%.0f" (line 382) and style='sci' to 'plain', and comment out everything after 'y' (line 385).
381 for x, y in zip(self.x_values, inters_sizes):
382 ax.text(x, y + label_vertical_gap, "%.0f" % y,
383 rotation=90, ha='center', va='bottom',size=14)
This will force it to present the vertical bar plot labels as integers. Repeat the second part on 297 if you want to format the "Set Size" part (lower left corner of figure).
I think there will be a way to do it without editing the package, by getting the figure object and changing the tick formatter, but I struggled with that.
Best solution would be a kwarg the user could pass to define if they want scientific or not at the first stage.
No description provided.
The text was updated successfully, but these errors were encountered: