Detail: SeriesHE: Display#

Overview: SeriesHE: Display

SeriesHE.interface#

A Frame documenting the interface of this class.

>>> s = sf.SeriesHE((10, 2, 8), index=('a', 'b', 'c'))
>>> s
<SeriesHE>
<Index>
a          10
b          2
c          8
<<U1>      <int64>
>>> s.interface
<Frame>
<Index>                              cls_name group                doc                  <<U18>
<Index: signature>
__init__(values, /, *, index, name,… SeriesHE Constructor          Initializer. Args: …
from_concat(containers, /, *, index… SeriesHE Constructor          Concatenate multipl…
from_concat_items(items, /, *, name… SeriesHE Constructor          Produce a Series wi…
from_delimited(delimited, /, *, del… SeriesHE Constructor          Series construction…
from_dict(mapping, /, *, dtype, nam… SeriesHE Constructor          Series construction…
from_display(display, /)             SeriesHE Constructor          Construct a Series …
from_element(element, /, *, index, … SeriesHE Constructor          Create a Series fro…
from_items(pairs, /, *, dtype, name… SeriesHE Constructor          Series construction…
from_overlay(containers, /, *, inde… SeriesHE Constructor          Return a new Series…
from_pandas(value, /, *, index, ind… SeriesHE Constructor          Given a Pandas Seri…
to_frame(*, axis, index, index_cons… SeriesHE Exporter             Return a Frame view…
to_frame_go(*, axis, index, index_c… SeriesHE Exporter             Return FrameGO view…
to_frame_he(*, axis, index, index_c… SeriesHE Exporter             Return FrameHE view…
to_html(config, /, *, style_config)  SeriesHE Exporter             Return an HTML tabl…
to_html_datatables(fp, /, *, show, … SeriesHE Exporter             Return a complete H…
to_pairs()                           SeriesHE Exporter             Return a tuple of t…
to_pandas()                          SeriesHE Exporter             Return a Pandas Ser…
…                                    …        …                    …
via_hashlib(*, include_name, includ… SeriesHE Accessor Hashlib
via_hashlib(*, include_name, includ… SeriesHE Accessor Hashlib
via_hashlib(*, include_name, includ… SeriesHE Accessor Hashlib
via_hashlib(*, include_name, includ… SeriesHE Accessor Hashlib
via_type_clinic.to_hint()            SeriesHE Accessor Type Clinic Return the type hin…
via_type_clinic.check(hint, /, *, f… SeriesHE Accessor Type Clinic Given a hint (a typ…
via_type_clinic.warn(hint, /, *, fa… SeriesHE Accessor Type Clinic Given a hint (a typ…
via_type_clinic.__call__(hint, /, *… SeriesHE Accessor Type Clinic Given a hint (a typ…
via_type_clinic.__repr__()           SeriesHE Accessor Type Clinic Return a compact st…
via_mapping.__getitem__(key)         SeriesHE Accessor Mapping
via_mapping.__iter__()               SeriesHE Accessor Mapping
via_mapping.__len__()                SeriesHE Accessor Mapping
via_mapping.__contains__(key, /)     SeriesHE Accessor Mapping
via_mapping.__repr__()               SeriesHE Accessor Mapping
via_mapping.keys()                   SeriesHE Accessor Mapping
via_mapping.values()                 SeriesHE Accessor Mapping
via_mapping.items()                  SeriesHE Accessor Mapping
<<U98>                               <<U8>    <<U27>               <<U81>
SeriesHE.__repr__()#

Return repr(self).

>>> s = sf.SeriesHE((10, 2, 8), index=('a', 'b', 'c'))
>>> repr(s)
<SeriesHE>
<Index>
a          10
b          2
c          8
<<U1>      <int64>
SeriesHE.__str__()#

Return str(self).

>>> s = sf.SeriesHE((10, 2, 8), index=('a', 'b', 'c'))
>>> str(s)
<SeriesHE>
<Index>
a          10
b          2
c          8
<<U1>      <int64>
SeriesHE.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.

>>> s = sf.SeriesHE((10, 2, 8), index=('a', 'b', 'c'))
>>> s.display()
<SeriesHE>
<Index>
a          10
b          2
c          8
<<U1>      <int64>
>>> s.display(sf.DisplayConfig(type_show=False))
a 10
b 2
c 8
SeriesHE.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.

>>> s = sf.SeriesHE((10, 2, 8), index=('a', 'b', 'c'))
>>> s.display_tall()
<SeriesHE>
<Index>
a          10
b          2
c          8
<<U1>      <int64>
SeriesHE.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.

>>> s = sf.SeriesHE((10, 2, 8), index=('a', 'b', 'c'))
>>> s.display_wide()
<SeriesHE>
<Index>
a          10
b          2
c          8
<<U1>      <int64>

SeriesHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Values | Accessor Datetime | Accessor String | Accessor Fill Value | Accessor Regular Expression | Accessor Hashlib | Accessor Type Clinic | Accessor Mapping