Detail: IndexSecond: Display#
Overview: IndexSecond: Display
- IndexSecond.interface#
A Frame documenting the interface of this class.
>>> ix = sf.IndexSecond(('1620-09-16', 'NaT', '1620-11-21')) >>> ix <IndexSecond> 1620-09-16T00:00:00 NaT 1620-11-21T00:00:00 <datetime64[s]> >>> ix.interface <Frame> <Index> cls_name group doc <<U18> <Index: signature> __init__(labels, /, *, loc_is_iloc,… IndexSecond Constructor Initializer. Args: … from_difference(*others) IndexSecond Constructor Construct a new Ind… from_intersection(*others) IndexSecond Constructor Construct a new Ind… from_labels(labels, /, *, name) IndexSecond Constructor Construct an Index … from_pandas(value, /) IndexSecond Constructor Given a Pandas inde… from_union(*others) IndexSecond Constructor Construct a new Ind… to_html(config, /, *, style_config) IndexSecond Exporter Return an HTML tabl… to_html_datatables(fp, /, *, show, … IndexSecond Exporter Return a complete H… to_pandas() IndexSecond Exporter Return a Pandas Ind… to_series() IndexSecond Exporter Return a Series wit… to_visidata() IndexSecond Exporter Open an interactive… STATIC IndexSecond Attribute Returns True when t… depth IndexSecond Attribute int([x]) -> integer… dtype IndexSecond Attribute Return the dtype of… index_types IndexSecond Attribute Return a Series of … memory IndexSecond Attribute A MemoryDisplay, pr… mloc IndexSecond Attribute The memory location… … … … … via_re(pattern, flags, /).sub(repl,… IndexSecond Accessor Regular Ex… Return the string o… via_re(pattern, flags, /).subn(repl… IndexSecond Accessor Regular Ex… Perform the same op… via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib Return the byte sig… via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_hashlib(*, include_name, includ… IndexSecond Accessor Hashlib via_type_clinic.to_hint() IndexSecond Accessor Type Clinic Return the type hin… via_type_clinic.check(hint, /, *, f… IndexSecond Accessor Type Clinic Given a hint (a typ… via_type_clinic.warn(hint, /, *, fa… IndexSecond Accessor Type Clinic Given a hint (a typ… via_type_clinic.__call__(hint, /, *… IndexSecond Accessor Type Clinic Given a hint (a typ… via_type_clinic.__repr__() IndexSecond Accessor Type Clinic Return a compact st… <<U91> <<U11> <<U27> <<U81>
- IndexSecond.__repr__()#
Return repr(self).
>>> ix = sf.IndexSecond(('1620-09-16', 'NaT', '1620-11-21')) >>> repr(ix) <IndexSecond> 1620-09-16T00:00:00 NaT 1620-11-21T00:00:00 <datetime64[s]>
- IndexSecond.__str__()#
Return str(self).
>>> ix = sf.IndexSecond(('1620-09-16', 'NaT', '1620-11-21')) >>> str(ix) <IndexSecond> 1620-09-16T00:00:00 NaT 1620-11-21T00:00:00 <datetime64[s]>
- IndexSecond.display(config=None, /, *, style_config=None)#
Return a
static_frame.Display, capable of providing a string representation.- Parameters:
config – A
static_frame.DisplayConfiginstance. If not provided, thestatic_frame.DisplayActivewill be used.
>>> ix = sf.IndexSecond(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.display() <IndexSecond> 1620-09-16T00:00:00 NaT 1620-11-21T00:00:00 <datetime64[s]> >>> ix.display(sf.DisplayConfig(type_show=False)) 1620-09-16T00:00:00 NaT 1620-11-21T00:00:00
- IndexSecond.display_tall(config=None, /)#
Maximize vertical presentation. Return a
static_frame.Display, capable of providing a string representation.- Parameters:
config – A
static_frame.DisplayConfiginstance. If not provided, thestatic_frame.DisplayActivewill be used.
>>> ix = sf.IndexSecond(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.display_tall() <IndexSecond> 1620-09-16T00:00:00 NaT 1620-11-21T00:00:00 <datetime64[s]>
- IndexSecond.display_wide(config=None, /)#
Maximize horizontal presentation. Return a
static_frame.Display, capable of providing a string representation.- Parameters:
config – A
static_frame.DisplayConfiginstance. If not provided, thestatic_frame.DisplayActivewill be used.
>>> ix = sf.IndexSecond(('1620-09-16', 'NaT', '1620-11-21')) >>> ix.display_wide() <IndexSecond> 1620-09-16T00:00:00 NaT 1620-11-21T00:00:00 <datetime64[s]>
IndexSecond: 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