Series.dt.tz_convert()

Series.dt.tz_convert(*args, **kwargs) [source] Convert tz-aware DatetimeIndex from one time zone to another (using pytz/dateutil) Parameters: tz : string, pytz.timezone, dateutil.tz.tzfile or None Time zone for time. Corresponding timestamps would be converted to time zone of the TimeSeries. None will remove timezone holding UTC time. Returns: normalized : DatetimeIndex Raises: TypeError If DatetimeIndex is tz-naive.

Series.dt.to_pydatetime()

Series.dt.to_pydatetime() [source]

Series.dt.to_period()

Series.dt.to_period(*args, **kwargs) [source] Cast to PeriodIndex at a particular frequency

Series.dt.total_seconds()

Series.dt.total_seconds(*args, **kwargs) [source] Total duration of each element expressed in seconds. New in version 0.17.0.

Series.dt.strftime()

Series.dt.strftime(*args, **kwargs) [source] Return an array of formatted strings specified by date_format, which supports the same string format as the python standard library. Details of the string format can be found in python string format doc New in version 0.17.0. Parameters: date_format : str date format string (e.g. ?%Y-%m-%d?) Returns: ndarray of formatted strings

Series.dt.time

Series.dt.time Returns numpy array of datetime.time. The time part of the Timestamps.

Series.dt.seconds

Series.dt.seconds Number of seconds (>= 0 and less than 1 day) for each element.

Series.dt.round()

Series.dt.round(*args, **kwargs) [source] round the index to the specified freq Parameters: freq : freq string/object Returns: index of same type Raises: ValueError if the freq cannot be converted

Series.dt.second

Series.dt.second The seconds of the datetime

Series.dt.nanoseconds

Series.dt.nanoseconds Number of nanoseconds (>= 0 and less than 1 microsecond) for each element.