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.interface <Frame> <Index> cls_name group doc <<U18> <Index: signature> __init__(labels, *, name, loc_is_... 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).search(pos... IndexYearMonth Accessor Regular ... Scan through stri... via_re(pattern, flags).match(pos,... IndexYearMonth Accessor Regular ... If zero or more c... via_re(pattern, flags).fullmatch(... IndexYearMonth Accessor Regular ... If the whole stri... via_re(pattern, flags).split(maxs... IndexYearMonth Accessor Regular ... Split string by t... via_re(pattern, flags).findall(po... IndexYearMonth Accessor Regular ... Return all non-ov... 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 <<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, thestatic_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, thestatic_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, thestatic_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