-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
combine_first behavior change #2525
Comments
this was 9edd478 due to #2307, Note that as far back as 0.9.0 the docstring read: Combine two DataFrame objects and default to non-null values in frame so this was a long-standing bug fixed. |
the columns behaviour is not clearly documented, though. |
Yes, it should be the union of the columns. I added a unit test-- sorry for the disruption, but I think doing otherwise is a bug |
* commit 'v0.10.0b1-51-gbbe2fc1': (518 commits) BLD: add patsy, numexpr to ci/print_versions.py BUG: fix DataFrame.icol with list of integers when columns are integers with duplicates. close pandas-dev#2259 TST: unit test to assert behavior described in pandas-dev#2525 BUG: compat OrderedDict import for python 2.6 DOC: Emphazise that cython is needed when installing from the repo in install.rst BLD: document pytz as a hard dependency BUG: import OrderedDict from util.compat for 2.6 BUG: df.from_dict should respect OrderedDict 2517 start date -> 7/1/12 ENH: vbench support for HDFStore added benchmarchs to compare (100,000) rows: read/write store read/write store mixed read/write table read/write table wide (200 columns) read/write table mixed query wide/table TST: refactoring to speed up test suite BUG: more floating point error robustness in rolling mean. close pandas-dev#2527 BUG: fix python 3 zip usage DOC: updated HDFStore docs for indexing support and better explanations on how to deal with strings in indexables/values ENH: allow index recreation by calling create_table_index with new parameters BUG: fixed versioning of the data, not reporting correct warnings BUG: fixed string appending when length of subsequent is longer/shorter that existing removed meta data saving disable memory tests (and put a try:except: around it) DOC: small doc change w.r.t. min_itemsize BUG: fixed string truncation in values by passing min_itemsize = { 'values' : 1024 } BUG: non-datetime indicies were not being handled correctly in searchings (via Terms) added support for integer, float, date ...
In 0.9.0, this returns:
In 0.10.0b1, this returns:
The text was updated successfully, but these errors were encountered: