Detail: IndexHour: Accessor ValuesΒΆ
Overview: IndexHour: Accessor Values
- IndexHour.via_values.apply(func, *args, **kwargs)
- IndexHour.via_values
Interface for applying functions to values (as arrays) in this container.
- InterfaceValues.apply(func, *args, **kwargs)[source]
>>> ix = sf.IndexHour(('1517-04-01', '1517-12-31', '1517-06-30')) >>> ix.via_values.apply(np.sin) TypeError("ufunc 'sin' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''")
- IndexHour.via_values.__array_ufunc__(ufunc, method, *args, **kwargs)
- IndexHour.via_values
Interface for applying functions to values (as arrays) in this container.
- InterfaceValues.__array_ufunc__(ufunc, method, *args, **kwargs)[source]
Support for applying NumPy functions directly on containers, returning NumPy arrays.
>>> ix = sf.IndexHour(('1517-04-01', '1517-12-31', '1517-06-30')) >>> np.sin(ix.via_values) TypeError("ufunc 'sin' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''")
- IndexHour.via_values.__call__(*, consolidate_blocks, unify_blocks, dtype)
- IndexHour.via_values
Interface for applying functions to values (as arrays) in this container.
- InterfaceValues.__call__(*, consolidate_blocks=False, unify_blocks=False, dtype=None)[source]
- Parameters:
consolidate_blocks β Group adjacent same-typed arrays into 2D arrays.
unify_blocks β Group all arrays into single array, re-typing to an appropriate dtype.
dtype β specify a dtype to be used in conversion before consolidation or unification, and before function application.
>>> ix = sf.IndexHour(('1517-04-01', '1517-12-31', '1517-06-30')) >>> np.sin(ix.via_values(unify_blocks=True)) TypeError("ufunc 'sin' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''")
IndexHour: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary | Operator Unary | Accessor Values | Accessor Datetime | Accessor String | Accessor Regular Expression | Accessor Hashlib