MultiIndex.argsort()

MultiIndex.argsort(*args, **kwargs) [source]

Panel.is_copy

Panel.is_copy = None

Resampler.interpolate()

Resampler.interpolate(method='linear', axis=0, limit=None, inplace=False, limit_direction='forward', downcast=None, **kwargs) [source] Interpolate values according to different methods. New in version 0.18.1. Please note that only method='linear' is supported for DataFrames/Series with a MultiIndex. Parameters: method : {?linear?, ?time?, ?index?, ?values?, ?nearest?, ?zero?, ?slinear?, ?quadratic?, ?cubic?, ?barycentric?, ?krogh?, ?polynomial?, ?spline?, ?piecewise_polynomial?, ?from_

Series()

class pandas.Series(data=None, index=None, dtype=None, name=None, copy=False, fastpath=False) [source] One-dimensional ndarray with axis labels (including time series). Labels need not be unique but must be any hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Statistical methods from ndarray have been overridden to automatically exclude missing data (currently represented as NaN) Operation

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

DatetimeIndex.asobject

DatetimeIndex.asobject return object Index which contains boxed values this is an internal non-public method

CategoricalIndex.is_categorical()

CategoricalIndex.is_categorical() [source]

Panel4D.is_copy

Panel4D.is_copy = None

Series.str.pad()

Series.str.pad(width, side='left', fillchar=' ') [source] Pad strings in the Series/Index with an additional character to specified side. Parameters: width : int Minimum width of resulting string; additional characters will be filled with spaces side : {?left?, ?right?, ?both?}, default ?left? fillchar : str Additional character for filling, default is whitespace Returns: padded : Series/Index of objects

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