pyarrow.Scalar#
- classpyarrow.Scalar#
Bases:
_WeakrefableThe base class for scalars.
- __init__(*args,**kwargs)#
Methods
__init__(*args, **kwargs)as_py(self, *[, maps_as_pydicts])Return this value as a Python representation.
cast(self[, target_type, safe, options, ...])Cast scalar value to another data type.
equals(self, Scalar other)validate(self, *[, full])Perform validation checks.
Attributes
- as_py(self,*,maps_as_pydicts=None)#
Return this value as a Python representation.
- Parameters:
- maps_as_pydicts
str, optional, defaultNone Valid values areNone, ‘lossy’, or ‘strict’.The default behavior (None), is to convert Arrow Map arrays toPython association lists (list-of-tuples) in the same order as theArrow Map, as in [(key1, value1), (key2, value2), …].
If ‘lossy’ or ‘strict’, convert Arrow Map arrays to native Python dicts.
If ‘lossy’, whenever duplicate keys are detected, a warning will be printed.The last seen value of a duplicate key will be in the Python dictionary.If ‘strict’, this instead results in an exception being raised when detected.
- maps_as_pydicts
- cast(self,target_type=None,safe=None,options=None,memory_pool=None)#
Cast scalar value to another data type.
See
pyarrow.compute.cast()for usage.- Parameters:
- Returns:
- scalar
AScalarofthegiventargetdatatype.
- scalar
- equals(self,Scalarother)#
- Parameters:
- other
pyarrow.Scalar
- other
- Returns:
- is_valid#
Holds a valid (non-null) value.
- type#
Data type of the Scalar object.

