Detail: IndexMinuteGO: Operator Unary
Overview: IndexMinuteGO: Operator Unary
- IndexMinuteGO.__abs__()
>>> ix = sf.IndexMinuteGO(('1517-04-01', '1517-12', '1517-06-30')) >>> ix <IndexMinuteGO> 1517-04-01T00:00 1517-12-01T00:00 1517-06-30T00:00 <datetime64[m]> >>> abs(ix) UFuncTypeError(<ufunc 'absolute'>, (<class 'numpy.dtypes.DateTime64DType'>, None))
- IndexMinuteGO.__invert__()
>>> ix = sf.IndexMinuteGO(('1517-04-01', '1517-12', '1517-06-30')) >>> ix <IndexMinuteGO> 1517-04-01T00:00 1517-12-01T00:00 1517-06-30T00:00 <datetime64[m]> >>> ~ix TypeError("ufunc 'invert' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''")
- IndexMinuteGO.__neg__()
>>> ix = sf.IndexMinuteGO(('1517-04-01', '1517-12', '1517-06-30')) >>> ix <IndexMinuteGO> 1517-04-01T00:00 1517-12-01T00:00 1517-06-30T00:00 <datetime64[m]> >>> -ix UFuncTypeError(<ufunc 'negative'>, (<class 'numpy.dtypes.DateTime64DType'>, None))
- IndexMinuteGO.__pos__()
>>> ix = sf.IndexMinuteGO(('1517-04-01', '1517-12', '1517-06-30')) >>> ix <IndexMinuteGO> 1517-04-01T00:00 1517-12-01T00:00 1517-06-30T00:00 <datetime64[m]> >>> +ix UFuncTypeError(<ufunc 'positive'>, (<class 'numpy.dtypes.DateTime64DType'>, None))
IndexMinuteGO: 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