We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
>>> Axis([0, "a"], "value") Axis(['0', 'a'], 'value')
The only workaround I know is to force the dtype at the numpy level:
>>> Axis(np.array([0, "a"], dtype=object), "value") Axis([0, 'a'], 'value')