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