-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
TYP: added explanation of the join methods within df.align #53101
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
/preview |
Website preview of this PR available at: https://pandas.pydata.org/preview/53101/ |
Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
Im getting this error with the proposed changes and I fail to see how this could be caused by the documentation: Any ideas? Is it a common issue? |
Looks like theres a doc issue:
Also no need to worry about that warning |
Thank you for this - the last line of the list should have been indented apparently. Fixed it and it should be ready to close now. If you could point me to where to look in the logs next time, I'd appreciate it as I spent some time trying to find the error and couldn't find the above for the life of me. PS: Im quite new to git/github. Apologies for closing/reopening - thought this action would merge the pull request to the main branch. |
Thanks @Antony-evm |
…v#53101) * added description to join methods of alignment * Update generic.py * run ruff/black to fix type errors * Update pandas/core/generic.py Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> * update from - to * to follow join's doc guide * Update generic.py --------- Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
…v#53101) * added description to join methods of alignment * Update generic.py * run ruff/black to fix type errors * Update pandas/core/generic.py Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> * update from - to * to follow join's doc guide * Update generic.py --------- Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
Added type annotations of the join methods within df.align - (here)
from join : {{'outer', 'inner', 'left', 'right'}}, default 'outer'
To
join : {{'outer', 'inner', 'left', 'right'}}, default 'outer'
Type of alignment to be performed.