yngwaz
Results
1
comments of
yngwaz
The workaround for this issue (found by my colleague at work) is as follows: ```python fig = plt.figure() rect = [0.1, 0.1, 0.8, 0.8] hist_ax = plt.Axes(fig,rect) hist_ax.bar(np.array([1]), np.array([1])) #...