Detail: IndexMicrosecond: Selector

Overview: IndexMicrosecond: Selector

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

IndexMicrosecond: 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