Panel4D.ge()

Panel4D.ge(other, axis=None) [source] Wrapper for comparison method ge

DatetimeIndex.order()

DatetimeIndex.order(return_indexer=False, ascending=True) [source] Return sorted copy of Index DEPRECATED: use Index.sort_values()

Panel.add_prefix()

Panel.add_prefix(prefix) [source] Concatenate prefix string with panel items names. Parameters: prefix : string Returns: with_prefix : type of caller

Index.inferred_type

Index.inferred_type = None

DataFrame.iteritems()

DataFrame.iteritems() [source] Iterator over (column name, Series) pairs. See also iterrows Iterate over DataFrame rows as (index, Series) pairs. itertuples Iterate over DataFrame rows as namedtuples of the values.

CategoricalIndex.reorder_categories()

CategoricalIndex.reorder_categories(*args, **kwargs) [source] Reorders categories as specified in new_categories. new_categories need to include all old categories and no new category items. Parameters: new_categories : Index-like The categories in new order. ordered : boolean, optional Whether or not the categorical is treated as a ordered categorical. If not given, do not change the ordered information. inplace : boolean (default: False) Whether or not to reorder the categories inpl

Index.name

Index.name = None

CategoricalIndex.size

CategoricalIndex.size return the number of elements in the underlying data

DatetimeIndex.to_datetime()

DatetimeIndex.to_datetime(dayfirst=False) [source]

CategoricalIndex.dropna()

CategoricalIndex.dropna(how='any') [source] Return Index without NA/NaN values Parameters: how : {?any?, ?all?}, default ?any? If the Index is a MultiIndex, drop the value when any or all levels are NaN. Returns: valid : Index