Detail: IndexSecondGO: Display#

Overview: IndexSecondGO: Display

IndexSecondGO.interface#

A Frame documenting the interface of this class.

>>> ix = sf.IndexSecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix
<IndexSecondGO>
1620-09-16T00:00:00
NaT
1620-11-21T00:00:00
<datetime64[s]>
>>> ix.interface
<Frame>
<Index>                              cls_name      group                doc                  <<U18>
<Index: signature>
__init__(labels, /, *, loc_is_iloc,… IndexSecondGO Constructor          Initializer. Args: …
from_difference(*others)             IndexSecondGO Constructor          Construct a new Ind…
from_intersection(*others)           IndexSecondGO Constructor          Construct a new Ind…
from_labels(labels, /, *, name)      IndexSecondGO Constructor          Construct an Index …
from_pandas(value, /)                IndexSecondGO Constructor          Given a Pandas inde…
from_union(*others)                  IndexSecondGO Constructor          Construct a new Ind…
to_html(config, /, *, style_config)  IndexSecondGO Exporter             Return an HTML tabl…
to_html_datatables(fp, /, *, show, … IndexSecondGO Exporter             Return a complete H…
to_pandas()                          IndexSecondGO Exporter             Return a Pandas Ind…
to_series()                          IndexSecondGO Exporter             Return a Series wit…
to_visidata()                        IndexSecondGO Exporter             Open an interactive…
STATIC                               IndexSecondGO Attribute            Returns True when t…
depth                                IndexSecondGO Attribute            int([x]) -> integer…
dtype                                IndexSecondGO Attribute            Return the dtype of…
index_types                          IndexSecondGO Attribute            Return a Series of …
memory                               IndexSecondGO Attribute            A MemoryDisplay, pr…
mloc                                 IndexSecondGO Attribute            The memory location…
…                                    …             …                    …
via_re(pattern, flags, /).sub(repl,… IndexSecondGO Accessor Regular Ex… Return the string o…
via_re(pattern, flags, /).subn(repl… IndexSecondGO Accessor Regular Ex… Perform the same op…
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib     Return the byte sig…
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_hashlib(*, include_name, includ… IndexSecondGO Accessor Hashlib
via_type_clinic.to_hint()            IndexSecondGO Accessor Type Clinic Return the type hin…
via_type_clinic.check(hint, /, *, f… IndexSecondGO Accessor Type Clinic Given a hint (a typ…
via_type_clinic.warn(hint, /, *, fa… IndexSecondGO Accessor Type Clinic Given a hint (a typ…
via_type_clinic.__call__(hint, /, *… IndexSecondGO Accessor Type Clinic Given a hint (a typ…
via_type_clinic.__repr__()           IndexSecondGO Accessor Type Clinic Return a compact st…
<<U91>                               <<U13>        <<U27>               <<U81>
IndexSecondGO.__repr__()#

Return repr(self).

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

Return str(self).

>>> ix = sf.IndexSecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> str(ix)
<IndexSecondGO>
1620-09-16T00:00:00
NaT
1620-11-21T00:00:00
<datetime64[s]>
IndexSecondGO.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.IndexSecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix.display()
<IndexSecondGO>
1620-09-16T00:00:00
NaT
1620-11-21T00:00:00
<datetime64[s]>
>>> ix.display(sf.DisplayConfig(type_show=False))
1620-09-16T00:00:00
NaT
1620-11-21T00:00:00
IndexSecondGO.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.IndexSecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix.display_tall()
<IndexSecondGO>
1620-09-16T00:00:00
NaT
1620-11-21T00:00:00
<datetime64[s]>
IndexSecondGO.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.IndexSecondGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix.display_wide()
<IndexSecondGO>
1620-09-16T00:00:00
NaT
1620-11-21T00:00:00
<datetime64[s]>

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