We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
main
https://pandas.pydata.org/docs/user_guide/cookbook.html#cookbook-missing-data
DOC says use df.reindex(df.index[::-1]).ffill() but df.bfill() is available, maybe after some version? I don't know
df.reindex(df.index[::-1]).ffill()
df.bfill()
Do we need to do df.reindex(df.index[::-1]).bfill() when index is alway sorted?
df.reindex(df.index[::-1]).bfill()
replace df.reindex(df.index[::-1]).ffill() with df.bfill()
The text was updated successfully, but these errors were encountered:
Your suggestion looks good to me. Would you like to file a PR?
Sorry, something went wrong.
yes, i'll replace df.reindex(df.index[::-1]).ffill() with df.bfill()
DOC: .bfill() (#46631) (#46642)
103c92e
DOC: .bfill() (pandas-dev#46631) (pandas-dev#46642)
650bd54
Successfully merging a pull request may close this issue.
Pandas version checks
main
hereLocation of the documentation
https://pandas.pydata.org/docs/user_guide/cookbook.html#cookbook-missing-data
Documentation problem
DOC says use
df.reindex(df.index[::-1]).ffill()
but
df.bfill()
is available, maybe after some version? I don't knowDo we need to do
df.reindex(df.index[::-1]).bfill()
when index is alway sorted?Suggested fix for documentation
replace
df.reindex(df.index[::-1]).ffill()
withdf.bfill()
The text was updated successfully, but these errors were encountered: