Detail: IndexMicrosecond: Display
Overview: IndexMicrosecond: Display
- IndexMicrosecond.interface
A Frame documenting the interface of this class.
>>> ix = sf.IndexMicrosecond(('1620-09-16', 'NaT', '1620-11-21')) >>> ix <IndexMicrosecond> 1620-09-16T00:00:00.000000 NaT 1620-11-21T00:00:00.000000 <datetime64[us]> >>> ix.interface <Frame> <Index> cls_name group doc <<U18> <Index: signature> __init__(labels, *, loc_is_iloc, ... IndexMicrosecond Constructor Initializer. Args... from_labels(labels, *, name) IndexMicrosecond Constructor Construct an Inde... from_pandas(value) IndexMicrosecond Constructor Given a Pandas in... to_html(config, style_config) IndexMicrosecond Exporter Return an HTML ta... to_html_datatables(fp, *, show, c... IndexMicrosecond Exporter Return a complete... to_pandas() IndexMicrosecond Exporter Return a Pandas I... to_series() IndexMicrosecond Exporter Return a Series w... to_visidata() IndexMicrosecond Exporter Open an interacti... STATIC IndexMicrosecond Attribute bool(x) -> bool R... depth IndexMicrosecond Attribute int([x]) -> integ... dtype IndexMicrosecond Attribute Return the dtype ... index_types IndexMicrosecond Attribute Return a Series o... memory IndexMicrosecond Attribute Return a MemoryDi... mloc IndexMicrosecond Attribute The memory locati... name IndexMicrosecond Attribute A hashable label ... names IndexMicrosecond Attribute Provide a suitabl... nbytes IndexMicrosecond Attribute Return the total ... ... ... ... ... via_re(pattern, flags).sub(repl, ... IndexMicrosecond Accessor Regular ... Return the string... via_re(pattern, flags).subn(repl,... IndexMicrosecond Accessor Regular ... Perform the same ... via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib Return the byte s... via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_hashlib(include_name, include... IndexMicrosecond Accessor Hashlib via_type_clinic.to_hint() IndexMicrosecond Accessor Type Clinic Return the type h... via_type_clinic.check(hint, *, fa... IndexMicrosecond Accessor Type Clinic Given a hint (a t... via_type_clinic.warn(hint, *, fai... IndexMicrosecond Accessor Type Clinic Given a hint (a t... via_type_clinic.__call__(hint, *,... IndexMicrosecond Accessor Type Clinic Given a hint (a t... via_type_clinic.__repr__() IndexMicrosecond Accessor Type Clinic Return a compact ... <<U90> <<U16> <<U27> <<U83>
- IndexMicrosecond.__repr__()
Return repr(self).
>>> ix = sf.IndexMicrosecond(('1620-09-16', 'NaT', '1620-11-21')) >>> repr(ix) <IndexMicrosecond> 1620-09-16T00:00:00.000000 NaT 1620-11-21T00:00:00.000000 <datetime64[us]>
- IndexMicrosecond.__str__()
Return str(self).
>>> ix = sf.IndexMicrosecond(('1620-09-16', 'NaT', '1620-11-21')) >>> str(ix) <IndexMicrosecond> 1620-09-16T00:00:00.000000 NaT 1620-11-21T00:00:00.000000 <datetime64[us]>
- IndexMicrosecond.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.IndexMicrosecond(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.display() <IndexMicrosecond> 1620-09-16T00:00:00.000000 NaT 1620-11-21T00:00:00.000000 <datetime64[us]> >>> ix.display(sf.DisplayConfig(type_show=False)) 1620-09-16T00:00:00.000000 NaT 1620-11-21T00:00:00.000000
- IndexMicrosecond.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.IndexMicrosecond(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.display_tall() <IndexMicrosecond> 1620-09-16T00:00:00.000000 NaT 1620-11-21T00:00:00.000000 <datetime64[us]>
- IndexMicrosecond.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.IndexMicrosecond(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.display_wide() <IndexMicrosecond> 1620-09-16T00:00:00.000000 NaT 1620-11-21T00:00:00.000000 <datetime64[us]>
IndexMicrosecond: 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