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
In [93]: pandas.version Out[0]: '0.5.0'
In [94]: df = pandas.DataFrame({'A': [(1, 2)]})
AssertionError Traceback (most recent call last)
< .. snip ... >
The latter fails, however the following works fine:
In [95]: s = pandas.Series([(1, 2)]) ---> this was fixed in issue #270
In [96]: df = pandas.DataFrame({'A': s})
In [97]: s Out[0]: 0 (1, 2) Name: None, Length: 1
In [98]: df Out[0]: A 0 (1, 2)
The text was updated successfully, but these errors were encountered:
BUG: DataFrame can handle lists of tuples just like Series, a bit of …
e63cbd7
…refactoring for code reuse. GH #293
Fixed in the above commit
Sorry, something went wrong.
No branches or pull requests
In [93]: pandas.version
Out[0]: '0.5.0'
In [94]: df = pandas.DataFrame({'A': [(1, 2)]})
AssertionError Traceback (most recent call last)
< .. snip ... >
The latter fails, however the following works fine:
In [95]: s = pandas.Series([(1, 2)]) ---> this was fixed in issue #270
In [96]: df = pandas.DataFrame({'A': s})
In [97]: s
Out[0]:
0 (1, 2)
Name: None, Length: 1
In [98]: df
Out[0]:
A
0 (1, 2)
The text was updated successfully, but these errors were encountered: