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