Panel4D.fromDict()

Panel4D.fromDict(data, intersect=False, orient='items', dtype=None) [source] Construct Panel from dict of DataFrame objects Parameters: data : dict {field : DataFrame} intersect : boolean Intersect indexes of input DataFrames orient : {?items?, ?minor?}, default ?items? The ?orientation? of the data. If the keys of the passed dict should be the items of the result panel, pass ?items? (default). Otherwise if the columns of the values of the passed DataFrame objects should be the items

Panel4D.first()

Panel4D.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

Panel4D.filter()

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

Panel4D.fillna()

Panel4D.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 : {?backf

Panel4D.ffill()

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

Panel4D.equals()

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

Panel4D.eq()

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

Panel4D.dtypes

Panel4D.dtypes Return the dtypes in this object.

Panel4D.empty

Panel4D.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 i

Panel4D.divide()

Panel4D.divide(other, axis=0) [source] Floating division of series and other, element-wise (binary operator truediv). Equivalent to panel / other. Parameters: other : Panel or Panel4D axis : {labels, items, major_axis, minor_axis} Axis to broadcast over Returns: Panel4D See also Panel4D.rtruediv