File tree 1 file changed +18
-2
lines changed
1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -539,14 +539,30 @@ def at(self) -> _AtIndexer:
539
539
Raises
540
540
------
541
541
KeyError
542
- If 'label' does not exist in DataFrame.
542
+ * If getting a value and 'label' does not exist in a DataFrame or
543
+ Series.
544
+ ValueError
545
+ * If row/column label pair is not a tuple or if any label from
546
+ the pair is not a scalar for DataFrame.
547
+ * If label is list-like (*excluding* NamedTuple) for Series.
543
548
544
549
See Also
545
550
--------
551
+ DataFrame.at : Access a single value for a row/column pair by label.
546
552
DataFrame.iat : Access a single value for a row/column pair by integer
547
553
position.
548
554
DataFrame.loc : Access a group of rows and columns by label(s).
549
- Series.at : Access a single value using a label.
555
+ DataFrame.iloc : Access a group of rows and columns by integer
556
+ position(s).
557
+ Series.at : Access a single value by label.
558
+ Series.iat : Access a single value by integer position.
559
+ Series.loc : Access a group of rows by label(s).
560
+ Series.iloc : Access a group of rows by integer position(s).
561
+
562
+ Notes
563
+ -----
564
+ See :ref:`Fast scalar value getting and setting <indexing.basics.get_value>`
565
+ for more details.
550
566
551
567
Examples
552
568
--------
You can’t perform that action at this time.
0 commit comments