DatetimeIndex.is_quarter_end

DatetimeIndex.is_quarter_end Logical indicating if last day of quarter (defined by frequency)

formats.style.Styler()

class pandas.formats.style.Styler(data, precision=None, table_styles=None, uuid=None, caption=None, table_attributes=None) [source] Helps style a DataFrame or Series according to the data with HTML and CSS. New in version 0.17.1. Warning This is a new feature and is under active development. We?ll be adding features and possibly making breaking changes in future releases. Parameters: data: Series or DataFrame precision: int precision to round floats to, defaults to pd.options.display.

TimedeltaIndex.str()

TimedeltaIndex.str() [source] Vectorized string functions for Series and Index. NAs stay NA unless handled otherwise by a particular method. Patterned after Python?s string methods, with some inspiration from R?s stringr package. Examples >>> s.str.split('_') >>> s.str.replace('_', '')

DataFrame.last_valid_index()

DataFrame.last_valid_index() [source] Return label for last non-NA/null value

DataFrame.applymap()

DataFrame.applymap(func) [source] Apply a function to a DataFrame that is intended to operate elementwise, i.e. like doing map(func, series) for each series in the DataFrame Parameters: func : function Python function, returns a single value from a single value Returns: applied : DataFrame See also DataFrame.apply For operations on rows/columns Examples >>> df = pd.DataFrame(np.random.randn(3, 3)) >>> df 0 1 2 0 -0.029638 1.081563 1.2803

MultiIndex.get_values()

MultiIndex.get_values() [source] return the underlying data as an ndarray

DataFrame.shape

DataFrame.shape Return a tuple representing the dimensionality of the DataFrame.

DatetimeIndex.item()

DatetimeIndex.item() [source] return the first element of the underlying data as a python scalar

TimedeltaIndex.freq

TimedeltaIndex.freq = None

CategoricalIndex.summary()

CategoricalIndex.summary(name=None) [source]