Series.put()

Series.put(*args, **kwargs) [source] Applies the put method to its values attribute if it has one. See also numpy.ndarray.put

Series.quantile()

Series.quantile(q=0.5, interpolation='linear') [source] Return value at the given quantile, a la numpy.percentile. Parameters: q : float or array-like, default 0.5 (50% quantile) 0 <= q <= 1, the quantile(s) to compute interpolation : {?linear?, ?lower?, ?higher?, ?midpoint?, ?nearest?} New in version 0.18.0. This optional parameter specifies the interpolation method to use, when the desired quantile lies between two data points i and j: linear: i + (j - i) * fraction, where fr

Series.ptp()

Series.ptp(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Returns the difference between the maximum value and the minimum value in the object. This is the equivalent of the numpy.ndarray method ptp. 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, collapsin

Series.product()

Series.product(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, bo

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

Series.pop()

Series.pop(item) [source] Return item and drop from frame. Raise KeyError if not found.

Series.plot.pie()

Series.plot.pie(**kwds) [source] Pie chart New in version 0.17.0. Parameters: **kwds : optional Keyword arguments to pass on to pandas.Series.plot(). Returns: axes : matplotlib.AxesSubplot or np.array of them

Series.pow()

Series.pow(other, level=None, fill_value=None, axis=0) [source] Exponential power of series and other, element-wise (binary operator pow). Equivalent to series ** other, but with support to substitute a fill_value for missing data in one of the inputs. Parameters: other: Series or scalar value fill_value : None or float value, default None (NaN) Fill missing (NaN) values with this value. If both Series are missing, the result will be missing level : int or name Broadcast across a level,

Series.plot.line()

Series.plot.line(**kwds) [source] Line plot New in version 0.17.0. Parameters: **kwds : optional Keyword arguments to pass on to pandas.Series.plot(). Returns: axes : matplotlib.AxesSubplot or np.array of them

Series.plot.kde()

Series.plot.kde(**kwds) [source] Kernel Density Estimate plot New in version 0.17.0. Parameters: **kwds : optional Keyword arguments to pass on to pandas.Series.plot(). Returns: axes : matplotlib.AxesSubplot or np.array of them