modin.pandas.DatetimeIndex.nanosecond

property DatetimeIndex.nanosecond: Index[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/modin/plugin/extensions/datetime_index.py#L410-L430)

The nanoseconds of the datetime.

Return type:

An Index with the nanoseconds of the datetime.

Examples

>>> idx = pd.date_range("2000-01-01", periods=3, freq="ns")
>>> idx
DatetimeIndex([          '2000-01-01 00:00:00',
               '2000-01-01 00:00:00.000000001',
               '2000-01-01 00:00:00.000000002'],
              dtype='datetime64[ns]', freq=None)
>>> idx.nanosecond
Index([0, 1, 2], dtype='int64')
Copy
Language: English