Index.identical()

Index.identical(other) [source] Similar to equals, but check that other comparable attributes are also equal

Index.holds_integer()

Index.holds_integer() [source]

Index.has_duplicates

Index.has_duplicates

Index.hasnans

Index.hasnans = None

Index.groupby()

Index.groupby(values) [source] Group the index labels by a given array of values. Parameters: values : array Values used to determine the groups. Returns: groups : dict {group name -> group labels}

Index.get_values()

Index.get_values() [source] return the underlying data as an ndarray

Index.get_value()

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

Index.get_slice_bound()

Index.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?}

Index.get_loc()

Index.get_loc(key, method=None, tolerance=None) [source] Get integer location for requested label Parameters: key : label 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 match nearest: use the NEAREST index value if no exact match. Tied distances are broken by preferring the larger index value. tolerance : optional Maximum d

Index.get_level_values()

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