Detail: IndexMicrosecondGO: Display

Overview: IndexMicrosecondGO: Display

IndexMicrosecondGO.interface

A Frame documenting the interface of this class.

>>> ix = sf.IndexMicrosecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix
<IndexMicrosecondGO>
1620-09-16T00:00:00.000000
NaT
1620-11-21T00:00:00.000000
<datetime64[us]>
>>> ix.interface
<Frame>
<Index>                              cls_name           group                doc                  <<U18>
<Index: signature>
__init__(labels, *, loc_is_iloc, ... IndexMicrosecondGO Constructor          Initializer. Args...
from_labels(labels, *, name)         IndexMicrosecondGO Constructor          Construct an Inde...
from_pandas(value)                   IndexMicrosecondGO Constructor          Given a Pandas in...
to_html(config, style_config)        IndexMicrosecondGO Exporter             Return an HTML ta...
to_html_datatables(fp, *, show, c... IndexMicrosecondGO Exporter             Return a complete...
to_pandas()                          IndexMicrosecondGO Exporter             Return a Pandas I...
to_series()                          IndexMicrosecondGO Exporter             Return a Series w...
to_visidata()                        IndexMicrosecondGO Exporter             Open an interacti...
STATIC                               IndexMicrosecondGO Attribute            bool(x) -> bool R...
depth                                IndexMicrosecondGO Attribute            int([x]) -> integ...
dtype                                IndexMicrosecondGO Attribute            Return the dtype ...
index_types                          IndexMicrosecondGO Attribute            Return a Series o...
memory                               IndexMicrosecondGO Attribute            Return a MemoryDi...
mloc                                 IndexMicrosecondGO Attribute            The memory locati...
name                                 IndexMicrosecondGO Attribute            A hashable label ...
names                                IndexMicrosecondGO Attribute            Provide a suitabl...
nbytes                               IndexMicrosecondGO Attribute            Return the total ...
...                                  ...                ...                  ...
via_re(pattern, flags).sub(repl, ... IndexMicrosecondGO Accessor Regular ... Return the string...
via_re(pattern, flags).subn(repl,... IndexMicrosecondGO Accessor Regular ... Perform the same ...
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib     Return the byte s...
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_hashlib(include_name, include... IndexMicrosecondGO Accessor Hashlib
via_type_clinic.to_hint()            IndexMicrosecondGO Accessor Type Clinic Return the type h...
via_type_clinic.check(hint, *, fa... IndexMicrosecondGO Accessor Type Clinic Given a hint (a t...
via_type_clinic.warn(hint, *, fai... IndexMicrosecondGO Accessor Type Clinic Given a hint (a t...
via_type_clinic.__call__(hint, *,... IndexMicrosecondGO Accessor Type Clinic Given a hint (a t...
via_type_clinic.__repr__()           IndexMicrosecondGO Accessor Type Clinic Return a compact ...
<<U90>                               <<U18>             <<U27>               <<U83>
IndexMicrosecondGO.__repr__()

Return repr(self).

>>> ix = sf.IndexMicrosecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> repr(ix)
<IndexMicrosecondGO>
1620-09-16T00:00:00.000000
NaT
1620-11-21T00:00:00.000000
<datetime64[us]>
IndexMicrosecondGO.__str__()

Return str(self).

>>> ix = sf.IndexMicrosecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> str(ix)
<IndexMicrosecondGO>
1620-09-16T00:00:00.000000
NaT
1620-11-21T00:00:00.000000
<datetime64[us]>
IndexMicrosecondGO.display(config=None, *, style_config=None)

Return a static_frame.Display, capable of providing a string representation.

Parameters:

config – A static_frame.DisplayConfig instance. If not provided, the static_frame.DisplayActive will be used.

>>> ix = sf.IndexMicrosecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix.display()
<IndexMicrosecondGO>
1620-09-16T00:00:00.000000
NaT
1620-11-21T00:00:00.000000
<datetime64[us]>
>>> ix.display(sf.DisplayConfig(type_show=False))
1620-09-16T00:00:00.000000
NaT
1620-11-21T00:00:00.000000
IndexMicrosecondGO.display_tall(config=None)

Maximize vertical presentation. Return a static_frame.Display, capable of providing a string representation.

Parameters:

config – A static_frame.DisplayConfig instance. If not provided, the static_frame.DisplayActive will be used.

>>> ix = sf.IndexMicrosecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix.display_tall()
<IndexMicrosecondGO>
1620-09-16T00:00:00.000000
NaT
1620-11-21T00:00:00.000000
<datetime64[us]>
IndexMicrosecondGO.display_wide(config=None)

Maximize horizontal presentation. Return a static_frame.Display, capable of providing a string representation.

Parameters:

config – A static_frame.DisplayConfig instance. If not provided, the static_frame.DisplayActive will be used.

>>> ix = sf.IndexMicrosecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix.display_wide()
<IndexMicrosecondGO>
1620-09-16T00:00:00.000000
NaT
1620-11-21T00: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