Detail: IndexMillisecondGO: Display#

Overview: IndexMillisecondGO: Display

IndexMillisecondGO.interface#

A Frame documenting the interface of this class.

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

Return repr(self).

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

Return str(self).

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

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