-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
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
BUG: 0.12.0 using DataFrame.to_hdf() with mode='a' does not append the data #4584
Comments
|
Well, using
and then
overwrites df1 data in table_name with df2 data.
after df1
after df2
Am I missing something? |
try to 2nd one with I think FYI....prob going to deprecate the
and |
Thanks! |
oh....this is a 'bug'...going to fix..thanks for the report |
to_hdf(....., append=True,table=True)
raising, should accept thisIs there a way to use DataFrame.to_hdf() so that data can be appened the data? Somehow to_hdf(filename, table_name, mode='a', table=True) overwrites the data while to_hdf(filename, table_name, table=True, append=True) gives the following error:
The text was updated successfully, but these errors were encountered: