DatetimeIndex.to_datetime()

DatetimeIndex.to_datetime(dayfirst=False) [source]

CategoricalIndex.size

CategoricalIndex.size return the number of elements in the underlying data

DatetimeIndex.is_monotonic_increasing

DatetimeIndex.is_monotonic_increasing return if the index is monotonic increasing (only equal or increasing) values.

CategoricalIndex.shift()

CategoricalIndex.shift(periods=1, freq=None) [source] Shift Index containing datetime objects by input number of periods and DateOffset Returns: shifted : Index

Index.name

Index.name = None

Panel4D.tshift()

Panel4D.tshift(periods=1, freq=None, axis='major') [source]

Panel.rmod()

Panel.rmod(other, axis=0) [source] Modulo of series and other, element-wise (binary operator rmod). Equivalent to other % panel. Parameters: other : DataFrame or Panel axis : {items, major_axis, minor_axis} Axis to broadcast over Returns: Panel See also Panel.mod

DataFrameGroupBy.take()

DataFrameGroupBy.take(indices, axis=0, convert=True, is_copy=True, **kwargs) Analogous to ndarray.take Parameters: indices : list / array of ints axis : int, default 0 convert : translate neg to pos indices (default) is_copy : mark the returned frame as a copy Returns: taken : type of caller

DataFrame.slice_shift()

DataFrame.slice_shift(periods=1, axis=0) [source] Equivalent to shift without copying data. The shifted data will not include the dropped periods and the shifted axis will be smaller than the original. Parameters: periods : int Number of periods to move, can be positive or negative Returns: shifted : same type as caller Notes While the slice_shift is faster than shift, you may pay for it later during alignment.

Series.clip_upper()

Series.clip_upper(threshold, axis=None) [source] Return copy of input with values above given value(s) truncated. Parameters: threshold : float or array_like axis : int or string axis name, optional Align object with threshold along the given axis. Returns: clipped : same type as input See also clip