Detail: Yarn: Display¶
- Yarn.interface¶
A Frame documenting the interface of this class.
>>> y = sf.Yarn.from_buses((sf.Bus.from_frames((sf.Frame(np.arange(6).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='x'), sf.Frame((np.arange(6).reshape(3,2) % 2).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='y')), name='i'), sf.Bus.from_frames((sf.Frame(np.arange(40, 46).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='v'), sf.Frame((np.arange(6).reshape(3,2) % 3).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='w')), name='j')), retain_labels=True) >>> y.interface <Frame> <Index> cls_name group doc <<U18> <Index: signature> __init__(series, *, index, index_... Yarn Constructor Args: series: An ... from_buses(buses, *, name, retain... Yarn Constructor Return a Yarn fro... from_concat(containers, *, index,... Yarn Constructor Concatenate multi... to_hdf5(fp, *, config) Yarn Exporter Write the complet... to_series() Yarn Exporter Return a Series w... to_sqlite(fp, *, config) Yarn Exporter Write the complet... to_visidata() Yarn Exporter Open an interacti... to_xlsx(fp, *, config) Yarn Exporter Write the complet... to_zip_csv(fp, *, config, compres... Yarn Exporter Write the complet... to_zip_npy(fp, *, config, compres... Yarn Exporter Write the complet... to_zip_npz(fp, *, config, compres... Yarn Exporter Write the complet... to_zip_parquet(fp, *, config, com... Yarn Exporter Write the complet... to_zip_pickle(fp, *, config, comp... Yarn Exporter Write the complet... to_zip_tsv(fp, *, config, compres... Yarn Exporter Write the complet... STATIC Yarn Attribute bool(x) -> bool R... dtype Yarn Attribute Return the dtype ... dtypes Yarn Attribute Returns a Frame o... ... ... ... ... iter_element().apply_iter_items(f... Yarn Iterator Apply a function ... iter_element().apply_pool(func, *... Yarn Iterator Apply a function ... iter_element_items() Yarn Iterator Iterator of label... iter_element_items().apply(func, ... Yarn Iterator Apply a function ... iter_element_items().apply_iter(f... Yarn Iterator Apply a function ... iter_element_items().apply_iter_i... Yarn Iterator Apply a function ... iter_element_items().apply_pool(f... Yarn Iterator Apply a function ... via_hashlib(include_name, include... Yarn Accessor Hashlib Return the byte s... via_hashlib(include_name, include... Yarn Accessor Hashlib via_hashlib(include_name, include... Yarn Accessor Hashlib via_hashlib(include_name, include... Yarn Accessor Hashlib via_hashlib(include_name, include... Yarn Accessor Hashlib via_hashlib(include_name, include... Yarn Accessor Hashlib via_hashlib(include_name, include... Yarn Accessor Hashlib via_hashlib(include_name, include... Yarn Accessor Hashlib via_hashlib(include_name, include... Yarn Accessor Hashlib via_hashlib(include_name, include... Yarn Accessor Hashlib <<U90> <<U4> <<U16> <<U83>
- Yarn.__repr__()¶
Return repr(self).
>>> y = sf.Yarn.from_buses((sf.Bus.from_frames((sf.Frame(np.arange(6).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='x'), sf.Frame((np.arange(6).reshape(3,2) % 2).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='y')), name='i'), sf.Bus.from_frames((sf.Frame(np.arange(40, 46).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='v'), sf.Frame((np.arange(6).reshape(3,2) % 3).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='w')), name='j')), retain_labels=True) >>> repr(y) <Yarn> <IndexHierarchy> i x Frame i y Frame j v Frame j w Frame <<U1> <<U1> <object>
- Yarn.__str__()¶
Return str(self).
>>> y = sf.Yarn.from_buses((sf.Bus.from_frames((sf.Frame(np.arange(6).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='x'), sf.Frame((np.arange(6).reshape(3,2) % 2).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='y')), name='i'), sf.Bus.from_frames((sf.Frame(np.arange(40, 46).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='v'), sf.Frame((np.arange(6).reshape(3,2) % 3).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='w')), name='j')), retain_labels=True) >>> str(y) <Yarn> <IndexHierarchy> i x Frame i y Frame j v Frame j w Frame <<U1> <<U1> <object>
- Yarn.display(config=None, *, style_config=None)[source]¶
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.
>>> y = sf.Yarn.from_buses((sf.Bus.from_frames((sf.Frame(np.arange(6).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='x'), sf.Frame((np.arange(6).reshape(3,2) % 2).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='y')), name='i'), sf.Bus.from_frames((sf.Frame(np.arange(40, 46).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='v'), sf.Frame((np.arange(6).reshape(3,2) % 3).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='w')), name='j')), retain_labels=True) >>> y.display() <Yarn> <IndexHierarchy> i x Frame i y Frame j v Frame j w Frame <<U1> <<U1> <object> >>> y.display(sf.DisplayConfig(type_show=False)) i x Frame i y Frame j v Frame j w Frame
- Yarn.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.
>>> y = sf.Yarn.from_buses((sf.Bus.from_frames((sf.Frame(np.arange(6).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='x'), sf.Frame((np.arange(6).reshape(3,2) % 2).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='y')), name='i'), sf.Bus.from_frames((sf.Frame(np.arange(40, 46).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='v'), sf.Frame((np.arange(6).reshape(3,2) % 3).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='w')), name='j')), retain_labels=True) >>> y.display_tall() <Yarn> <IndexHierarchy> i x Frame i y Frame j v Frame j w Frame <<U1> <<U1> <object>
- Yarn.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.
>>> y = sf.Yarn.from_buses((sf.Bus.from_frames((sf.Frame(np.arange(6).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='x'), sf.Frame((np.arange(6).reshape(3,2) % 2).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='y')), name='i'), sf.Bus.from_frames((sf.Frame(np.arange(40, 46).reshape(3,2), index=('p', 'q', 'r'), columns=('a', 'b'), name='v'), sf.Frame((np.arange(6).reshape(3,2) % 3).astype(bool), index=('p', 'q', 'r'), columns=('c', 'd'), name='w')), name='j')), retain_labels=True) >>> y.display_wide() <Yarn> <IndexHierarchy> i x Frame i y Frame j v Frame j w Frame <<U1> <<U1> <object>
Yarn: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Accessor Hashlib