Detail: IndexMinuteGO: Display

Overview: IndexMinuteGO: Display

IndexMinuteGO.interface

A Frame documenting the interface of this class.

>>> ix = sf.IndexMinuteGO(('1620-09-16', 'NaT', '1620-11-21'))
>>> ix
<IndexMinuteGO>
1620-09-16T00:00
NaT
1620-11-21T00:00
<datetime64[m]>
>>> ix.interface
<Frame>
<Index>                              cls_name      group                doc                  <<U18>
<Index: signature>
__init__(labels, *, loc_is_iloc, ... IndexMinuteGO Constructor          Initializer. Args...
from_labels(labels, *, name)         IndexMinuteGO Constructor          Construct an Inde...
from_pandas(value)                   IndexMinuteGO Constructor          Given a Pandas in...
to_html(config, style_config)        IndexMinuteGO Exporter             Return an HTML ta...
to_html_datatables(fp, *, show, c... IndexMinuteGO Exporter             Return a complete...
to_pandas()                          IndexMinuteGO Exporter             Return a Pandas I...
to_series()                          IndexMinuteGO Exporter             Return a Series w...
to_visidata()                        IndexMinuteGO Exporter             Open an interacti...
STATIC                               IndexMinuteGO Attribute            bool(x) -> bool R...
depth                                IndexMinuteGO Attribute            int([x]) -> integ...
dtype                                IndexMinuteGO Attribute            Return the dtype ...
index_types                          IndexMinuteGO Attribute            Return a Series o...
memory                               IndexMinuteGO Attribute            Return a MemoryDi...
mloc                                 IndexMinuteGO Attribute            The memory locati...
name                                 IndexMinuteGO Attribute            A hashable label ...
names                                IndexMinuteGO Attribute            Provide a suitabl...
nbytes                               IndexMinuteGO Attribute            Return the total ...
...                                  ...           ...                  ...
via_re(pattern, flags).sub(repl, ... IndexMinuteGO Accessor Regular ... Return the string...
via_re(pattern, flags).subn(repl,... IndexMinuteGO Accessor Regular ... Perform the same ...
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib     Return the byte s...
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_hashlib(include_name, include... IndexMinuteGO Accessor Hashlib
via_type_clinic.to_hint()            IndexMinuteGO Accessor Type Clinic Return the type h...
via_type_clinic.check(hint, *, fa... IndexMinuteGO Accessor Type Clinic Given a hint (a t...
via_type_clinic.warn(hint, *, fai... IndexMinuteGO Accessor Type Clinic Given a hint (a t...
via_type_clinic.__call__(hint, *,... IndexMinuteGO Accessor Type Clinic Given a hint (a t...
via_type_clinic.__repr__()           IndexMinuteGO Accessor Type Clinic Return a compact ...
<<U90>                               <<U13>        <<U27>               <<U83>
IndexMinuteGO.__repr__()

Return repr(self).

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

Return str(self).

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

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