-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: DataFrame.align bug with join keyword (GH13914) #13216
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
Conversation
@jreback Is this okay? |
in the future, simply push to the SAME PR, don't open new ones for the same thing. ok for now. |
@@ -149,3 +149,4 @@ Bug Fixes | |||
- Bug in ``NaT`` - ``Period`` raises ``AttributeError`` (:issue:`13071`) | |||
- Bug in ``Period`` addition raises ``TypeError`` if ``Period`` is on right hand side (:issue:`13069`) | |||
- Bug in ``pd.set_eng_float_format()`` that would prevent NaN's from formatting (:issue:`11981`) | |||
- Fixed the bug regarding the unavailabilty of ``empty`` attribute for Index. The ``empty()`` function for Index has been implemented. The function returns True for an empty Index and False for a non empty Index (:issue: `13207`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Index
gained the .empty
attribute.
@jreback Implemented all of your comments. Hope it's fine now. |
@@ -149,3 +149,4 @@ Bug Fixes | |||
- Bug in ``NaT`` - ``Period`` raises ``AttributeError`` (:issue:`13071`) | |||
- Bug in ``Period`` addition raises ``TypeError`` if ``Period`` is on right hand side (:issue:`13069`) | |||
- Bug in ``pd.set_eng_float_format()`` that would prevent NaN's from formatting (:issue:`11981`) | |||
- Index gained the .empty attribute. The function returns True for an empty Index and False for a non empty Index (:issue: `13207`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pls quote class and property with ``.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sinhrks Done.
@MaximilianR It was a typo. Fixed it. |
@@ -149,3 +149,4 @@ Bug Fixes | |||
- Bug in ``NaT`` - ``Period`` raises ``AttributeError`` (:issue:`13071`) | |||
- Bug in ``Period`` addition raises ``TypeError`` if ``Period`` is on right hand side (:issue:`13069`) | |||
- Bug in ``pd.set_eng_float_format()`` that would prevent NaN's from formatting (:issue:`11981`) | |||
- ``Index`` gained the ``.empty`` attribute. The function returns True for an empty ``Index`` and False for a non empty ``Index`` (:issue: `13207`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just the first sentence. Move to enhancements.
@jreback I think I have it this time. Is this method right? |
can you rebase / update |
@jreback Right? |
yes, see docs here |
@jreback Done. I hope this is alright. |
@@ -39,6 +39,8 @@ Other enhancements | |||
idx = pd.Index(["a1a2", "b1", "c1"]) | |||
idx.str.extractall("[ab](?P<digit>\d)") | |||
|
|||
- ``Index`` gained the ``.empty`` attribute. (:issue: `13207`) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no space between : and '
I don't see any changes, you need to |
I did a If I do a |
you cannot push to origin you need to push to your fork |
My origin is set as my forked repo.
Output: |
@pfrcks : You can set your local branch to track your origin version by doing the following:
From then on, you can just do |
@gfyoung I have followed the comments you gave. It gives "Everything up-to-date" as output. |
@pfrcks: that's perfectly fine! That's because your local branch is sync'ed with your remote branch with the same name. You can now see that by typing |
can you rebase / update? |
You should |
I am currently on bug13207 branch that I have created. I followed the rest of the steps and have again pushed the branch using |
@pfrcks Possibly your upstream master was not updated? (in any case, although you say you force pushed, no new/rebased commits are in this PR and there are still conflicts, so something went wrong). Can you do
before rebasing/merging? And then force push again? |
can you rebase this on master |
I rebased.
|
can you rebase, move release note to 0.20.0 |
closing as stale |
git diff upstream/master | flake8 --diff