Panel.std()

Panel.std(axis=None, skipna=None, level=None, ddof=1, numeric_only=None, **kwargs) [source] Return sample standard deviation over requested axis. Normalized by N-1 by default. This can be changed using the ddof argument Parameters: axis : {items (0), major_axis (1), minor_axis (2)} 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 pa

Panel.squeeze()

Panel.squeeze(**kwargs) [source] Squeeze length 1 dimensions.

Panel.sort_values()

Panel.sort_values(by, axis=0, ascending=True, inplace=False, kind='quicksort', na_position='last') [source]

Panel.sort_index()

Panel.sort_index(axis=0, level=None, ascending=True, inplace=False, kind='quicksort', na_position='last', sort_remaining=True) [source] Sort object by labels (along an axis) Parameters: axis : axes to direct sorting level : int or level name or list of ints or list of level names if not None, sort on values in specified index level(s) ascending : boolean, default True Sort ascending vs. descending inplace : bool, default False if True, perform operation in-place kind : {?quicksort?,

Panel.slice_shift()

Panel.slice_shift(periods=1, axis=0) [source] Equivalent to shift without copying data. The shifted data will not include the dropped periods and the shifted axis will be smaller than the original. Parameters: periods : int Number of periods to move, can be positive or negative Returns: shifted : same type as caller Notes While the slice_shift is faster than shift, you may pay for it later during alignment.

Panel.skew()

Panel.skew(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return unbiased skew over requested axis Normalized by N-1 Parameters: axis : {items (0), major_axis (1), minor_axis (2)} 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 DataFrame numeric_only : boolean, default

Panel.size

Panel.size number of elements in the NDFrame

Panel.shift()

Panel.shift(periods=1, freq=None, axis='major') [source] Shift index by desired number of periods with an optional time freq. The shifted data will not include the dropped periods and the shifted axis will be smaller than the original. This is different from the behavior of DataFrame.shift() Parameters: periods : int Number of periods to move, can be positive or negative freq : DateOffset, timedelta, or time rule string, optional axis : {?items?, ?major?, ?minor?} or {0, 1, 2} Returns:

Panel.shape

Panel.shape Return a tuple of axis dimensions

Panel.set_value()

Panel.set_value(*args, **kwargs) [source] Quickly set single value at (item, major, minor) location Parameters: item : item label (panel item) major : major axis label (panel item row) minor : minor axis label (panel item column) value : scalar takeable : interpret the passed labels as indexers, default False Returns: panel : Panel If label combo is contained, will be reference to calling Panel, otherwise a new object