Series.tail()

Series.tail(n=5) [source] Returns last n rows

Series.swapaxes()

Series.swapaxes(axis1, axis2, copy=True) [source] Interchange axes and swap values axes appropriately Returns: y : same as input

Series.sum()

Series.sum(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return the sum 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, boolean co

Series.subtract()

Series.subtract(other, level=None, fill_value=None, axis=0) [source] Subtraction of series and other, element-wise (binary operator sub). 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, m

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

Series.strides

Series.strides return the strides of the underlying data

Series.sub()

Series.sub(other, level=None, fill_value=None, axis=0) [source] Subtraction of series and other, element-wise (binary operator sub). 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, matchi

Series.str.wrap()

Series.str.wrap(width, **kwargs) [source] Wrap long strings in the Series/Index to be formatted in paragraphs with length less than a given width. This method has the same keyword parameters and defaults as textwrap.TextWrapper. Parameters: width : int Maximum line-width expand_tabs : bool, optional If true, tab characters will be expanded to spaces (default: True) replace_whitespace : bool, optional If true, each whitespace character (as defined by string.whitespace) remaining after

Series.str.upper()

Series.str.upper() [source] Convert strings in the Series/Index to uppercase. Equivalent to str.upper(). Returns: converted : Series/Index of objects

Series.str.title()

Series.str.title() [source] Convert strings in the Series/Index to titlecase. Equivalent to str.title(). Returns: converted : Series/Index of objects