modin.pandas.DatetimeIndex¶
- class modin.pandas.DatetimeIndex(data: ArrayLike | native_pd.Index | pd.Series | None = None, freq: Frequency | lib.NoDefault = _NoDefault.no_default, tz=_NoDefault.no_default, normalize: bool | lib.NoDefault = _NoDefault.no_default, closed=_NoDefault.no_default, ambiguous: TimeAmbiguous = 'raise', dayfirst: bool = False, yearfirst: bool = False, dtype: Dtype | None = None, copy: bool = False, name: Hashable | None = None, query_compiler: SnowflakeQueryCompiler = None)[source]¶
- Bases: - Index- Methods - as_unit(unit)- Convert to a dtype with the given unit resolution. - ceil(freq[, ambiguous, nonexistent])- Perform ceil operation on the data to the specified freq. - day_name([locale])- Return the day names with specified locale. - floor(freq[, ambiguous, nonexistent])- Perform floor operation on the data to the specified freq. - indexer_at_time(time[, asof])- Return index locations of values at particular time of day. - indexer_between_time(start_time, end_time[, ...])- Return index locations of values between particular times of day. - mean(*[, skipna, axis])- Return the mean value of the Array. - month_name([locale])- Return the month names with specified locale. - Convert times to midnight. - round(freq[, ambiguous, nonexistent])- Perform round operation on the data to the specified freq. - snap([freq])- Snap time stamps to nearest occurring frequency. - std([axis, ddof, skipna])- Return sample standard deviation over requested axis. - strftime(date_format)- Convert to Index using specified date_format. - to_period([freq])- Cast to PeriodArray/PeriodIndex at a particular frequency. - Return a ndarray of - datetime.datetimeobjects.- tz_convert(tz)- Convert tz-aware Datetime Array/Index from one time zone to another. - tz_localize(tz[, ambiguous, nonexistent])- Localize tz-naive Datetime Array/Index to tz-aware Datetime Array/Index. - Attributes - Returns the date part of Timestamps without time and timezone information. - The day of the datetime. - The day of the week with Monday=0, Sunday=6. - The ordinal day of the year. - The day of the week with Monday=0, Sunday=6. - The ordinal day of the year. - dtype- Get the dtype object of the underlying data. - Return the frequency object if it's set, otherwise None. - Return the frequency object as a string if it's set, otherwise None. - The hours of the datetime. - Tries to return a string representing a frequency generated by infer_freq. - Boolean indicator if the date belongs to a leap year. - Indicates whether the date is the last day of the month. - Indicates whether the date is the first day of the month. - Indicator for whether the date is the last day of a quarter. - Indicator for whether the date is the first day of a quarter. - Indicate whether the date is the last day of the year. - Indicate whether the date is the first day of a year. - The microseconds of the datetime. - The minutes of the datetime. - The month as January=1, December=12. - The nanoseconds of the datetime. - The quarter of the date. - The seconds of the datetime. - Returns the time part of the Timestamps. - Returns the time part of the Timestamps with timezone. - Return the timezone. - The day of the week with Monday=0, Sunday=6. - The year of the datetime.