MultiIndex.is_boolean()

MultiIndex.is_boolean() [source]

MultiIndex.is_all_dates

MultiIndex.is_all_dates

MultiIndex.is_()

MultiIndex.is_(other) [source] More flexible, faster check like is but that works through views Note: this is not the same as Index.identical(), which checks that metadata is also the same. Parameters: other : object other object to compare against. Returns: True if both have same underlying data, False otherwise : bool

MultiIndex.isin()

MultiIndex.isin(values, level=None) [source] Compute boolean array of whether each index value is found in the passed set of values. Parameters: values : set or list-like Sought values. New in version 0.18.1. Support for values as a set level : str or int, optional Name or position of the index level to use (if the index is a MultiIndex). Returns: is_contained : ndarray (boolean dtype) Notes If level is specified: if it is the name of one and only one index level, use that level;

MultiIndex.intersection()

MultiIndex.intersection(other) [source] Form the intersection of two MultiIndex objects, sorting if possible Parameters: other : MultiIndex or array / Index of tuples Returns: Index

MultiIndex.insert()

MultiIndex.insert(loc, item) [source] Make new MultiIndex inserting new item at location Parameters: loc : int item : tuple Must be same length as number of levels in the MultiIndex Returns: new_index : Index

MultiIndex.inferred_type

MultiIndex.inferred_type = None

MultiIndex.identical()

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

MultiIndex.holds_integer()

MultiIndex.holds_integer() [source]

MultiIndex.has_duplicates

MultiIndex.has_duplicates