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.
np.array([pd.Series({'a':'a'})])
np.array([pd.Series({1:1})])
The last line here throws a KeyError: 0
KeyError: 0
import numpy as np import pandas as pd np.array([pd.Series({0:0})]) np.array([pd.Series({'a':'a'})]) np.array([pd.Series({1:1})])
Is that a bug?