DataFrame.insert()

DataFrame.insert(loc, column, value, allow_duplicates=False) [source] Insert column into DataFrame at specified location. If allow_duplicates is False, raises Exception if column is already contained in the DataFrame. Parameters: loc : int Must have 0 <= loc <= len(columns) column : object value : scalar, Series, or array-like

MultiIndex.delete()

MultiIndex.delete(loc) [source] Make new index with passed location deleted Returns: new_index : MultiIndex

GroupBy.apply()

GroupBy.apply(func, *args, **kwargs) [source] Apply function and combine results together in an intelligent way. The split-apply-combine combination rules attempt to be as common sense based as possible. For example: case 1: group DataFrame apply aggregation function (f(chunk) -> Series) yield DataFrame, with group axis having group labels case 2: group DataFrame apply transform function ((f(chunk) -> DataFrame with same indexes) yield DataFrame with resulting chunks glued together ca

Panel.dtypes

Panel.dtypes Return the dtypes in this object.

TimedeltaIndex.drop()

TimedeltaIndex.drop(labels, errors='raise') [source] Make new Index with passed list of labels deleted Parameters: labels : array-like errors : {?ignore?, ?raise?}, default ?raise? If ?ignore?, suppress error and existing labels are dropped. Returns: dropped : Index

DatetimeIndex.reshape()

DatetimeIndex.reshape(*args, **kwargs) [source] NOT IMPLEMENTED: do not call this method, as reshaping is not supported for Index objects and will raise an error. Reshape an Index.

Series.ffill()

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

Panel.update()

Panel.update(other, join='left', overwrite=True, filter_func=None, raise_conflict=False) [source] Modify Panel in place using non-NA values from passed Panel, or object coercible to Panel. Aligns on items Parameters: other : Panel, or object coercible to Panel join : How to join individual DataFrames {?left?, ?right?, ?outer?, ?inner?}, default ?left? overwrite : boolean, default True If True then overwrite values for common keys in the calling panel filter_func : callable(1d-array) -&

Panel4D.add_suffix()

Panel4D.add_suffix(suffix) [source] Concatenate suffix string with panel items names. Parameters: suffix : string Returns: with_suffix : type of caller

Index.is_object()

Index.is_object() [source]