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