Detail: IndexHourGO: Method
- IndexHourGO.__array__(dtype=None)
Support the __array__ interface, returning an array of values.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.__array__() ['1517-04-01T00' '1517-12-31T00' '1517-06-30T00']
- IndexHourGO.__array_ufunc__(ufunc, method, *args, **kwargs)
Support for NumPy elements or arrays on the left hand of binary operators.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> np.array((0, 1, 0)) * ix UFuncTypeError(<ufunc 'multiply'>, (dtype('int64'), dtype('<M8[h]')))
- IndexHourGO.__bool__()
Raises ValueError to prohibit ambiguous use of truthy evaluation.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> bool(ix) ErrorNotTruthy('The truth value of a container is ambiguous. For a truthy indicator of non-empty status, use the `size` attribute.')
- IndexHourGO.__copy__()
Return shallow copy of this Index.
>>> import copy >>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> copy.copy(ix) <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]>
- IndexHourGO.__deepcopy__(memo)
>>> import copy >>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> copy.deepcopy(ix) <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]>
- IndexHourGO.__len__()
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> len(ix) 3
- IndexHourGO.all(axis=0, skipna=True, out=None)
Logical
and
over values along the specified axis.- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.all() True
- IndexHourGO.any(axis=0, skipna=True, out=None)
Logical
or
over values along the specified axis.- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.any() True
- IndexHourGO.append(value)
Specialize for fixed-typed indices: convert value argument; do not need to resolve_dtype with each addition; self._map is never None
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.append('f') ValueError('Error parsing datetime string "f" at position 0') >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]>
- IndexHourGO.astype(dtype)
Return an Index with type determined by dtype argument. If a datetime64 dtype is provided, the appropriate
Index
subclass will be returned. Note that for Index, this is a simple function, whereas forIndexHierarchy
, this is an interface exposing both a callable and a getitem interface.- Parameters:
dtype – A value suitable for specyfying a NumPy dtype, such as a Python type (float), NumPy array protocol strings (‘f8’), or a dtype instance.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.astype(str) <IndexGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <<U32>
- IndexHourGO.copy()
Return shallow copy of this Index.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.copy() <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]>
- IndexHourGO.cumprod(axis=0, skipna=True)
Return the cumulative product over the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.cumprod() UFuncTypeError(<ufunc 'multiply'>, (dtype('<M8[h]'), dtype('<M8[h]')))
- IndexHourGO.cumsum(axis=0, skipna=True)
Return the cumulative sum over the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.cumsum() UFuncTypeError(<ufunc 'add'>, (dtype('<M8[h]'), dtype('<M8[h]')))
- IndexHourGO.difference(*others)
Perform difference with another Index, container, or NumPy array. Retains order.
>>> ix1 = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix1 <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix2 = sf.IndexHourGO(('2022-04-01', '2021-12-31', '2022-06-30')) >>> ix2 <IndexHourGO> 2022-04-01T00 2021-12-31T00 2022-06-30T00 <datetime64[h]> >>> ix1.difference(ix2) <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]>
- IndexHourGO.dropfalsy()
Return a new
Index
after removing values of NaN or None.>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix <IndexHourGO> 1620-09-16T00 NaT 1620-11-21T00 <datetime64[h]> >>> ix.dropfalsy() <IndexHourGO> 1620-09-16T00 1620-11-21T00 <datetime64[h]>
- IndexHourGO.dropna()
Return a new
Index
after removing values of NaN or None.>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix <IndexHourGO> 1620-09-16T00 NaT 1620-11-21T00 <datetime64[h]> >>> ix.dropna() <IndexHourGO> 1620-09-16T00 1620-11-21T00 <datetime64[h]>
- IndexHourGO.equals(other, *, compare_name=False, compare_dtype=False, compare_class=False, skipna=True)
Return a
bool
from comparison to any other object.- Parameters:
compare_name – Include equality of the container’s name (and all composed containers) in the comparison.
compare_dtype – Include equality of the container’s dtype (and all composed containers) in the comparison.
compare_class – Include equality of the container’s class (and all composed containers) in the comparison.
skipna – If True, comparisons between missing values are equal.
>>> ix1 = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix1 <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix2 = sf.IndexHourGO(('2022-04-01', '2021-12-31', '2022-06-30')) >>> ix2 <IndexHourGO> 2022-04-01T00 2021-12-31T00 2022-06-30T00 <datetime64[h]> >>> ix1.equals(ix2) False
- IndexHourGO.extend(values)
Append multiple values :param values: can be a generator.
>>> ix1 = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix1 <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix2 = sf.IndexHourGO(('2022-04-01', '2021-12-31', '2022-06-30')) >>> ix2 <IndexHourGO> 2022-04-01T00 2021-12-31T00 2022-06-30T00 <datetime64[h]> >>> ix1.extend(ix2) >>> ix1 <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 2022-04-01T00 2021-12-31T00 2022-06-30T00 <datetime64[h]>
- IndexHourGO.fillfalsy(value)
Return an
Index
with replacing falsy values with the supplied value.- Parameters:
value – Value to be used to replace missing values (NaN or None).
>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix <IndexHourGO> 1620-09-16T00 NaT 1620-11-21T00 <datetime64[h]> >>> ix.fillfalsy('A') ValueError('Error parsing datetime string "A" at position 0')
- IndexHourGO.fillna(value)
Return an
Index
with replacing null (NaN or None) with the supplied value.- Parameters:
value – Value to be used to replace missing values (NaN or None).
>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix <IndexHourGO> 1620-09-16T00 NaT 1620-11-21T00 <datetime64[h]> >>> ix.fillna(0) <IndexHourGO> 1620-09-16T00 1970-01-01T00 1620-11-21T00 <datetime64[h]>
- IndexHourGO.head(count=5)
Return a
Index
consisting only of the top elements as specified bycount
.- Parameters:
count – Number of elements to be returned from the top of the
Index
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.head(2) <IndexHourGO> 1517-04-01T00 1517-12-31T00 <datetime64[h]>
- IndexHourGO.iloc_searchsorted(values, *, side_left=True)
Given a sorted
Series
, return the iloc (integer) position(s) at which insertion invalues
would retain sort order.- Parameters:
values – a single value, or iterable of values.
side_left – If True, the index of the first suitable location found is given, else return the last such index. If matching an existing value, side_left==True will return that position, side_left==Right will return the next position (or the length).
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.iloc_searchsorted('c') ValueError('Error parsing datetime string "c" at position 0')
- IndexHourGO.intersection(*others)
Perform intersection with one or many Index, container, or NumPy array. Identical comparisons retain order.
>>> ix1 = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix1 <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix2 = sf.IndexHourGO(('2022-04-01', '2021-12-31', '2022-06-30')) >>> ix2 <IndexHourGO> 2022-04-01T00 2021-12-31T00 2022-06-30T00 <datetime64[h]> >>> ix1.intersection(ix2) <IndexHourGO> <datetime64[h]>
- IndexHourGO.isfalsy()
Return a same-shaped, Boolean
ndarray
indicating which values are falsy.>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.isfalsy() [False True False]
- IndexHourGO.isin(other)
Return a Boolean array showing True where a label is found in other. If other is a multidimensional array, it is flattened.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.isin(('1517-06-30',)) [False False False]
- IndexHourGO.isna()
Return a same-shaped, Boolean
ndarray
indicating which values are NaN or None.>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.isna() [False True False]
- IndexHourGO.label_widths_at_depth(depth_level=0)
A generator of pairs, where each pair is the label and the contiguous count of that label found at the depth specified by
depth_level
.- Parameters:
depth_level – a depth level, starting from zero.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> tuple(ix.label_widths_at_depth(0)) ((numpy.datetime64('1517-04-01T00','h'), 1), (numpy.datetime64('1517-12-31T00','h'), 1), (numpy.datetime64('1517-06-30T00','h'), 1))
- IndexHourGO.level_add(level, *, index_constructor=None)
Return an IndexHierarchy with an added root level.
- Parameters:
level – A hashable to used as the new root.
* –
index_constructor –
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.level_add('A') <IndexHierarchyGO> A 1517-04-01T00 A 1517-12-31T00 A 1517-06-30T00 <<U1> <datetime64[h]>
- IndexHourGO.loc_searchsorted(values, *, side_left=True, fill_value=nan)
Given a sorted
Series
, return the loc (label) position(s) at which insertion invalues
would retain sort order.- Parameters:
values – a single value, or iterable of values.
side_left – If True, the index of the first suitable location found is given, else return the last such index. If matching an existing value, side_left==True will return that position, side_left==Right will return the next position (or the length).
fill_value – A value to be used to fill the label beyond the last label.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.loc_searchsorted('c') ValueError('Error parsing datetime string "c" at position 0')
- IndexHourGO.loc_to_iloc(key)
Given a label (loc) style key (either a label, a list of labels, a slice, or a Boolean selection), return the index position (iloc) style key. Keys that are not found will raise a KeyError or a sf.LocInvalid error.
- Parameters:
key – a label key.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.loc_to_iloc('d') ValueError('Error parsing datetime string "d" at position 0') >>> ix.loc_to_iloc(['a', 'e']) ValueError('Cannot create a NumPy datetime other than NaT with generic units') >>> ix.loc_to_iloc(slice('c', None)) ValueError('Error parsing datetime string "c" at position 0')
- IndexHourGO.max(axis=0, skipna=True, out=None)
Return the maximum along the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.max() 1517-12-31T00
- IndexHourGO.mean(axis=0, skipna=True, out=None)
Return the mean along the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.mean() UFuncTypeError(<ufunc 'add'>, (dtype('<M8[h]'), dtype('<M8[h]')))
- IndexHourGO.median(axis=0, skipna=True, out=None)
Return the median along the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.median() UFuncTypeError(<ufunc 'add'>, (dtype('<M8[h]'), dtype('<M8[h]')))
- IndexHourGO.min(axis=0, skipna=True, out=None)
Return the minimum along the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.min() 1517-04-01T00
- IndexHourGO.notfalsy()
Return a same-shaped, Boolean
ndarray
indicating which values are falsy.>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.notfalsy() [ True False True]
- IndexHourGO.notna()
Return a same-shaped, Boolean
ndarray
indicating which values are NaN or None.>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.notna() [ True False True]
- IndexHourGO.prod(axis=0, skipna=True, allna=1, out=None)
Return the product along the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.prod() UFuncTypeError(<ufunc 'multiply'>, (dtype('<M8[h]'), dtype('<M8[h]')))
- IndexHourGO.relabel(mapper)
Return a new Index with labels replaced by the callable or mapping; order will be retained. If a mapping is used, the mapping need not map all origin keys.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.relabel(lambda l: l.astype('<M8[ms]').astype(object).day) <IndexHourGO> 1970-01-01T01 1970-01-02T07 1970-01-02T06 <datetime64[h]>
- IndexHourGO.rename(name)
Return a new Frame with an updated name attribute.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.rename('y') <IndexHourGO: y> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]>
- IndexHourGO.roll(shift)
Return an Index with values rotated forward and wrapped around (with a postive shift) or backward and wrapped around (with a negative shift).
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.roll(2) <IndexHourGO> 1517-12-31T00 1517-06-30T00 1517-04-01T00 <datetime64[h]>
- IndexHourGO.sample(count=1, *, seed=None)
Randomly (optionally made deterministic with a fixed seed) extract items from the container to return a subset of the container.
- Parameters:
select. (Number of elements to) –
selection. (Initial state of random) –
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.sample(2, seed=0) <IndexHourGO> 1517-12-31T00 1517-06-30T00 <datetime64[h]>
- IndexHourGO.sort(ascending=True, kind='mergesort', key=None)
Return a new Index with the labels sorted.
- Parameters:
ascending – If True, sort in ascending order; if False, sort in descending order.
kind – Name of the sort algorithm as passed to NumPy.
key – A function that is used to pre-process the selected columns or rows and derive new values to sort by.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.sort() <IndexHourGO> 1517-04-01T00 1517-06-30T00 1517-12-31T00 <datetime64[h]> >>> ix.sort(ascending=False) <IndexHourGO> 1517-12-31T00 1517-06-30T00 1517-04-01T00 <datetime64[h]>
- IndexHourGO.std(axis=0, skipna=True, ddof=0, out=None)
Return the standard deviaton along the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.std() UFuncTypeError(<ufunc 'add'>, (dtype('<M8[h]'), dtype('<M8[h]')))
- IndexHourGO.sum(axis=0, skipna=True, allna=0, out=None)
Sum values along the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.sum() UFuncTypeError(<ufunc 'add'>, (dtype('<M8[h]'), dtype('<M8[h]')))
- IndexHourGO.tail(count=5)
Return a
Index
consisting only of the bottom elements as specified bycount
.- Parameters:
count – Number of elements to be returned from the bottom of the
Index
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.tail(2) <IndexHourGO> 1517-12-31T00 1517-06-30T00 <datetime64[h]>
- IndexHourGO.union(*others)
Perform union with another Index, container, or NumPy array. Identical comparisons retain order.
>>> ix1 = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix1 <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix2 = sf.IndexHourGO(('2022-04-01', '2021-12-31', '2022-06-30')) >>> ix2 <IndexHourGO> 2022-04-01T00 2021-12-31T00 2022-06-30T00 <datetime64[h]> >>> ix1.union(ix2) <IndexHourGO> 1517-04-01T00 1517-06-30T00 1517-12-31T00 2021-12-31T00 2022-04-01T00 2022-06-30T00 <datetime64[h]>
- IndexHourGO.unique(depth_level=0, order_by_occurrence=False)
Return a NumPy array of unique values.
- Parameters:
depth_level – defaults to 0 for for a 1D Index.
order_by_occurrence – for 1D indices, this argument is a no-op. Provided for compatibility with IndexHierarchy.
- Returns:
numpy.ndarray
>>> ix = sf.IndexHourGO(('1620-09-16', 'NaT', '1620-11-21')) >>> ix <IndexHourGO> 1620-09-16T00 NaT 1620-11-21T00 <datetime64[h]> >>> ix.unique() ['1620-09-16T00' 'NaT' '1620-11-21T00']
- IndexHourGO.values_at_depth(depth_level=0)
Return an NP array for the depth_level specified.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.values_at_depth(0) ['1517-04-01T00' '1517-12-31T00' '1517-06-30T00']
- IndexHourGO.var(axis=0, skipna=True, ddof=0, out=None)
Return the variance along the specified axis.
- Parameters:
axis – Axis, defaulting to axis 0.
skipna – Skip missing (NaN) values, defaulting to True.
>>> ix = sf.IndexHourGO(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix <IndexHourGO> 1517-04-01T00 1517-12-31T00 1517-06-30T00 <datetime64[h]> >>> ix.var() UFuncTypeError(<ufunc 'add'>, (dtype('<M8[h]'), dtype('<M8[h]')))
IndexHourGO: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary | Operator Unary | Accessor Values | Accessor Datetime | Accessor String | Accessor Regular Expression | Accessor Hashlib | Accessor Type Clinic