DatetimeIndex.round()

DatetimeIndex.round(freq, *args, **kwargs) [source] round the index to the specified freq Parameters: freq : freq string/object Returns: index of same type Raises: ValueError if the freq cannot be converted

DataFrame.swapaxes()

DataFrame.swapaxes(axis1, axis2, copy=True) [source] Interchange axes and swap values axes appropriately Returns: y : same as input

Series.tz_localize()

Series.tz_localize(*args, **kwargs) [source] Localize tz-naive TimeSeries to target time zone. Parameters: tz : string or pytz.timezone object axis : the axis to localize level : int, str, default None If axis ia a MultiIndex, localize a specific level. Otherwise must be None copy : boolean, default True Also make a copy of the underlying data ambiguous : ?infer?, bool-ndarray, ?NaT?, default ?raise? ?infer? will attempt to infer fall dst-transition hours based on order bool-ndarray w

DatetimeIndex.where()

DatetimeIndex.where(cond, other=None) [source] New in version 0.19.0. Return an Index of same shape as self and whose corresponding entries are from self where cond is True and otherwise are from other. Parameters: cond : boolean same length as self other : scalar, or array-like

Panel.shape

Panel.shape Return a tuple of axis dimensions

DatetimeIndex.duplicated()

DatetimeIndex.duplicated(*args, **kwargs) [source] Return boolean np.ndarray denoting duplicate values Parameters: keep : {?first?, ?last?, False}, default ?first? first : Mark duplicates as True except for the first occurrence. last : Mark duplicates as True except for the last occurrence. False : Mark all duplicates as True. take_last : deprecated Returns: duplicated : np.ndarray

DataFrame.to_pickle()

DataFrame.to_pickle(path) [source] Pickle (serialize) object to input file path. Parameters: path : string File path

Panel4D.mask()

Panel4D.mask(cond, other=nan, inplace=False, axis=None, level=None, try_cast=False, raise_on_error=True) [source] Return an object of same shape as self and whose corresponding entries are from self where cond is False and otherwise are from other. Parameters: cond : boolean NDFrame, array or callable If cond is callable, it is computed on the NDFrame and should return boolean NDFrame or array. The callable must not change input NDFrame (though pandas doesn?t check it). New in version 0.

DataFrame.abs()

DataFrame.abs() [source] Return an object with absolute value taken?only applicable to objects that are all numeric. Returns: abs: type of caller

MultiIndex.is_unique

MultiIndex.is_unique = None