Panel.to_dense()

Panel.to_dense() [source] Return dense representation of NDFrame (as opposed to sparse)

Panel.to_clipboard()

Panel.to_clipboard(excel=None, sep=None, **kwargs) [source] Attempt to write text representation of object to the system clipboard This can be pasted into Excel, for example. Parameters: excel : boolean, defaults to True if True, use the provided separator, writing in a csv format for allowing easy pasting into excel. if False, write a string representation of the object to the clipboard sep : optional, defaults to tab other keywords are passed to to_csv Notes Requirements for your plat

Panel.toLong()

Panel.toLong(*args, **kwargs) [source]

Panel.take()

Panel.take(indices, axis=0, convert=True, is_copy=True, **kwargs) [source] Analogous to ndarray.take Parameters: indices : list / array of ints axis : int, default 0 convert : translate neg to pos indices (default) is_copy : mark the returned frame as a copy Returns: taken : type of caller

Panel.tail()

Panel.tail(n=5) [source]

Panel.swaplevel()

Panel.swaplevel(i=-2, j=-1, axis=0) [source] Swap levels i and j in a MultiIndex on a particular axis Parameters: i, j : int, string (can be mixed) Level of index to be swapped. Can pass level name as string. Returns: swapped : type of caller (new object) Changed in version 0.18.1: The indexes i and j are now optional, and default to the two innermost levels of the index.

Panel.swapaxes()

Panel.swapaxes(axis1, axis2, copy=True) [source] Interchange axes and swap values axes appropriately Returns: y : same as input

Panel.sum()

Panel.sum(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return the sum of the values for the requested axis 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 None I

Panel.subtract()

Panel.subtract(other, axis=0) [source] Subtraction of series and other, element-wise (binary operator sub). Equivalent to panel - other. Parameters: other : DataFrame or Panel axis : {items, major_axis, minor_axis} Axis to broadcast over Returns: Panel See also Panel.rsub

Panel.sub()

Panel.sub(other, axis=0) [source] Subtraction of series and other, element-wise (binary operator sub). Equivalent to panel - other. Parameters: other : DataFrame or Panel axis : {items, major_axis, minor_axis} Axis to broadcast over Returns: Panel See also Panel.rsub