Skip to content
Prev Previous commit
Next Next commit
Singular not plural
  • Loading branch information
akosel committed Mar 10, 2018
commit e8233e515d851d00bbfcf38be96147959300f51d
2 changes: 1 addition & 1 deletion pandas/core/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1923,7 +1923,7 @@ class _iAtIndexer(_ScalarAccessIndexer):
"""
Access a single value for a row/column pair by integer position.

Similar to ``iloc``, in that both provided integer-based lookups. Use
Similar to ``iloc``, in that both provide integer-based lookups. Use
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this also works on a Series, can you re-word to accomodate

Copy link
Contributor Author

@akosel akosel Mar 10, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great point, I specified that iat works for both a DataFrame and a Series (below the comment, so Github isn't collapsing it here). Let me know if you want be to reword it any differently. I also added an example for using it on Series.

``iat`` if you only need to get or set a single value in a DataFrame.

See Also
Expand Down