DataFrame.to_records()

DataFrame.to_records(index=True, convert_datetime64=True) [source] Convert DataFrame to record array. Index will be put in the ?index? field of the record array if requested Parameters: index : boolean, default True Include index in resulting record array, stored in ?index? field convert_datetime64 : boolean, default True Whether to convert the index to datetime.datetime if it is a DatetimeIndex Returns: y : recarray

DataFrame.gt()

DataFrame.gt(other, axis='columns', level=None) [source] Wrapper for flexible comparison methods gt

Panel4D.rank()

Panel4D.rank(axis=0, method='average', numeric_only=None, na_option='keep', ascending=True, pct=False) [source] Compute numerical data ranks (1 through n) along axis. Equal values are assigned a rank that is the average of the ranks of those values Parameters: axis: {0 or ?index?, 1 or ?columns?}, default 0 index to direct ranking method : {?average?, ?min?, ?max?, ?first?, ?dense?} average: average rank of group min: lowest rank in group max: highest rank in group first: ranks assigned

Index.any()

Index.any(*args, **kwargs) [source] Return whether any element is True Parameters: All arguments to numpy.any are accepted. Returns: any : bool or array_like (if axis is specified) A single element array_like may be converted to bool.

MultiIndex.asi8

MultiIndex.asi8 = None

Series.tolist()

Series.tolist() [source] Convert Series to a nested list

Panel.replace()

Panel.replace(to_replace=None, value=None, inplace=False, limit=None, regex=False, method='pad', axis=None) [source] Replace values given in ?to_replace? with ?value?. Parameters: to_replace : str, regex, list, dict, Series, numeric, or None str or regex: str: string exactly matching to_replace will be replaced with value regex: regexs matching to_replace will be replaced with value list of str, regex, or numeric: First, if to_replace and value are both lists, they must be the same

Panel.bfill()

Panel.bfill(axis=None, inplace=False, limit=None, downcast=None) [source] Synonym for NDFrame.fillna(method=?bfill?)

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