Panel4D.major_xs()

Panel4D.major_xs(key) [source] Return slice of panel along major axis Parameters: key : object Major axis label Returns: y : DataFrame index -> minor axis, columns -> items Notes major_xs is only for getting, not setting values. MultiIndex Slicers is a generic way to get/set values on any level or levels and is a superset of major_xs functionality, see MultiIndex Slicers

Panel4D.mad()

Panel4D.mad(axis=None, skipna=None, level=None) [source] Return the mean absolute deviation of the values for the requested axis Parameters: axis : {labels (0), items (1), major_axis (2), minor_axis (3)} skipna : boolean, default True Exclude NA/null values. If an entire row/column is NA, the result will be NA level : int or level name, default None If the axis is a MultiIndex (hierarchical), count along a particular level, collapsing into a Panel numeric_only : boolean, default None

Panel4D.lt()

Panel4D.lt(other, axis=None) [source] Wrapper for comparison method lt

Panel4D.loc

Panel4D.loc Purely label-location based indexer for selection by label. .loc[] is primarily label based, but may also be used with a boolean array. Allowed inputs are: A single label, e.g. 5 or 'a', (note that 5 is interpreted as a label of the index, and never as an integer position along the index). A list or array of labels, e.g. ['a', 'b', 'c']. A slice object with labels, e.g. 'a':'f' (note that contrary to usual python slices, both the start and the stop are included!). A boolean arra

Panel4D.le()

Panel4D.le(other, axis=None) [source] Wrapper for comparison method le

Panel4D.last()

Panel4D.last(offset) [source] Convenience method for subsetting final periods of time series data based on a date offset. Parameters: offset : string, DateOffset, dateutil.relativedelta Returns: subset : type of caller Examples ts.last(?5M?) -> Last 5 months

Panel4D.kurtosis()

Panel4D.kurtosis(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return unbiased kurtosis over requested axis using Fisher?s definition of kurtosis (kurtosis of normal == 0.0). Normalized by N-1 Parameters: axis : {labels (0), items (1), major_axis (2), minor_axis (3)} skipna : boolean, default True Exclude NA/null values. If an entire row/column is NA, the result will be NA level : int or level name, default None If the axis is a MultiIndex (hierarchical), cou

Panel4D.kurt()

Panel4D.kurt(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return unbiased kurtosis over requested axis using Fisher?s definition of kurtosis (kurtosis of normal == 0.0). Normalized by N-1 Parameters: axis : {labels (0), items (1), major_axis (2), minor_axis (3)} skipna : boolean, default True Exclude NA/null values. If an entire row/column is NA, the result will be NA level : int or level name, default None If the axis is a MultiIndex (hierarchical), count a

Panel4D.keys()

Panel4D.keys() [source] Get the ?info axis? (see Indexing for more) This is index for Series, columns for DataFrame and major_axis for Panel.

Panel4D.join()

Panel4D.join(*args, **kwargs) [source]