Panel.bfill()

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

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

Panel4D.ge()

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

Series.last_valid_index()

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

Series.drop_duplicates()

Series.drop_duplicates(*args, **kwargs) [source] Return Series with duplicate values removed Parameters: keep : {?first?, ?last?, False}, default ?first? first : Drop duplicates except for the first occurrence. last : Drop duplicates except for the last occurrence. False : Drop all duplicates. take_last : deprecated inplace : boolean, default False If True, performs operation inplace and returns None. Returns: deduplicated : Series

Series.plot.pie()

Series.plot.pie(**kwds) [source] Pie chart New in version 0.17.0. Parameters: **kwds : optional Keyword arguments to pass on to pandas.Series.plot(). Returns: axes : matplotlib.AxesSubplot or np.array of them

Panel4D.shift()

Panel4D.shift(*args, **kwargs) [source]

DataFrame.select()

DataFrame.select(crit, axis=0) [source] Return data corresponding to axis labels matching criteria Parameters: crit : function To be called on each index (label). Should return True or False axis : int Returns: selection : type of caller

Index.is_floating()

Index.is_floating() [source]

Series.base

Series.base return the base object if the memory of the underlying data is shared