Detail: IndexMinuteGO: Selector#
Overview: IndexMinuteGO: Selector
- IndexMinuteGO.drop.iloc[key]
- IndexMinuteGO.drop
- InterfaceSelectDuo.iloc
>>> 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.drop.iloc[1] <IndexMinuteGO> 1517-04-01T00:00 1517-06-30T00:00 <datetime64[m]> >>> ix.drop.iloc[1:] <IndexMinuteGO> 1517-04-01T00:00 <datetime64[m]> >>> ix.drop.iloc[[0, 2]] <IndexMinuteGO> 1517-12-01T00:00 <datetime64[m]>
- IndexMinuteGO.drop.loc[key]
- IndexMinuteGO.drop
- InterfaceSelectDuo.loc
>>> 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.drop.loc['1517-06-30'] <IndexMinuteGO> 1517-04-01T00:00 1517-12-01T00:00 <datetime64[m]> >>> ix.drop.loc['1517-06-30':] <IndexMinuteGO> 1517-04-01T00:00 1517-12-01T00:00 <datetime64[m]>
- IndexMinuteGO[key]()#
- IndexMinuteGO.__getitem__ = <function Index.__getitem__>
>>> 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[1] 1517-12-01T00:00 >>> ix[1:] <IndexMinuteGO> 1517-12-01T00:00 1517-06-30T00:00 <datetime64[m]> >>> ix[[0, 2]] <IndexMinuteGO> 1517-04-01T00:00 1517-06-30T00:00 <datetime64[m]>
- IndexMinuteGO.iloc[key]
- iloc
>>> 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.iloc[1] 1517-12-01T00:00 >>> ix.iloc[1:] <IndexMinuteGO> 1517-12-01T00:00 1517-06-30T00:00 <datetime64[m]> >>> ix.iloc[[0, 2]] <IndexMinuteGO> 1517-04-01T00:00 1517-06-30T00:00 <datetime64[m]>
- IndexMinuteGO.loc[key]
- loc
>>> 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.loc['1517-06-30'] <IndexMinuteGO> 1517-06-30T00:00 <datetime64[m]> >>> ix.loc['1517-06-30':] <IndexMinuteGO> 1517-06-30T00:00 <datetime64[m]>
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