pandas.Series.set_value

Series.set_value(label, value, takeable=False)[source]

Quickly set single value at passed label.

Deprecated since version 0.21.0: Please use .at[] or .iat[] accessors.

If label is not contained, a new object is created with the label placed at the end of the result index.

Parameters
labelobject

Partial indexing with MultiIndex not allowed

valueobject

Scalar value

takeableinterpret the index as indexers, default False
Returns
Series

If label is contained, will be reference to calling Series, otherwise a new object.

Scroll To Top