Detail: IndexGO: Display#

Overview: IndexGO: Display

IndexGO.interface#

A Frame documenting the interface of this class.

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

Return repr(self).

>>> ix = sf.IndexGO((None, 'A', 1024, True), name='x')
>>> repr(ix)
<IndexGO: x>
None
A
1024
True
<object>
IndexGO.__str__()#

Return str(self).

>>> ix = sf.IndexGO((None, 'A', 1024, True), name='x')
>>> str(ix)
<IndexGO: x>
None
A
1024
True
<object>
IndexGO.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.IndexGO((None, 'A', 1024, True), name='x')
>>> ix.display()
<IndexGO: x>
None
A
1024
True
<object>
>>> ix.display(sf.DisplayConfig(type_show=False))
None
A
1024
True
IndexGO.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.IndexGO((None, 'A', 1024, True), name='x')
>>> ix.display_tall()
<IndexGO: x>
None
A
1024
True
<object>
IndexGO.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.IndexGO((None, 'A', 1024, True), name='x')
>>> ix.display_wide()
<IndexGO: x>
None
A
1024
True
<object>

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