You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, store.append(data) and store.put(data, append=Truehave different implementations instore_wrapper.HDFStore`. While this mirrors the pandas API, it is confusing having two implementations.
We should consider replacing the .append() implementation with a call to .put(..., append=True).
The text was updated successfully, but these errors were encountered:
Currently,
store.append(data)
and store.put(data, append=Truehave different implementations in
store_wrapper.HDFStore`. While this mirrors the pandas API, it is confusing having two implementations.We should consider replacing the
.append()
implementation with a call to.put(..., append=True)
.The text was updated successfully, but these errors were encountered: