Detail: IndexYearMonth: Display

Overview: IndexYearMonth: Display

IndexYearMonth.interface

A Frame documenting the interface of this class.

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

Return repr(self).

>>> ix = sf.IndexYearMonth(('1620-09', 'NaT', '1620-11'))
>>> repr(ix)
<IndexYearMonth>
1620-09
NaT
1620-11
<datetime64[M]>
IndexYearMonth.__str__()

Return str(self).

>>> ix = sf.IndexYearMonth(('1620-09', 'NaT', '1620-11'))
>>> str(ix)
<IndexYearMonth>
1620-09
NaT
1620-11
<datetime64[M]>
IndexYearMonth.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.IndexYearMonth(('1620-09', 'NaT', '1620-11'))
>>> ix.display()
<IndexYearMonth>
1620-09
NaT
1620-11
<datetime64[M]>
>>> ix.display(sf.DisplayConfig(type_show=False))
1620-09
NaT
1620-11
IndexYearMonth.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.IndexYearMonth(('1620-09', 'NaT', '1620-11'))
>>> ix.display_tall()
<IndexYearMonth>
1620-09
NaT
1620-11
<datetime64[M]>
IndexYearMonth.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.IndexYearMonth(('1620-09', 'NaT', '1620-11'))
>>> ix.display_wide()
<IndexYearMonth>
1620-09
NaT
1620-11
<datetime64[M]>

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