Closed
Description
Pandas version checks
- I have checked that the issue still exists on the latest versions of the docs on
main
here
Location of the documentation
Documentation problem
The documentation of the Series function contains references to axis, which makes no sense for a Series (which is one-dimensional). It also refers to single vs. table functionality, which again makes no sense for a Series (which is single-only).
I can see that in cases like drop and dropna, axis exists as a parameter, but clearly states that there is only one axis. In other documentation (such as groupby) the series documentation invites both row and column axis.
Suggested fix for documentation
The Series documentation for rolling should follow the pattern of explaining axis as provided by drop/dropna. All Series functions with an axis parameter should be checked and fixed if necessary.