DatetimeIndex.shape

DatetimeIndex.shape return a tuple of the shape of the underlying data

DatetimeIndex.set_value()

DatetimeIndex.set_value(arr, key, value) [source] Fast lookup of value from 1-dimensional ndarray. Only use this if you know what you?re doing

DatetimeIndex.set_names()

DatetimeIndex.set_names(names, level=None, inplace=False) [source] Set new names on index. Defaults to returning new index. Parameters: names : str or sequence name(s) to set level : int, level name, or sequence of int/level names (default None) If the index is a MultiIndex (hierarchical), level(s) to set (None for all levels). Otherwise level must be None inplace : bool if True, mutates in place Returns: new index (of same type and class...etc) [if inplace, returns None] Examples

DatetimeIndex.second

DatetimeIndex.second The seconds of the datetime

DatetimeIndex.searchsorted()

DatetimeIndex.searchsorted(key, side='left', sorter=None) [source] Find indices where elements should be inserted to maintain order. Find the indices into a sorted DatetimeIndex self such that, if the corresponding elements in v were inserted before the indices, the order of self would be preserved. Parameters: key : array_like Values to insert into self. side : {?left?, ?right?}, optional If ?left?, the index of the first suitable location found is given. If ?right?, return the last su

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

DatetimeIndex.resolution

DatetimeIndex.resolution = None

DatetimeIndex.reshape()

DatetimeIndex.reshape(*args, **kwargs) [source] NOT IMPLEMENTED: do not call this method, as reshaping is not supported for Index objects and will raise an error. Reshape an Index.

DatetimeIndex.repeat()

DatetimeIndex.repeat(repeats, *args, **kwargs) [source] Analogous to ndarray.repeat

DatetimeIndex.rename()

DatetimeIndex.rename(name, inplace=False) [source] Set new names on index. Defaults to returning new index. Parameters: name : str or list name to set inplace : bool if True, mutates in place Returns: new index (of same type and class...etc) [if inplace, returns None]