MultiIndex.drop_duplicates()

MultiIndex.drop_duplicates(*args, **kwargs) [source] Return Index with duplicate values removed Parameters: keep : {?first?, ?last?, False}, default ?first? first : Drop duplicates except for the first occurrence. last : Drop duplicates except for the last occurrence. False : Drop all duplicates. take_last : deprecated Returns: deduplicated : Index

Panel.rename_axis()

Panel.rename_axis(mapper, axis=0, copy=True, inplace=False) [source] Alter index and / or columns using input function or functions. A scaler or list-like for mapper will alter the Index.name or MultiIndex.names attribute. A function or dict for mapper will alter the labels. Function / dict values must be unique (1-to-1). Labels not contained in a dict / Series will be left as-is. Parameters: mapper : scalar, list-like, dict-like or function, optional axis : int or string, default 0 copy :

Panel.describe()

Panel.describe(percentiles=None, include=None, exclude=None) [source] Generate various summary statistics, excluding NaN values. Parameters: percentiles : array-like, optional The percentiles to include in the output. Should all be in the interval [0, 1]. By default percentiles is [.25, .5, .75], returning the 25th, 50th, and 75th percentiles. include, exclude : list-like, ?all?, or None (default) Specify the form of the returned result. Either: None to both (default). The result will i

DataFrame.nsmallest()

DataFrame.nsmallest(n, columns, keep='first') [source] Get the rows of a DataFrame sorted by the n smallest values of columns. New in version 0.17.0. Parameters: n : int Number of items to retrieve columns : list or str Column name or names to order by keep : {?first?, ?last?, False}, default ?first? Where there are duplicate values: - first : take the first occurrence. - last : take the last occurrence. Returns: DataFrame Examples >>> df = DataFrame({'a': [1, 10, 8, 11

MultiIndex.nunique()

MultiIndex.nunique(dropna=True) [source] Return number of unique elements in the object. Excludes NA values by default. Parameters: dropna : boolean, default True Don?t include NaN in the count. Returns: nunique : int

Series.iterkv()

Series.iterkv(*args, **kwargs) [source] iteritems alias used to get around 2to3. Deprecated

Index.asi8

Index.asi8 = None

TimedeltaIndex.order()

TimedeltaIndex.order(return_indexer=False, ascending=True) [source] Return sorted copy of Index DEPRECATED: use Index.sort_values()

DataFrame.cummin()

DataFrame.cummin(axis=None, skipna=True, *args, **kwargs) [source] Return cumulative minimum over requested axis. Parameters: axis : {index (0), columns (1)} skipna : boolean, default True Exclude NA/null values. If an entire row/column is NA, the result will be NA Returns: cummin : Series

CategoricalIndex.duplicated()

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