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