Series.str.ljust()

Series.str.ljust(width, fillchar=' ') [source] Filling right side of strings in the Series/Index with an additional character. Equivalent to str.ljust(). Parameters: width : int Minimum width of resulting string; additional characters will be filled with fillchar fillchar : str Additional character for filling, default is whitespace Returns: filled : Series/Index of objects

Series.count()

Series.count(level=None) [source] Return number of non-NA/null observations in the Series Parameters: level : int or level name, default None If the axis is a MultiIndex (hierarchical), count along a particular level, collapsing into a smaller Series Returns: nobs : int or Series (if level specified)

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

MultiIndex.set_names()

MultiIndex.set_names(names, level=None, inplace=False) [source] Set new names on index. Defaults to returning new index. Parameters: names : str or sequence name(s) to set level : int, level name, or sequence of int/level names (default None) If the index is a MultiIndex (hierarchical), level(s) to set (None for all levels). Otherwise level must be None inplace : bool if True, mutates in place Returns: new index (of same type and class...etc) [if inplace, returns None] Examples &g

DatetimeIndex.daysinmonth

DatetimeIndex.daysinmonth The number of days in the month New in version 0.16.0.

Panel.copy()

Panel.copy(deep=True) [source] Make a copy of this objects data. Parameters: deep : boolean or string, default True Make a deep copy, including a copy of the data and the indices. With deep=False neither the indices or the data are copied. Note that when deep=True data is copied, actual python objects will not be copied recursively, only the reference to the object. This is in contrast to copy.deepcopy in the Standard Library, which recursively copies object data. Returns: copy : type

MultiIndex.factorize()

MultiIndex.factorize(sort=False, na_sentinel=-1) [source] Encode the object as an enumerated type or categorical variable Parameters: sort : boolean, default False Sort by values na_sentinel: int, default -1 Value to mark ?not found? Returns: labels : the indexer to the original array uniques : the unique Index

DatetimeIndex.set_names()

DatetimeIndex.set_names(names, level=None, inplace=False) [source] Set new names on index. Defaults to returning new index. Parameters: names : str or sequence name(s) to set level : int, level name, or sequence of int/level names (default None) If the index is a MultiIndex (hierarchical), level(s) to set (None for all levels). Otherwise level must be None inplace : bool if True, mutates in place Returns: new index (of same type and class...etc) [if inplace, returns None] Examples

TimedeltaIndex.factorize()

TimedeltaIndex.factorize(sort=False, na_sentinel=-1) [source] Encode the object as an enumerated type or categorical variable Parameters: sort : boolean, default False Sort by values na_sentinel: int, default -1 Value to mark ?not found? Returns: labels : the indexer to the original array uniques : the unique Index

Styler.set_precision()

Styler.set_precision(precision) [source] Set the precision used to render. New in version 0.17.1. Parameters: precision: int Returns: self : Styler