Panel.at_time()

Panel.at_time(time, asof=False) [source] Select values at particular time of day (e.g. 9:30AM). Parameters: time : datetime.time or string Returns: values_at_time : type of caller

DatetimeIndex.tz_convert()

DatetimeIndex.tz_convert(tz) [source] Convert tz-aware DatetimeIndex from one time zone to another (using pytz/dateutil) Parameters: tz : string, pytz.timezone, dateutil.tz.tzfile or None Time zone for time. Corresponding timestamps would be converted to time zone of the TimeSeries. None will remove timezone holding UTC time. Returns: normalized : DatetimeIndex Raises: TypeError If DatetimeIndex is tz-naive.

TimedeltaIndex.delete()

TimedeltaIndex.delete(loc) [source] Make a new DatetimeIndex with passed location(s) deleted. Parameters: loc: int, slice or array of ints Indicate which sub-arrays to remove. Returns: new_index : TimedeltaIndex

MultiIndex.is_lexsorted_for_tuple()

MultiIndex.is_lexsorted_for_tuple(tup) [source] Return True if we are correctly lexsorted given the passed tuple

Panel.xs()

Panel.xs(key, axis=1) [source] Return slice of panel along selected axis Parameters: key : object Label axis : {?items?, ?major?, ?minor}, default 1/?major? Returns: y : ndim(self)-1 Notes xs is only for getting, not setting values. MultiIndex Slicers is a generic way to get/set values on any level or levels and is a superset of xs functionality, see MultiIndex Slicers

DataFrame.style

DataFrame.style Property returning a Styler object containing methods for building a styled HTML representation fo the DataFrame. See also pandas.formats.style.Styler

Panel4D.set_axis()

Panel4D.set_axis(axis, labels) [source] public verson of axis assignment

CategoricalIndex.to_series()

CategoricalIndex.to_series(**kwargs) [source] Create a Series with both index and values equal to the index keys useful with map for returning an indexer based on an index Returns: Series : dtype will be based on the type of the Index values.

pandas.read_pickle()

pandas.read_pickle(path) [source] Load pickled pandas object (or any other pickled object) from the specified file path Warning: Loading pickled data received from untrusted sources can be unsafe. See: http://docs.python.org/2.7/library/pickle.html Parameters: path : string File path Returns: unpickled : type of object stored in file

TimedeltaIndex.is_integer()

TimedeltaIndex.is_integer() [source]