Quilt¶
Detail: Quilt
Quilt: Constructor¶
Detail: Quilt: Constructor
|
Args: bus: Bus of Frame to be used for virtual concatenation. axis: Integer spec… |
|
|
Given a Frame, create a Quilt by partitioning it along the specified axis in uni… |
|
|
Return a Quilt from an iterable of Frame; labels will be drawn from Frame.name. |
|
|
Given a file path to a HDF5 Quilt store, return a Quilt instance. Args: fp: A st… |
|
|
Given an iterable of pairs of label, Frame, create a Quilt. |
|
|
Given a file path to an SQLite Quilt store, return a Quilt instance. Args: fp: A… |
|
|
Given a file path to an XLSX Quilt store, return a Quilt instance. Args: fp: A s… |
|
|
Given a file path to zipped CSV Quilt store, return a Quilt instance. Args: fp:… |
|
|
Given a file path to zipped parquet Quilt store, return a Quilt instance. Args:… |
|
|
Given a file path to zipped parquet Quilt store, return a Quilt instance. Args:… |
|
|
Given a file path to zipped pickle Quilt store, return a Quilt instance. Args: f… |
|
|
Given a file path to zipped TSV Quilt store, return a Quilt instance. Args: fp:… |
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary
Quilt: Exporter¶
Detail: Quilt: Exporter
|
Return a consolidated Frame. |
|
|
Write the complete Bus as an HDF5 table. Args: fp: A string file path or Path in… |
|
|
Write the complete Bus as an SQLite database file. Args: fp: A string file path… |
|
|
Open an interactive VisiData session. |
|
|
Write the complete Bus as a XLSX workbook. Args: fp: A string file path or Path… |
|
|
Write the complete Bus as a zipped archive of CSV files. Args: fp: A string file… |
|
|
Write the complete Bus as a zipped archive of NPZ files. Args: fp: A string file… |
|
|
Write the complete Bus as a zipped archive of parquet files. Args: fp: A string… |
|
|
Write the complete Bus as a zipped archive of pickles. Args: fp: A string file p… |
|
|
Write the complete Bus as a zipped archive of TSV files. Args: fp: A string file… |
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary
Quilt: Attribute¶
Detail: Quilt: Attribute
|
bool(x) -> bool Returns True when the argument x is true, False otherwise. The b… |
|
|
The IndexBase instance assigned for column labels. |
|
|
The IndexBase instance assigned for row labels. |
|
|
A hashable label attached to this container. Returns: Hashable |
|
|
Return the total bytes of the underlying NumPy arrays. Returns: int |
|
|
Return the number of dimensions, which for a Frame is always 2. Returns: int |
|
|
Return a tuple describing the shape of the underlying NumPy array. Returns: tp.T… |
|
|
Return the size of the underlying NumPy array. Returns: int |
|
|
Return a Frame indicating loaded status, size, bytes, and shape of all loaded Fr… |
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary
Quilt: Method¶
Detail: Quilt: Method
|
Raises ValueError to prohibit ambiguous use of truethy evaluation. |
|
|
Return a bool from comparison to any other object. Note: this will attempt to lo… |
|
|
Return a Quilt consisting only of the top elements as specified by count. Args:… |
|
|
Return a new Quilt with an updated name attribute. Args: name |
|
|
Randomly (optionally made deterministic with a fixed seed) extract items from th… |
|
|
Return a Quilt consisting only of the bottom elements as specified by count. Arg… |
|
|
For the Bus or Yarn contained in this object, replace all loaded Frame with Fram… |
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary
Quilt: Dictionary-Like¶
Detail: Quilt: Dictionary-Like
|
Inclusion of value in column labels. |
|
|
Iterator of column labels, same as Frame.keys. |
|
|
Return the value found at the columns key, else the default if the key is not fo… |
|
|
Iterator of pairs of column label and corresponding column Series. |
|
|
Iterator of column labels. |
|
|
A 2D NumPy array of all values in the Quilt. As this is a single array, heteroge… |
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary
Quilt: Display¶
Detail: Quilt: Display
A Frame documenting the interface of this class. |
||
|
||
|
Return str(self). |
|
|
Return a Display, capable of providing a string representation. Args: config: A… |
|
|
Maximize vertical presentation. Return a Display, capable of providing a string… |
|
|
Maximize horizontal presentation. Return a Display, capable of providing a strin… |
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary
Quilt: Selector¶
Detail: Quilt: Selector
|
Selector of columns by label. Args: key: A loc selector, either a label, a list… |
|
|
||
|
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary
Quilt: Iterator¶
Detail: Quilt: Iterator
|
Iterator of np.array, where arrays are drawn from columns (axis=0) or rows (axis… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of pairs of label, np.array, where arrays are drawn from columns (axis=… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of Series, where Series are drawn from columns (axis=0) or rows (axis=1… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of pairs of label, Series, where Series are drawn from columns (axis=0)… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of NamedTuple, where tuples are drawn from columns (axis=0) or rows (ax… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of pairs of label, NamedTuple, where tuples are drawn from columns (axi… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of windowed values, where values are given as a Frame. Args: size: Elem… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of windowed values, where values are given as a np.array. Args: size: E… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of pairs of label, windowed values, where values are given as a np.arra… |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Iterator of pairs of label, windowed values, where values are given as a Frame…. |
|
|
Apply a function to each value. Returns a new container. Args: func: A function… |
|
|
Apply a function to each value. A generator of resulting values. Args: func: A f… |
|
|
Apply a function to each value. A generator of resulting key, value pairs. Args:… |
|
|
Apply a function to each value. Employ parallel processing with either the Proce… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. Returns… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, an Exception is raised. A genera… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. Returns a… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the value is returned. A generat… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. Retu… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
|
|
Apply a mapping; for values not in the mapping, the fill_value is returned. A ge… |
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary
Quilt: Operator Binary¶
Detail: Quilt: Operator Binary
|
Return self==value. |
|
|
Return self>=value. |
|
|
Return self>value. |
|
|
Return self<=value. |
|
|
Return self<value. |
|
|
Return self!=value. |
Quilt: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Selector | Iterator | Operator Binary