Panel4D.ne()

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

Panel4D.multiply()

Panel4D.multiply(other, axis=0) [source] Multiplication of series and other, element-wise (binary operator mul). Equivalent to panel * other. Parameters: other : Panel or Panel4D axis : {labels, items, major_axis, minor_axis} Axis to broadcast over Returns: Panel4D See also Panel4D.rmul

Panel4D.mod()

Panel4D.mod(other, axis=0) [source] Modulo of series and other, element-wise (binary operator mod). Equivalent to panel % other. Parameters: other : Panel or Panel4D axis : {labels, items, major_axis, minor_axis} Axis to broadcast over Returns: Panel4D See also Panel4D.rmod

Panel4D.mul()

Panel4D.mul(other, axis=0) [source] Multiplication of series and other, element-wise (binary operator mul). Equivalent to panel * other. Parameters: other : Panel or Panel4D axis : {labels, items, major_axis, minor_axis} Axis to broadcast over Returns: Panel4D See also Panel4D.rmul

Panel4D.minor_xs()

Panel4D.minor_xs(key) [source] Return slice of panel along minor axis Parameters: key : object Minor axis label Returns: y : DataFrame index -> major axis, columns -> items Notes minor_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 minor_xs functionality, see MultiIndex Slicers

Panel4D.min()

Panel4D.min(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] This method returns the minimum of the values in the object. If you want the index of the minimum, use idxmin. This is the equivalent of the numpy.ndarray method argmin. 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

Panel4D.max()

Panel4D.max(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] This method returns the maximum of the values in the object. If you want the index of the maximum, use idxmax. This is the equivalent of the numpy.ndarray method argmax. 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

Panel4D.median()

Panel4D.median(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return the median 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,

Panel4D.mean()

Panel4D.mean(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return the mean 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, def

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