Detail: IndexMillisecond: Display#

Overview: IndexMillisecond: Display

IndexMillisecond.interface#

A Frame documenting the interface of this class.

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

Return repr(self).

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

Return str(self).

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

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