MultiIndex.holds_integer()

MultiIndex.holds_integer() [source]

Series.str.count()

Series.str.count(pat, flags=0, **kwargs) [source] Count occurrences of pattern in each string of the Series/Index. Parameters: pat : string, valid regular expression flags : int, default 0 (no flags) re module flags, e.g. re.IGNORECASE Returns: counts : Series/Index of integer values

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

TimedeltaIndex.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] Example

DataFrame.equals()

DataFrame.equals(other) [source] Determines if two NDFrame objects contain the same elements. NaNs in the same location are considered equal.

Series.dt.is_year_end

Series.dt.is_year_end Logical indicating if last day of year (defined by frequency)

Series.str.zfill()

Series.str.zfill(width) [source] Filling left side of strings in the Series/Index with 0. Equivalent to str.zfill(). Parameters: width : int Minimum width of resulting string; additional characters will be filled with 0 Returns: filled : Series/Index of objects

Panel.compound()

Panel.compound(axis=None, skipna=None, level=None) [source] Return the compound percentage 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 Include o

Series.str.center()

Series.str.center(width, fillchar=' ') [source] Filling left and right side of strings in the Series/Index with an additional character. Equivalent to str.center(). 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

Panel4D.mod()

Panel4D.mod(other, axis=0) [source] Modulo of series and other, element-wise (binary operator mod). 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.rmod