Detail: IndexNanosecondGO: Display#

Overview: IndexNanosecondGO: Display

IndexNanosecondGO.interface#

A Frame documenting the interface of this class.

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

Return repr(self).

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

Return str(self).

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

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