Panel.axes

Panel.axes Return index label(s) of the internal NDFrame

Series.diff()

Series.diff(periods=1) [source] 1st discrete difference of object Parameters: periods : int, default 1 Periods to shift for forming difference Returns: diffed : Series

CategoricalIndex.unique()

CategoricalIndex.unique() [source] Return Index of unique values in the object. Significantly faster than numpy.unique. Includes NA values. The order of the original is preserved. Returns: uniques : Index

TimedeltaIndex.slice_locs()

TimedeltaIndex.slice_locs(start=None, end=None, step=None, kind=None) [source] Compute slice locations for input labels. Parameters: start : label, default None If None, defaults to the beginning end : label, default None If None, defaults to the end step : int, defaults None If None, defaults to 1 kind : {?ix?, ?loc?, ?getitem?} or None Returns: start, end : int

DataFrame.ftypes

DataFrame.ftypes Return the ftypes (indication of sparse/dense and dtype) in this object.

HDFStore.get()

HDFStore.get(key) [source] Retrieve pandas object stored in file Parameters: key : object Returns: obj : type of object stored in file

MultiIndex.nbytes

MultiIndex.nbytes = None

Panel.reindex_axis()

Panel.reindex_axis(labels, axis=0, method=None, level=None, copy=True, limit=None, fill_value=nan) [source] Conform input object to new index with optional filling logic, placing NA/NaN in locations having no value in the previous index. A new object is produced unless the new index is equivalent to the current one and copy=False Parameters: labels : array-like New labels / index to conform to. Preferably an Index object to avoid duplicating data axis : {0, 1, 2, ?items?, ?major_axis?, ?

Panel.where()

Panel.where(cond, other=nan, inplace=False, axis=None, level=None, try_cast=False, raise_on_error=True) [source] Return an object of same shape as self and whose corresponding entries are from self where cond is True and otherwise are from other. Parameters: cond : boolean NDFrame, array or callable If cond is callable, it is computed on the NDFrame and should return boolean NDFrame or array. The callable must not change input NDFrame (though pandas doesn?t check it). New in version 0.18

Series.dt.quarter

Series.dt.quarter The quarter of the date