TimedeltaIndex.get_value()

TimedeltaIndex.get_value(series, key) [source] Fast lookup of value from 1-dimensional ndarray. Only use this if you know what you?re doing

TimedeltaIndex.get_slice_bound()

TimedeltaIndex.get_slice_bound(label, side, kind) [source] Calculate slice bound that corresponds to given label. Returns leftmost (one-past-the-rightmost if side=='right') position of given label. Parameters: label : object side : {?left?, ?right?} kind : {?ix?, ?loc?, ?getitem?}

TimedeltaIndex.get_loc()

TimedeltaIndex.get_loc(key, method=None, tolerance=None) [source] Get integer location for requested label Returns: loc : int

TimedeltaIndex.get_level_values()

TimedeltaIndex.get_level_values(level) [source] Return vector of label values for requested level, equal to the length of the index Parameters: level : int Returns: values : ndarray

TimedeltaIndex.get_indexer_non_unique()

TimedeltaIndex.get_indexer_non_unique(target) [source] return an indexer suitable for taking from a non unique index return the labels in the same order as the target, and return a missing indexer into the target (missing are marked as -1 in the indexer); target must be an iterable

TimedeltaIndex.get_indexer_for()

TimedeltaIndex.get_indexer_for(target, **kwargs) [source] guaranteed return of an indexer even when non-unique

TimedeltaIndex.get_indexer()

TimedeltaIndex.get_indexer(target, method=None, limit=None, tolerance=None) [source] Compute indexer and mask for new index given the current index. The indexer should be then used as an input to ndarray.take to align the current data to the new index. Parameters: target : Index method : {None, ?pad?/?ffill?, ?backfill?/?bfill?, ?nearest?}, optional default: exact matches only. pad / ffill: find the PREVIOUS index value if no exact match. backfill / bfill: use NEXT index value if no exact

TimedeltaIndex.get_duplicates()

TimedeltaIndex.get_duplicates() [source]

TimedeltaIndex.freqstr

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

TimedeltaIndex.freq

TimedeltaIndex.freq = None