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.
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
from mailing list
import pandas import numpy as np import pandas print pandas.__version__ 0.7.2.dev-12d511f df1 = pandas.DataFrame(data=None, columns=['A','B','C']) df1 = df1.set_index(['A']) df2 = pandas.DataFrame(data=[[1,4,7],[2,5,8],[3,6,9]], columns=['A','B','C']) df2 = df2.set_index(['A']) print df1.append(df2).index.names [None]
The text was updated successfully, but these errors were encountered:
BUG: eradicate use of NULL_INDEX 'singleton', failing unit test for #980
079aee8
BUG: preserve matching index names in DataFrame.append via concat, In…
06dba79
…dex.append close GH #980
No branches or pull requests
from mailing list
The text was updated successfully, but these errors were encountered: