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