Panel.get_ftype_counts()

Panel.get_ftype_counts() [source] Return the counts of ftypes in this object.

Series.between_time()

Series.between_time(start_time, end_time, include_start=True, include_end=True) [source] Select values between particular times of the day (e.g., 9:00-9:30 AM). Parameters: start_time : datetime.time or string end_time : datetime.time or string include_start : boolean, default True include_end : boolean, default True Returns: values_between_time : type of caller

Panel.between_time()

Panel.between_time(start_time, end_time, include_start=True, include_end=True) [source] Select values between particular times of the day (e.g., 9:00-9:30 AM). Parameters: start_time : datetime.time or string end_time : datetime.time or string include_start : boolean, default True include_end : boolean, default True Returns: values_between_time : type of caller

Series.plot.hist()

Series.plot.hist(bins=10, **kwds) [source] Histogram New in version 0.17.0. Parameters: bins: integer, default 10 Number of histogram bins to be used **kwds : optional Keyword arguments to pass on to pandas.Series.plot(). Returns: axes : matplotlib.AxesSubplot or np.array of them

Index.insert()

Index.insert(loc, item) [source] Make new Index inserting new item at location. Follows Python list.append semantics for negative values Parameters: loc : int item : object Returns: new_index : Index

Series.resample()

Series.resample(rule, how=None, axis=0, fill_method=None, closed=None, label=None, convention='start', kind=None, loffset=None, limit=None, base=0, on=None, level=None) [source] Convenience method for frequency conversion and resampling of time series. Object must have a datetime-like index (DatetimeIndex, PeriodIndex, or TimedeltaIndex), or pass datetime-like values to the on or level keyword. Parameters: rule : string the offset string or object representing target conversion axis : in

Panel.first()

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

CategoricalIndex.asof()

CategoricalIndex.asof(label) [source] For a sorted index, return the most recent label up to and including the passed label. Return NaN if not found. See also get_loc asof is a thin wrapper around get_loc with method=?pad?

MultiIndex.is_monotonic_decreasing

MultiIndex.is_monotonic_decreasing return if the index is monotonic decreasing (only equal or decreasing) values.

DatetimeIndex.union_many()

DatetimeIndex.union_many(others) [source] A bit of a hack to accelerate unioning a collection of indexes