Detail: FrameGO: Display

Overview: FrameGO: Display

FrameGO.interface

A Frame documenting the interface of this class.

>>> f = sf.FrameGO.from_fields(((10, 2, 8, 3), (False, True, True, False), ('1517-01-01', '1517-04-01', '1517-12-31', '1517-06-30')), columns=('a', 'b', 'c'), dtypes=dict(c=np.datetime64), name='x')
>>> f
<FrameGO: x>
<IndexGO>    a       b      c               <<U1>
<Index>
0            10      False  1517-01-01
1            2       True   1517-04-01
2            8       True   1517-12-31
3            3       False  1517-06-30
<int64>      <int64> <bool> <datetime64[D]>
>>> f.interface
<Frame>
<Index>                              cls_name group                doc                  <<U18>
<Index: signature>
__init__(data, *, index, columns,... FrameGO  Constructor          Initializer. Args...
from_arrow(value, *, index_depth,... FrameGO  Constructor          Realize a Frame f...
from_clipboard(*, delimiter, inde... FrameGO  Constructor          Create a Frame fr...
from_concat(frames, *, axis, unio... FrameGO  Constructor          Concatenate multi...
from_concat_items(items, *, axis,... FrameGO  Constructor          Produce a Frame w...
from_csv(fp, *, index_depth, inde... FrameGO  Constructor          Specialized versi...
from_delimited(fp, *, delimiter, ... FrameGO  Constructor          Create a Frame fr...
from_dict(mapping, *, index, fill... FrameGO  Constructor          Create a Frame fr...
from_dict_fields(fields, *, colum... FrameGO  Constructor          Frame constructor...
from_dict_records(records, *, ind... FrameGO  Constructor          Frame constructor...
from_dict_records_items(items, *,... FrameGO  Constructor          Frame constructor...
from_element(element, *, index, c... FrameGO  Constructor          Create a Frame fr...
from_element_items(items, *, inde... FrameGO  Constructor          Create a Frame fr...
from_elements(elements, *, index,... FrameGO  Constructor          Create a Frame fr...
from_fields(fields, *, index, col... FrameGO  Constructor          Frame constructor...
from_hdf5(fp, *, label, index_dep... FrameGO  Constructor          Load Frame from t...
from_items(pairs, *, index, fill_... FrameGO  Constructor          Frame constructor...
...                                  ...      ...                  ...
via_re(pattern, flags).sub(repl, ... FrameGO  Accessor Regular ... Return the string...
via_re(pattern, flags).subn(repl,... FrameGO  Accessor Regular ... Perform the same ...
via_hashlib(include_name, include... FrameGO  Accessor Hashlib     Return the byte s...
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_hashlib(include_name, include... FrameGO  Accessor Hashlib
via_type_clinic.to_hint()            FrameGO  Accessor Type Clinic Return the type h...
via_type_clinic.check(hint, *, fa... FrameGO  Accessor Type Clinic Given a hint (a t...
via_type_clinic.warn(hint, *, fai... FrameGO  Accessor Type Clinic Given a hint (a t...
via_type_clinic.__call__(hint, *,... FrameGO  Accessor Type Clinic Given a hint (a t...
via_type_clinic.__repr__()           FrameGO  Accessor Type Clinic Return a compact ...
<<U94>                               <<U7>    <<U27>               <<U83>
FrameGO.__repr__()

Return repr(self).

>>> f = sf.FrameGO.from_fields(((10, 2, 8, 3), (False, True, True, False), ('1517-01-01', '1517-04-01', '1517-12-31', '1517-06-30')), columns=('a', 'b', 'c'), dtypes=dict(c=np.datetime64), name='x')
>>> repr(f)
<FrameGO: x>
<IndexGO>    a       b      c               <<U1>
<Index>
0            10      False  1517-01-01
1            2       True   1517-04-01
2            8       True   1517-12-31
3            3       False  1517-06-30
<int64>      <int64> <bool> <datetime64[D]>
FrameGO.__str__()

Return str(self).

>>> f = sf.FrameGO.from_fields(((10, 2, 8, 3), (False, True, True, False), ('1517-01-01', '1517-04-01', '1517-12-31', '1517-06-30')), columns=('a', 'b', 'c'), dtypes=dict(c=np.datetime64), name='x')
>>> str(f)
<FrameGO: x>
<IndexGO>    a       b      c               <<U1>
<Index>
0            10      False  1517-01-01
1            2       True   1517-04-01
2            8       True   1517-12-31
3            3       False  1517-06-30
<int64>      <int64> <bool> <datetime64[D]>
FrameGO.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.

>>> f = sf.FrameGO.from_fields(((10, 2, 8, 3), (False, True, True, False), ('1517-01-01', '1517-04-01', '1517-12-31', '1517-06-30')), columns=('a', 'b', 'c'), dtypes=dict(c=np.datetime64), name='x')
>>> f.display()
<FrameGO: x>
<IndexGO>    a       b      c               <<U1>
<Index>
0            10      False  1517-01-01
1            2       True   1517-04-01
2            8       True   1517-12-31
3            3       False  1517-06-30
<int64>      <int64> <bool> <datetime64[D]>
>>> f.display(sf.DisplayConfig(type_show=False))
  a  b     c
0 10 False 1517-01-01
1 2  True  1517-04-01
2 8  True  1517-12-31
3 3  False 1517-06-30
FrameGO.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.

>>> f = sf.FrameGO.from_fields(((10, 2, 8, 3), (False, True, True, False), ('1517-01-01', '1517-04-01', '1517-12-31', '1517-06-30')), columns=('a', 'b', 'c'), dtypes=dict(c=np.datetime64), name='x')
>>> f.display_tall()
<FrameGO: x>
<IndexGO>    a       b      c               <<U1>
<Index>
0            10      False  1517-01-01
1            2       True   1517-04-01
2            8       True   1517-12-31
3            3       False  1517-06-30
<int64>      <int64> <bool> <datetime64[D]>
FrameGO.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.

>>> f = sf.FrameGO.from_fields(((10, 2, 8, 3), (False, True, True, False), ('1517-01-01', '1517-04-01', '1517-12-31', '1517-06-30')), columns=('a', 'b', 'c'), dtypes=dict(c=np.datetime64), name='x')
>>> f.display_wide()
<FrameGO: x>
<IndexGO>    a       b      c               <<U1>
<Index>
0            10      False  1517-01-01
1            2       True   1517-04-01
2            8       True   1517-12-31
3            3       False  1517-06-30
<int64>      <int64> <bool> <datetime64[D]>

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