pyarrow.TimestampType¶
-
class
pyarrow.TimestampType¶ Bases:
pyarrow.lib.DataTypeConcrete class for timestamp data types.
-
__init__()¶ Initialize self. See help(type(self)) for accurate signature.
Methods
equals(self, other)Return true if type is equivalent to passed value to_pandas_dtype(self)Return the equivalent NumPy / Pandas dtype. Attributes
bit_widthidtzThe timestamp time zone, if any, or None. unitThe timestamp unit (‘s’, ‘ms’, ‘us’ or ‘ns’). -
bit_width¶
-
equals(self, other)¶ Return true if type is equivalent to passed value
Parameters: other (DataType or string convertible to DataType) – Returns: is_equal (boolean)
-
id¶
-
to_pandas_dtype(self)¶ Return the equivalent NumPy / Pandas dtype.
-
tz¶ The timestamp time zone, if any, or None.
-
unit¶ The timestamp unit (‘s’, ‘ms’, ‘us’ or ‘ns’).
-