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