Detail: IndexNanosecond: Display

Overview: IndexNanosecond: Display

IndexNanosecond.interface

A Frame documenting the interface of this class.

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

Return repr(self).

>>> ix = sf.IndexNanosecond(('1789-05-05', 'NaT', '1799-11-09'))
>>> repr(ix)
<IndexNanosecond>
1789-05-05T00:00:00.000000000
NaT
1799-11-09T00:00:00.000000000
<datetime64[ns]>
IndexNanosecond.__str__()

Return str(self).

>>> ix = sf.IndexNanosecond(('1789-05-05', 'NaT', '1799-11-09'))
>>> str(ix)
<IndexNanosecond>
1789-05-05T00:00:00.000000000
NaT
1799-11-09T00:00:00.000000000
<datetime64[ns]>
IndexNanosecond.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.IndexNanosecond(('1789-05-05', 'NaT', '1799-11-09'))
>>> ix.display()
<IndexNanosecond>
1789-05-05T00:00:00.000000000
NaT
1799-11-09T00:00:00.000000000
<datetime64[ns]>
>>> ix.display(sf.DisplayConfig(type_show=False))
1789-05-05T00:00:00.000000000
NaT
1799-11-09T00:00:00.000000000
IndexNanosecond.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.IndexNanosecond(('1789-05-05', 'NaT', '1799-11-09'))
>>> ix.display_tall()
<IndexNanosecond>
1789-05-05T00:00:00.000000000
NaT
1799-11-09T00:00:00.000000000
<datetime64[ns]>
IndexNanosecond.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.IndexNanosecond(('1789-05-05', 'NaT', '1799-11-09'))
>>> ix.display_wide()
<IndexNanosecond>
1789-05-05T00:00:00.000000000
NaT
1799-11-09T00:00:00.000000000
<datetime64[ns]>

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