pandas 1.4.2

Raises

Similar to loc , in that both provide label-based lookups. Use at if you only need to get or set a single value in a DataFrame or Series.

Raises

KeyError

If 'label' does not exist in DataFrame.

Access a single value for a row/column label pair.

See Also

DataFrame.iat

Access a single value for a row/column pair by integer position.

DataFrame.loc

Access a group of rows and columns by label(s).

Series.at

Access a single value using a label.

Examples

This example is valid syntax, but we were not able to check execution
>>> df = pd.DataFrame([[0, 2, 3], [0, 4, 1], [10, 20, 30]],
...  index=[4, 5, 6], columns=['A', 'B', 'C'])
... df A B C 4 0 2 3 5 0 4 1 6 10 20 30

Get value at specified row/column pair

This example is valid syntax, but we were not able to check execution
>>> df.at[4, 'B']
2

Set value at specified row/column pair

This example is valid syntax, but we were not able to check execution
>>> df.at[4, 'B'] = 10
... df.at[4, 'B'] 10

Get value within a Series

This example is valid syntax, but we were not able to check execution
>>> df.loc[5].at['B']
4
See :

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /pandas/core/indexing.py#2239
type: <class 'type'>
Commit: