TimedeltaIndex.format()

TimedeltaIndex.format(name=False, formatter=None, **kwargs) [source] Render a string representation of the Index

TimedeltaIndex.floor()

TimedeltaIndex.floor(freq) [source] floor the index to the specified freq Parameters: freq : freq string/object Returns: index of same type Raises: ValueError if the freq cannot be converted

TimedeltaIndex.flags

TimedeltaIndex.flags

TimedeltaIndex.fillna()

TimedeltaIndex.fillna(value=None, downcast=None) [source] Fill NA/NaN values with the specified value Parameters: value : scalar Scalar value to use to fill holes (e.g. 0). This value cannot be a list-likes. downcast : dict, default is None a dict of item->dtype of what to downcast if possible, or the string ?infer? which will try to downcast to an appropriate equal type (e.g. float64 to int64 if possible) Returns: filled : %(klass)s

TimedeltaIndex.factorize()

TimedeltaIndex.factorize(sort=False, na_sentinel=-1) [source] Encode the object as an enumerated type or categorical variable Parameters: sort : boolean, default False Sort by values na_sentinel: int, default -1 Value to mark ?not found? Returns: labels : the indexer to the original array uniques : the unique Index

TimedeltaIndex.equals()

TimedeltaIndex.equals(other) [source] Determines if two Index objects contain the same elements.

TimedeltaIndex.duplicated()

TimedeltaIndex.duplicated(*args, **kwargs) [source] Return boolean np.ndarray denoting duplicate values Parameters: keep : {?first?, ?last?, False}, default ?first? first : Mark duplicates as True except for the first occurrence. last : Mark duplicates as True except for the last occurrence. False : Mark all duplicates as True. take_last : deprecated Returns: duplicated : np.ndarray

TimedeltaIndex.dtype_str

TimedeltaIndex.dtype_str = None

TimedeltaIndex.dtype

TimedeltaIndex.dtype

TimedeltaIndex.drop_duplicates()

TimedeltaIndex.drop_duplicates(*args, **kwargs) [source] Return Index with duplicate values removed Parameters: keep : {?first?, ?last?, False}, default ?first? first : Drop duplicates except for the first occurrence. last : Drop duplicates except for the last occurrence. False : Drop all duplicates. take_last : deprecated Returns: deduplicated : Index