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_difference(*others)             IndexMicrosecondGO Constructor          Construct a new Ind…
from_intersection(*others)           IndexMicrosecondGO Constructor          Construct a new Ind…
from_labels(labels, /, *, name)      IndexMicrosecondGO Constructor          Construct an Index …
from_pandas(value, /)                IndexMicrosecondGO Constructor          Given a Pandas inde…
from_union(*others)                  IndexMicrosecondGO Constructor          Construct a new Ind…
to_html(config, /, *, style_config)  IndexMicrosecondGO Exporter             Return an HTML tabl…
to_html_datatables(fp, /, *, show, … IndexMicrosecondGO Exporter             Return a complete H…
to_pandas()                          IndexMicrosecondGO Exporter             Return a Pandas Ind…
to_series()                          IndexMicrosecondGO Exporter             Return a Series wit…
to_visidata()                        IndexMicrosecondGO Exporter             Open an interactive…
STATIC                               IndexMicrosecondGO Attribute            Returns True when t…
depth                                IndexMicrosecondGO Attribute            int([x]) -> integer…
dtype                                IndexMicrosecondGO Attribute            Return the dtype of…
index_types                          IndexMicrosecondGO Attribute            Return a Series of …
memory                               IndexMicrosecondGO Attribute            A MemoryDisplay, pr…
mloc                                 IndexMicrosecondGO Attribute            The memory location…
…                                    …                  …                    …
via_re(pattern, flags, /).sub(repl,… IndexMicrosecondGO Accessor Regular Ex… Return the string o…
via_re(pattern, flags, /).subn(repl… IndexMicrosecondGO Accessor Regular Ex… Perform the same op…
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib     Return the byte sig…
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexMicrosecondGO Accessor Hashlib
via_type_clinic.to_hint()            IndexMicrosecondGO Accessor Type Clinic Return the type hin…
via_type_clinic.check(hint, /, *, f… IndexMicrosecondGO Accessor Type Clinic Given a hint (a typ…
via_type_clinic.warn(hint, /, *, fa… IndexMicrosecondGO Accessor Type Clinic Given a hint (a typ…
via_type_clinic.__call__(hint, /, *… IndexMicrosecondGO Accessor Type Clinic Given a hint (a typ…
via_type_clinic.__repr__()           IndexMicrosecondGO Accessor Type Clinic Return a compact st…
<<U91>                               <<U18>             <<U27>               <<U81>
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