Panel4D.to_excel()

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

Panel4D.to_dense()

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

Panel4D.to_clipboard()

Panel4D.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 pl

Panel4D.toLong()

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

Panel4D.take()

Panel4D.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

Panel4D.tail()

Panel4D.tail(n=5) [source]

Panel4D.swaplevel()

Panel4D.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.

Panel4D.swapaxes()

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

Panel4D.sum()

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

Panel4D.subtract()

Panel4D.subtract(other, axis=0) [source] Subtraction of series and other, element-wise (binary operator sub). 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.rsub