DatetimeIndex.to_julian_date()

DatetimeIndex.to_julian_date() [source] Convert DatetimeIndex to Float64Index of Julian Dates. 0 Julian date is noon January 1, 4713 BC. http://en.wikipedia.org/wiki/Julian_day

DatetimeIndex.time

DatetimeIndex.time Returns numpy array of datetime.time. The time part of the Timestamps.

DatetimeIndex.tolist()

DatetimeIndex.tolist() [source] return a list of the underlying data

DatetimeIndex.to_datetime()

DatetimeIndex.to_datetime(dayfirst=False) [source]

DatetimeIndex.T

DatetimeIndex.T return the transpose, which is by definition self

DatetimeIndex.take()

DatetimeIndex.take(indices, axis=0, allow_fill=True, fill_value=None, **kwargs) [source] return a new %(klass)s of the values selected by the indices For internal compatibility with numpy arrays. Parameters: indices : list Indices to be taken axis : int, optional The axis over which to select values, always 0. allow_fill : bool, default True fill_value : bool, default None If allow_fill=True and fill_value is not None, indices specified by -1 is regarded as NA. If Index doesn?t hold N

DatetimeIndex.sym_diff()

DatetimeIndex.sym_diff(*args, **kwargs) [source]

DatetimeIndex.symmetric_difference()

DatetimeIndex.symmetric_difference(other, result_name=None) [source] Compute the symmetric difference of two Index objects. It?s sorted if sorting is possible. Parameters: other : Index or array-like result_name : str Returns: symmetric_difference : Index Notes symmetric_difference contains elements that appear in either idx1 or idx2 but not both. Equivalent to the Index created by idx1.difference(idx2) | idx2.difference(idx1) with duplicates dropped. Examples >>> idx1 = Index(

DatetimeIndex.summary()

DatetimeIndex.summary(name=None) [source] return a summarized representation

DatetimeIndex.strftime()

DatetimeIndex.strftime(date_format) [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