DatetimeIndex.freqstr

DatetimeIndex.freqstr Return the frequency object as a string if its set, otherwise None

DatetimeIndex.freq

DatetimeIndex.freq get/set the frequncy of the Index

DatetimeIndex.format()

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

DatetimeIndex.floor()

DatetimeIndex.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

DatetimeIndex.flags

DatetimeIndex.flags

DatetimeIndex.fillna()

DatetimeIndex.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

DatetimeIndex.factorize()

DatetimeIndex.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

DatetimeIndex.equals()

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

DatetimeIndex.duplicated()

DatetimeIndex.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

DatetimeIndex.dtype_str

DatetimeIndex.dtype_str = None