Detail: IndexMicrosecondGO: Constructor
Overview: IndexMicrosecondGO: Constructor
- IndexMicrosecondGO.__init__(labels, *, loc_is_iloc=False, name=<object object>)
Initializer.
- Parameters:
labels – Iterable of hashable values to be used as the index labels. If strings, NumPy datetime conversions will be applied.
name – A hashable object to label the container.
>>> sf.IndexMicrosecondGO(('1517-04-01', '1517-12-31', '1517-06-30')) <IndexMicrosecondGO> 1517-04-01T00:00:00.000000 1517-12-31T00:00:00.000000 1517-06-30T00:00:00.000000 <datetime64[us]>
- classmethod IndexMicrosecondGO.from_labels(labels, *, name=None)
Construct an
Index
from an iterable of labels, where each label is a hashable. Provided for a compatible interface toIndexHierarchy
.>>> sf.IndexMicrosecondGO.from_labels(('1517-04-01', '1517-12-31', '1517-06-30')) <IndexMicrosecondGO> 1517-04-01T00:00:00.000000 1517-12-31T00:00:00.000000 1517-06-30T00:00:00.000000 <datetime64[us]>
- classmethod IndexMicrosecondGO.from_pandas(value)
Given a Pandas index, return the appropriate IndexBase derived class.
>>> ix = pd.Index(('1517-04-01', '1517-12-31', '1517-06-30')) >>> sf.IndexMicrosecondGO.from_pandas(ix) <IndexGO> 1517-04-01 1517-12-31 1517-06-30 <object>
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