Series.to_csv()

Series.to_csv(path=None, index=True, sep=', ', na_rep='', float_format=None, header=False, index_label=None, mode='w', encoding=None, date_format=None, decimal='.') [source] Write Series to a comma-separated values (csv) file Parameters: path : string or file handle, default None File path or object, if None is provided the result is returned as a string. na_rep : string, default ?? Missing data representation float_format : string, default None Format string for floating point number

Panel4D.rdiv()

Panel4D.rdiv(other, axis=0) [source] Floating division of series and other, element-wise (binary operator rtruediv). Equivalent to other / panel. Parameters: other : Panel or Panel4D axis : {labels, items, major_axis, minor_axis} Axis to broadcast over Returns: Panel4D See also Panel4D.truediv

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.pipe()

Panel4D.pipe(func, *args, **kwargs) [source] Apply func(self, *args, **kwargs) New in version 0.16.2. Parameters: func : function function to apply to the NDFrame. args, and kwargs are passed into func. Alternatively a (callable, data_keyword) tuple where data_keyword is a string indicating the keyword of callable that expects the NDFrame. args : positional arguments passed into func. kwargs : a dictionary of keyword arguments passed into func. Returns: object : the return type of fu

Index.get_level_values()

Index.get_level_values(level) [source] Return vector of label values for requested level, equal to the length of the index Parameters: level : int Returns: values : ndarray

Panel4D.skew()

Panel4D.skew(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return unbiased skew over requested axis 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 along a particular level, collapsing into a Panel numeric_only : boolea

Series.to_msgpack()

Series.to_msgpack(path_or_buf=None, encoding='utf-8', **kwargs) [source] msgpack (serialize) object to input file path THIS IS AN EXPERIMENTAL LIBRARY and the storage format may not be stable until a future release. Parameters: path : string File path, buffer-like, or None if None, return generated string append : boolean whether to append to an existing msgpack (default is False) compress : type of compressor (zlib or blosc), default to None (no compression)

DataFrameGroupBy.boxplot()

DataFrameGroupBy.boxplot(grouped, subplots=True, column=None, fontsize=None, rot=0, grid=True, ax=None, figsize=None, layout=None, **kwds) [source] Make box plots from DataFrameGroupBy data. Parameters: grouped : Grouped DataFrame subplots : False - no subplots will be used True - create a subplot for each group column : column name or list of names, or vector Can be any valid input to groupby fontsize : int or string rot : label rotation angle grid : Setting this to True will show th

Panel.cumsum()

Panel.cumsum(axis=None, skipna=True, *args, **kwargs) [source] Return cumulative sum over 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 Returns: cumsum : DataFrame

Index.rename()

Index.rename(name, inplace=False) [source] Set new names on index. Defaults to returning new index. Parameters: name : str or list name to set inplace : bool if True, mutates in place Returns: new index (of same type and class...etc) [if inplace, returns None]