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
https://pandas.pydata.org/docs/user_guide/10min.html#selection-by-position
Documentation problem
Under Select by position section, it should be DataFrame.iat()
instead of DataFrame.at()
See more in Selection by Position using DataFrame.iloc() or DataFrame.iat().
Later in this section, .iat()
is used, not .at()
. So it is probably a typo from my understanding.
Suggested fix for documentation
Change DataFrame.at()
to DataFrame.iat()
under Select by position section.