Panel.select()

Panel.select(crit, axis=0) [source] Return data corresponding to axis labels matching criteria Parameters: crit : function To be called on each index (label). Should return True or False axis : int Returns: selection : type of caller

TimedeltaIndex.is_floating()

TimedeltaIndex.is_floating() [source]

DatetimeIndex[source]

class pandas.DatetimeIndex [source] Immutable ndarray of datetime64 data, represented internally as int64, and which can be boxed to Timestamp objects that are subclasses of datetime and carry metadata such as frequency information. Parameters: data : array-like (1-dimensional), optional Optional datetime-like data to construct index with copy : bool Make a copy of input ndarray freq : string or pandas offset object, optional One of pandas date offset strings or corresponding objects

Index.is_categorical()

Index.is_categorical() [source]

Series.tail()

Series.tail(n=5) [source] Returns last n rows

DataFrame.add_suffix()

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

DatetimeIndex.putmask()

DatetimeIndex.putmask(mask, value) [source] return a new Index of the values set with the mask See also numpy.ndarray.putmask

MultiIndex.unique()

MultiIndex.unique() [source] Return Index of unique values in the object. Significantly faster than numpy.unique. Includes NA values. The order of the original is preserved. Returns: uniques : Index

Panel4D.prod()

Panel4D.prod(axis=None, skipna=None, level=None, numeric_only=None, **kwargs) [source] Return the product of the values for the requested axis Parameters: axis : {labels (0), items (1), major_axis (2), minor_axis (3)} skipna : boolean, default True Exclude NA/null values. If an entire row/column is NA, the result will be NA level : int or level name, default None If the axis is a MultiIndex (hierarchical), count along a particular level, collapsing into a Panel numeric_only : boolean,

Index.sym_diff()

Index.sym_diff(*args, **kwargs) [source]