We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make it easier to create a hierarchical index from a list of arrays in the Series and DataFrame constructors
The text was updated successfully, but these errors were encountered:
ENH: as_multi keyword in Series/DataFrame constructor. #831
6b276c7
OK, I just made this work minimally without as_multi, used pared down versions of your test cases:
In [2]: s = Series([1, 2, 3, 4], index=[[1, 1, 2, 2], [0, 0, 1, 1]]) In [3]: s Out[3]: 1 0 1 0 2 2 1 3 1 4
Sorry, something went wrong.
Need to add something to the docs for this guy
4c31c83
BUG: unhandled case in Series with index=list of arrays #831
bc02347
DOC: Sphinx docs creating Series with list of arrays as index to auto…
b60cf46
…matically create MultiIndex #831
No branches or pull requests
Make it easier to create a hierarchical index from a list of arrays in the Series and DataFrame constructors
The text was updated successfully, but these errors were encountered: