We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pandas.DataFrame.fillna
method
pandas/pandas/core/arrays/base.py
Lines 774 to 778 in ebfcad1
axis
pandas/pandas/core/frame.py
Lines 6352 to 6357 in ebfcad1
The problem could be the missing space after the colon. e.g. change * value: description to * value : description Then the fix would be:
* value: description
* value : description
* pad / ffill : propagate last valid observation forward to next valid. * backfill / bfill : use NEXT valid observation to fill gap.
or it could be the missing single quotes around the values. e.g. change * value: description to * 'value': description Then the fix would be:
* 'value': description
* 'pad / ffill': propagate last valid observation forward to next valid. * 'backfill / bfill': use NEXT valid observation to fill gap.
The text was updated successfully, but these errors were encountered:
Ah never mind 🤦🏾 the issue is already fixed on the dev version of the docs: https://pandas.pydata.org/docs/dev/reference/api/pandas.DataFrame.fillna.html would be released with pandas 2
Sorry, something went wrong.
No branches or pull requests
Pandas version checks
main
hereLocation of the documentation
pandas.DataFrame.fillna
Documentation problem
pandas.DataFrame.fillna > Parameters >⚠️ values list
method
>pandas/pandas/core/arrays/base.py
Lines 774 to 778 in ebfcad1
pandas.DataFrame.dropna > Parameters >
axis
> ✔ values listpandas/pandas/core/frame.py
Lines 6352 to 6357 in ebfcad1
ℹ️ Also #49529 is probably related
Suggested fix for documentation
The problem could be the missing space after the colon. e.g. change
* value: description
to* value : description
Then the fix would be:
or it could be the missing single quotes around the values. e.g. change
* value: description
to* 'value': description
Then the fix would be:
The text was updated successfully, but these errors were encountered: