Styler.set_uuid()

Styler.set_uuid(uuid) [source] Set the uuid for a Styler. New in version 0.17.1. Parameters: uuid: str Returns: self : Styler

Panel.multiply()

Panel.multiply(other, axis=0) [source] Multiplication of series and other, element-wise (binary operator mul). Equivalent to panel * other. Parameters: other : DataFrame or Panel axis : {items, major_axis, minor_axis} Axis to broadcast over Returns: Panel See also Panel.rmul

Panel.mean()

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

Series.skew()

Series.skew(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return unbiased skew over requested axis Normalized by N-1 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

StataWriter.write_file()

StataWriter.write_file() [source]

Series.dt.is_year_end

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

Series.get()

Series.get(key, default=None) [source] Get item from object for given key (DataFrame column, Panel slice, etc.). Returns default value if not found. Parameters: key : object Returns: value : type of items contained in object

Series.nlargest()

Series.nlargest(*args, **kwargs) [source] Return the largest n elements. Parameters: n : int Return this many descending sorted values keep : {?first?, ?last?, False}, default ?first? Where there are duplicate values: - first : take the first occurrence. - last : take the last occurrence. take_last : deprecated Returns: top_n : Series The n largest values in the Series, in sorted order See also Series.nsmallest Notes Faster than .sort_values(ascending=False).head(n) for small n

MultiIndex.shift()

MultiIndex.shift(periods=1, freq=None) [source] Shift Index containing datetime objects by input number of periods and DateOffset Returns: shifted : Index

GroupBy.mean()

GroupBy.mean(*args, **kwargs) [source] Compute mean of groups, excluding missing values For multiple groupings, the result index will be a MultiIndex See also pandas.Series.groupby, pandas.DataFrame.groupby, pandas.Panel.groupby