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_labels(labels, *, name)         IndexGO  Constructor          Construct an Inde...
from_pandas(value)                   IndexGO  Constructor          Given a Pandas in...
to_html(config, style_config)        IndexGO  Exporter             Return an HTML ta...
to_html_datatables(fp, *, show, c... IndexGO  Exporter             Return a complete...
to_pandas()                          IndexGO  Exporter             Return a Pandas I...
to_series()                          IndexGO  Exporter             Return a Series w...
to_visidata()                        IndexGO  Exporter             Open an interacti...
STATIC                               IndexGO  Attribute            bool(x) -> bool R...
depth                                IndexGO  Attribute            int([x]) -> integ...
dtype                                IndexGO  Attribute            Return the dtype ...
index_types                          IndexGO  Attribute            Return a Series o...
memory                               IndexGO  Attribute            Return a MemoryDi...
mloc                                 IndexGO  Attribute            The memory locati...
name                                 IndexGO  Attribute            A hashable label ...
names                                IndexGO  Attribute            Provide a suitabl...
nbytes                               IndexGO  Attribute            Return the total ...
...                                  ...      ...                  ...
via_re(pattern, flags).sub(repl, ... IndexGO  Accessor Regular ... Return the string...
via_re(pattern, flags).subn(repl,... IndexGO  Accessor Regular ... Perform the same ...
via_hashlib(include_name, include... IndexGO  Accessor Hashlib     Return the byte s...
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_hashlib(include_name, include... IndexGO  Accessor Hashlib
via_type_clinic.to_hint()            IndexGO  Accessor Type Clinic Return the type h...
via_type_clinic.check(hint, *, fa... IndexGO  Accessor Type Clinic Given a hint (a t...
via_type_clinic.warn(hint, *, fai... IndexGO  Accessor Type Clinic Given a hint (a t...
via_type_clinic.__call__(hint, *,... IndexGO  Accessor Type Clinic Given a hint (a t...
via_type_clinic.__repr__()           IndexGO  Accessor Type Clinic Return a compact ...
<<U90>                               <<U7>    <<U27>               <<U83>
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