Series.str.rstrip()

Series.str.rstrip(to_strip=None) [source] Strip whitespace (including newlines) from each string in the Series/Index from right side. Equivalent to str.rstrip(). Returns: stripped : Series/Index of objects

MultiIndex.names

MultiIndex.names Names of levels in MultiIndex

Series.nbytes

Series.nbytes return the number of bytes in the underlying data

Series.idxmin()

Series.idxmin(axis=None, skipna=True, *args, **kwargs) [source] Index of first occurrence of minimum of values. Parameters: skipna : boolean, default True Exclude NA/null values Returns: idxmin : Index of minimum of values See also DataFrame.idxmin, numpy.ndarray.argmin Notes This method is the Series version of ndarray.argmin.

Series.str.slice_replace()

Series.str.slice_replace(start=None, stop=None, repl=None) [source] Replace a slice of each string in the Series/Index with another string. Parameters: start : int or None stop : int or None repl : str or None String for replacement Returns: replaced : Series/Index of objects

DataFrame.plot.hexbin()

DataFrame.plot.hexbin(x, y, C=None, reduce_C_function=None, gridsize=None, **kwds) [source] Hexbin plot New in version 0.17.0. Parameters: x, y : label or position, optional Coordinates for each point. C : label or position, optional The value at each (x, y) point. reduce_C_function : callable, optional Function of one argument that reduces all the values in a bin to a single number (e.g. mean, max, sum, std). gridsize : int, optional Number of bins. **kwds : optional Keyword ar

Series.prod()

Series.prod(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return the product of the values for the requested axis Parameters: axis : {index (0)} 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 scalar numeric_only : boolean, default None Include only float, int, boole

Index.is_integer()

Index.is_integer() [source]

Panel.get_values()

Panel.get_values() [source] same as values (but handles sparseness conversions)

DatetimeIndex.day

DatetimeIndex.day The days of the datetime