Index.repeat()

Index.repeat(n, *args, **kwargs) [source] Repeat elements of an Index. Refer to numpy.ndarray.repeat for more information about the n argument. See also numpy.ndarray.repeat

MultiIndex.reshape()

MultiIndex.reshape(*args, **kwargs) [source] NOT IMPLEMENTED: do not call this method, as reshaping is not supported for Index objects and will raise an error. Reshape an Index.

DataFrame.to_dense()

DataFrame.to_dense() [source] Return dense representation of NDFrame (as opposed to sparse)

Series.is_monotonic

Series.is_monotonic Return boolean if values in the object are monotonic_increasing New in version 0.19.0. Returns: is_monotonic : boolean

Series.str.decode()

Series.str.decode(encoding, errors='strict') [source] Decode character string in the Series/Index using indicated encoding. Equivalent to str.decode() in python2 and bytes.decode() in python3. Parameters: encoding : str errors : str, optional Returns: decoded : Series/Index of objects

TimedeltaIndex.resolution

TimedeltaIndex.resolution = None

MultiIndex.groupby()

MultiIndex.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}

Panel.to_dense()

Panel.to_dense() [source] Return dense representation of NDFrame (as opposed to sparse)

Index.transpose()

Index.transpose(*args, **kwargs) [source] return the transpose, which is by definition self

MultiIndex.identical()

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