Panel.first()

Panel.first(offset) [source] Convenience method for subsetting initial periods of time series data based on a date offset. Parameters: offset : string, DateOffset, dateutil.relativedelta Returns: subset : type of caller Examples ts.first(?10D?) -> First 10 days

Panel.filter()

Panel.filter(items=None, like=None, regex=None, axis=None) [source] Subset rows or columns of dataframe according to labels in the specified index. Note that this routine does not filter a dataframe on its contents. The filter is applied to the labels of the index. Parameters: items : list-like List of info axis to restrict to (must not all be present) like : string Keep info axis where ?arg in col == True? regex : string (regular expression) Keep info axis with re.search(regex, col)

Panel.fillna()

Panel.fillna(value=None, method=None, axis=None, inplace=False, limit=None, downcast=None, **kwargs) [source] Fill NA/NaN values using the specified method Parameters: value : scalar, dict, Series, or DataFrame Value to use to fill holes (e.g. 0), alternately a dict/Series/DataFrame of values specifying which value to use for each index (for a Series) or column (for a DataFrame). (values not in the dict/Series/DataFrame will not be filled). This value cannot be a list. method : {?backfil

Panel.ffill()

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

Panel.equals()

Panel.equals(other) [source] Determines if two NDFrame objects contain the same elements. NaNs in the same location are considered equal.

Panel.eq()

Panel.eq(other, axis=None) [source] Wrapper for comparison method eq

Panel.empty

Panel.empty True if NDFrame is entirely empty [no items], meaning any of the axes are of length 0. See also pandas.Series.dropna, pandas.DataFrame.dropna Notes If NDFrame contains only NaNs, it is still not considered empty. See the example below. Examples An example of an actual empty DataFrame. Notice the index is empty: >>> df_empty = pd.DataFrame({'A' : []}) >>> df_empty Empty DataFrame Columns: [A] Index: [] >>> df_empty.empty True If we only have NaNs in

Panel.dtypes

Panel.dtypes Return the dtypes in this object.

Panel.dropna()

Panel.dropna(axis=0, how='any', inplace=False) [source] Drop 2D from panel, holding passed axis constant Parameters: axis : int, default 0 Axis to hold constant. E.g. axis=1 will drop major_axis entries having a certain amount of NA data how : {?all?, ?any?}, default ?any? ?any?: one or more values are NA in the DataFrame along the axis. For ?all? they all must be. inplace : bool, default False If True, do operation inplace and return None. Returns: dropped : Panel

Panel.drop()

Panel.drop(labels, axis=0, level=None, inplace=False, errors='raise') [source] Return new object with labels in requested axis removed. Parameters: labels : single label or list-like axis : int or axis name level : int or level name, default None For MultiIndex inplace : bool, default False If True, do operation inplace and return None. errors : {?ignore?, ?raise?}, default ?raise? If ?ignore?, suppress error and existing labels are dropped. New in version 0.16.1. Returns: droppe