FrameHE¶
Detail: FrameHE
FrameHE: Constructor¶
Detail: FrameHE: Constructor
|
Initializer. Args: data: Default Frame initialization requires typed data such a… |
|
|
Realize a Frame from an Arrow Table. Args: value: A pyarrow.Table instance. inde… |
|
|
Create a Frame from the contents of the clipboard (assuming a table is stored as… |
|
|
Concatenate multiple Frame or Series into a new Frame. If index or columns are p… |
|
|
Produce a Frame with a hierarchical index from an iterable of pairs of labels, F… |
|
|
Specialized version of Frame.from_delimited for CSV files. Returns: Frame |
|
|
Create a Frame from a file path or a file-like object defining a delimited (CSV,… |
|
|
Create a Frame from a dictionary (or any object that has an items() method) wher… |
|
|
Frame constructor from an iterable of dictionaries, where each dictionary repres… |
|
|
Frame constructor from iterable of pairs of index label, row, where row is a dic… |
|
|
Create a Frame from an element, i.e., a single value stored in a single cell. Bo… |
|
|
Create a Frame from an iterable of key, value, where key is a pair of row, colum… |
|
|
Create a Frame from an iterable of elements, to be formed into a Frame with a si… |
|
|
Frame constructor from an iterator of columns, where columns are iterables. Seri… |
|
|
Load Frame from the contents of a table in an HDF5 file. |
|
|
Frame constructor from an iterator of pairs, where the first value is the column… |
|
|
Frame constructor from an in-memory JSON document. Args: json_data: a string of… |
|
|
Frame constructor from a JSON documenst provided via a URL. Args: url: URL to th… |
|
|
Frame constructor from an in-memory binary object formatted as a msgpack. Args:… |
|
|
Create a Frame from an directory of npy files. Args: fp: The path to the NPY dir… |
|
|
Create a Frame from an directory of npy files using memory maps. Args: fp: The p… |
|
|
Create a Frame from an npz file. |
|
|
Return a new Frame made by overlaying containers, filling in values with aligned… |
|
|
Given a Pandas DataFrame, return a Frame. Args: value: Pandas DataFrame. index_c… |
|
|
Realize a Frame from a Parquet file. Args: fp: A string file path or Path instan… |
|
|
Create a Frame from a pickle file. The pickle module is not secure. Only unpickl… |
|
|
Construct a Frame from an iterable of rows, where rows are defined as iterables,… |
|
|
Frame constructor from iterable of pairs of index value, row (where row is an it… |
|
|
Frame constructor from a Series: Args: series: A Series instance, to be realized… |
|
|
Frame constructor from an SQL query and a database connection object. Args: quer… |
|
|
Load Frame from the contents of a table in an SQLite database file. |
|
|
Convert a NumPy structed array into a Frame. Args: array: Structured NumPy array… |
|
|
Specialized version of Frame.from_delimited for TSV files. Returns: Frame |
|
|
Load Frame from the contents of a sheet in an XLSX workbook. Args: label: Option… |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Exporter¶
Detail: FrameHE: Exporter
|
Return a pyarrow.Table from this Frame. |
|
|
Given a file path or file-like object, write the Frame as delimited text. The de… |
|
|
Given a file path or file-like object, write the Frame as delimited text. The de… |
|
|
Given a file path or file-like object, write the Frame as delimited text. A deli… |
|
|
Return obj:Frame version of this obj:FrameHE. |
|
|
Return a obj:FrameGO version of this obj:FrameHE. |
|
|
Return FrameHE version of this FrameHE, which (as the FrameHE is immutable) is s… |
|
|
Write the Frame as single-table SQLite file. |
|
|
Return an HTML table representation of this Frame using standard TABLE, TR, and… |
|
|
Return a complete HTML representation of this Frame using the DataTables JS libr… |
|
|
Display the Frame as a LaTeX formatted table. |
|
|
Display the Frame as a Markdown formatted table. |
|
|
Return a msgpack. |
|
|
Write a Frame as a directory of npy file. |
|
|
Write a Frame as an npz file. |
|
|
Return a tuple of major axis key, minor axis key vlaue pairs, where major axis i… |
|
|
Return a Pandas DataFrame. |
|
|
Write an Arrow Parquet binary file. |
|
|
Write a Frame as a Python pickle. The pickle module is not secure. Only unpickle… |
|
|
Display the Frame as an RST formatted table. |
|
|
Return a Series representation of this Frame, where the index is extended with c… |
|
|
Write the Frame as single-table SQLite file. |
|
|
Given a file path or file-like object, write the Frame as delimited text. The de… |
|
|
Open an interactive VisiData session. |
|
|
Return an xarray Dataset. In order to preserve columnar types, and following the… |
|
|
Write the Frame as single-sheet XLSX file. |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Attribute¶
Detail: FrameHE: Attribute
|
bool(x) -> bool Returns True when the argument x is true, False otherwise. The b… |
|
|
Transpose. Return a Frame with index as columns and vice versa. |
|
|
The IndexBase instance assigned for column labels. |
|
|
Return a Series of dytpes for each realizable column. Returns: Series |
|
|
The IndexBase instance assigned for row labels. |
|
|
The memory locations, represented as an array of integers, of the underlying Num… |
|
|
A hashable label attached to this container. Returns: Hashable |
|
|
Return the total bytes of the underlying NumPy array. 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 |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Method¶
Detail: FrameHE: Method
|
Support the __array__ interface, returning a 1D array of values. |
|
|
Support for NumPy elements or arrays on the left hand of binary operators. |
|
|
Raises ValueError to prohibit ambiguous use of truethy evaluation. |
|
|
||
|
Length of rows in values. |
|
|
Return a Frame rounded to the given decimals. Negative decimals round to the lef… |
|
|
Logical and over values along the specified axis. Args: axis: Axis, defaulting t… |
|
|
Logical or over values along the specified axis. Args: axis: Axis, defaulting to… |
|
|
Selector of columns by label. Args: key: A loc selector, either a label, a list… |
|
|
Apply a single dtype to all columns. |
|
|
Apply a clip operation to this Frame. Note that clip operations can be applied t… |
|
|
Return the count of non-NA values along the provided axis, where 0 provides coun… |
|
|
Compute a covariance matrix. Args: axis: if 0, each row represents a variable, w… |
|
|
Return the cumulative product over the specified axis. Args: axis: Axis, default… |
|
|
Return the cumulative sum over the specified axis. Args: axis: Axis, defaulting… |
|
|
Return a Frame with duplicated rows (axis 0) or columns (axis 1) removed. All va… |
|
|
Return a new Frame after removing rows (axis 0) or columns (axis 1) where any or… |
|
|
Return a new Frame after removing rows (axis 0) or columns (axis 1) where any or… |
|
|
Return an axis-sized Boolean Series that shows True for all rows (axis 0) or col… |
|
|
Return a bool from comparison to any other object. Args: compare_name: Include e… |
|
|
Return a new Frame after replacing null (NaN or None) values with the supplied v… |
|
|
Return a new Frame after filling backward falsy values with the first observed v… |
|
|
Return a new Frame after filling forward falsy values with the last observed val… |
|
|
Return a new Frame after filling leading (and only leading) falsy values with th… |
|
|
Return a new Frame after filling trailing (and only trailing) falsy values with… |
|
|
Return a new Frame after replacing null (NaN or None) values with the supplied v… |
|
|
Return a new Frame after filling backward null (NaN or None) with the first obse… |
|
|
Return a new Frame after filling forward null (NaN or None) with the last observ… |
|
|
Return a new Frame after filling leading (and only leading) null (NaN or None) w… |
|
|
Return a new Frame after filling trailing (and only trailing) null (NaN or None)… |
|
|
Return a Frame consisting only of the top elements as specified by count. Args:… |
|
|
Return the integer indices corresponding to the maximum values found. Args: skip… |
|
|
Return the integer indices corresponding to the minimum values found. Args: skip… |
|
|
Create a new Frame by inserting a named Series or Frame at the position after th… |
|
|
Create a new Frame by inserting a named Series or Frame at the position before t… |
|
|
Return a same-indexed, Boolean Frame indicating True which values are falsy. |
|
|
Return a same-sized Boolean Frame that shows if the same-positioned element is i… |
|
|
Return a same-indexed, Boolean Frame indicating True which values are NaN or Non… |
|
|
Perform an inner join. Args: left_depth_level: Specify one or more left index de… |
|
|
Perform a left outer join. Args: left_depth_level: Specify one or more left inde… |
|
|
Perform an outer join. Args: left_depth_level: Specify one or more left index de… |
|
|
Perform a right outer join. Args: left_depth_level: Specify one or more left ind… |
|
|
Return the labels corresponding to the maximum values found. Args: skipna: if Tr… |
|
|
Return the labels corresponding to the minimum value found. Args: skipna: if Tru… |
|
|
Return the maximum along the specified axis. Args: axis: Axis, defaulting to axi… |
|
|
Return the mean along the specified axis. Args: axis: Axis, defaulting to axis 0… |
|
|
Return the median along the specified axis. Args: axis: Axis, defaulting to axis… |
|
|
Return the minimum along the specified axis. Args: axis: Axis, defaulting to axi… |
|
|
Return a same-indexed, Boolean Frame indicating True which values are not falsy. |
|
|
Return a same-indexed, Boolean Frame indicating True which values are not NaN or… |
|
|
Produce a pivot table, where one or more columns is selected for each of index_f… |
|
|
Move labels from the columns to the index, creating or extending an IndexHierarc… |
|
|
Move labels from the index to the columns, creating or extending an IndexHierarc… |
|
|
Return the product along the specified axis. Args: axis: Axis, defaulting to axi… |
|
|
Rank values as compactly as possible, where ties get the same value, and ranks a… |
|
|
Rank values where tied values are assigned the maximum ordinal rank; ranks are p… |
|
|
Rank values where tied values are assigned the mean of the ordinal ranks; ranks… |
|
|
Rank values where tied values are assigned the minimum ordinal rank; ranks are p… |
|
|
Rank values distinctly, where ties get distinct values that maintain their order… |
|
|
Produce a new Frame with index and/or columns constructed with a transformed hie… |
|
|
Return a new Frame with labels defined by the provided index. The size and order… |
|
|
Return a new Frame with transformed labels on the index. The size and ordering o… |
|
|
Return a new Frame, where an IndexHierarchy (if defined) is replaced with a flat… |
|
|
Return a new Frame, adding a new root level to an existing IndexHierarchy, or cr… |
|
|
Return a new Frame, dropping one or more levels from a either the root or the le… |
|
|
Create, or augment, an IndexHierarchy by providing one or more selections from t… |
|
|
Shift values from an index on an axis to the Frame by providing one or more dept… |
|
|
Return a new Frame with an updated name attribute. Optionally update the name at… |
|
|
Roll columns and/or rows by positive or negative integer counts, where columns a… |
|
|
Randomly (optionally made deterministic with a fixed seed) extract items from th… |
|
|
Return a new Frame produced by setting the given column as the index, optionally… |
|
|
Given an iterable of column labels, return a new Frame with those columns as an… |
|
|
Shift columns and/or rows by positive or negative integer counts, where columns… |
|
|
Return a new Frame ordered by the sorted columns. Args: ascending: Boolean, or i… |
|
|
Return a new Frame ordered by the sorted Index. Args: ascending: Boolean, or ite… |
|
|
Return a new Frame ordered by the sorted values, where values are given by singl… |
|
|
Return the standard deviaton along the specified axis. Args: axis: Axis, default… |
|
|
Sum values along the specified axis. Args: axis: Axis, defaulting to axis 0. ski… |
|
|
Return a Frame consisting only of the bottom elements as specified by count. Arg… |
|
|
Transpose. Return a Frame with index as columns and vice versa. |
|
|
Return a NumPy array of unqiue values. If the axis argument is provied, uniquene… |
|
|
Return a new Frame where the index is added to the front of the data, and an Ind… |
|
|
Return the variance along the specified axis. Args: axis: Axis, defaulting to ax… |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Dictionary-Like¶
Detail: FrameHE: Dictionary-Like
|
Inclusion of value in column labels. |
|
|
Iterator of column labels, same as Frame.keys. |
|
|
Returns a reverse iterator on the frame’s columns. |
|
|
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 Frame. As this is a single array, heteroge… |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Display¶
Detail: FrameHE: 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… |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Assignment¶
Detail: FrameHE: Assignment
|
Assign the value in the position specified by the selector. The name attribute i… |
|
|
Provide a function to apply to the assignment target, and use that as the assign… |
|
|
Assign the value in the position specified by the selector. The name attribute i… |
|
|
Provide a function to apply to the assignment target, and use that as the assign… |
|
|
Assign the value in the position specified by the selector. The name attribute i… |
|
|
Provide a function to apply to the assignment target, and use that as the assign… |
|
|
Assign the value in the position specified by the selector. The name attribute i… |
|
|
Provide a function to apply to the assignment target, and use that as the assign… |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Selector¶
Detail: FrameHE: Selector
|
||
|
Label-based selection. |
|
|
||
|
||
|
Label-based selection. |
|
|
||
|
||
|
Label-based selection. |
|
|
||
|
||
|
Selector of columns by label. Args: key: A loc selector, either a label, a list… |
|
|
||
|
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Iterator¶
Detail: FrameHE: 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 elements, ordered by row then column. |
|
|
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, element, where labels are pairs of index, columns la… |
|
|
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 Frame grouped by unique values found in one or more 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 np.ndarray grouped by unique values found in one or more columns (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, np.ndarray grouped by unique values found in one or… |
|
|
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, Frame grouped by unique values found in one or more… |
|
|
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 Frame grouped by unique labels found in one or more index depths (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 np.ndarray grouped by unique labels found in one or more index depth… |
|
|
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.ndarray grouped by unique labels found in one or… |
|
|
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, Frame grouped by unique labels found in one or more… |
|
|
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… |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Operator Binary¶
Detail: FrameHE: Operator Binary
|
||
|
||
|
Return True if other is a Frame with the same labels, values, and name. Containe… |
|
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
Return False if other is a Frame with the different labels, values, or name. Con… |
|
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Operator Unary¶
Detail: FrameHE: Operator Unary
|
||
|
||
|
||
|
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Accessor Datetime¶
Detail: FrameHE: Accessor Datetime
|
Return the year of each element. |
|
|
Return the month of each element, between 1 and 12 inclusive. |
|
|
Return the day of each element, between 1 and the number of days in the given mo… |
|
|
Return the hour of each element, between 0 and 24. |
|
|
Return the minute of each element, between 0 and 60. |
|
|
Return the second of each element, between 0 and 60. |
|
|
Return the day of the week as an integer, where Monday is 0 and Sunday is 6. |
|
|
Return the quarter of the year as an integer, where January through March is qua… |
|
|
Return Boolean indicators if the day is the month end. |
|
|
Return Boolean indicators if the day is the month start. |
|
|
Return Boolean indicators if the day is the year end. |
|
|
Return Boolean indicators if the day is the year start. |
|
|
Return Boolean indicators if the day is the quarter end. |
|
|
Return Boolean indicators if the day is the quarter start. |
|
|
Return a time.struct_time such as returned by time.localtime(). |
|
|
Return a string representing the date in ISO 8601 format, YYYY-MM-DD. |
|
|
Return a datetime.date object from an ISO 8601 format. |
|
|
Return a string representing the date, controlled by an explicit format string. |
|
|
Return a Python datetime object from parsing a string defined with format. |
|
|
Return a Python date object from parsing a string defined with format. |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Accessor String¶
Detail: FrameHE: Accessor String
|
Return a container with the provided selection or slice of each element. |
|
|
Return a container with only the first character of each element capitalized. |
|
|
Return a container with its elements centered in a string of length width. |
|
|
Returns a container with the number of non-overlapping occurrences of substring… |
|
|
Apply str.decode() to each element. Elements must be bytes. |
|
|
Apply str.encode() to each element. Elements must be strings. |
|
|
Returns a container with the number of non-overlapping occurrences of substring… |
|
|
For each element, return the lowest index in the string where substring sub is f… |
|
|
Like find, but raises ValueError when the substring is not found. |
|
|
Returns true for each element if all characters in the string are alphanumeric a… |
|
|
Returns true for each element if all characters in the string are alphabetic and… |
|
|
For each element, return True if there are only decimal characters in the elemen… |
|
|
Returns true for each element if all characters in the string are digits and the… |
|
|
Returns true for each element if all cased characters in the string are lowercas… |
|
|
For each element in self, return True if there are only numeric characters in th… |
|
|
Returns true for each element if there are only whitespace characters in the str… |
|
|
Returns true for each element if the element is a titlecased string and there is… |
|
|
Returns true for each element if all cased characters in the string are uppercas… |
|
|
Return a container with its elements ljusted in a string of length width. |
|
|
Return the length of the string. |
|
|
Return an array with the elements of self converted to lowercase. |
|
|
For each element, return a copy with the leading characters removed. |
|
|
Partition each element around sep. |
|
|
Return a container with its elements replaced in a string of length width. |
|
|
For each element, return the highest index in the string where substring sub is… |
|
|
Like rfind, but raises ValueError when the substring sub is not found. |
|
|
Return a container with its elements rjusted in a string of length width. |
|
|
Partition (split) each element around the right-most separator. |
|
|
For each element, return a tuple of the words in the string, using sep as the de… |
|
|
For each element, return a copy with the trailing characters removed. |
|
|
For each element, return a tuple of the words in the string, using sep as the de… |
|
|
Returns a container with the number of non-overlapping occurrences of substring… |
|
|
For each element, return a copy with the leading and trailing characters removed… |
|
|
Return a container with uppercase characters converted to lowercase and vice ver… |
|
|
Return a container with uppercase characters converted to lowercase and vice ver… |
|
|
Return a container with uppercase characters converted to lowercase and vice ver… |
|
|
Return the string left-filled with zeros. |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Accessor Transpose¶
Detail: FrameHE: Accessor Transpose
|
Interface for using binary operators and methods with a pre-defined fill value. |
|
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Accessor Fill Value¶
Detail: FrameHE: Accessor Fill Value
|
Label-based selection where labels not specified will define a new container con… |
|
|
Label-based selection where labels not specified will define a new container con… |
|
|
Interface for using binary operators with one-dimensional sequences, where the o… |
|
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression
FrameHE: Accessor Regular Expression¶
Detail: FrameHE: Accessor Regular Expression
|
Scan through string looking for the first location where this regular expression… |
|
|
If zero or more characters at the beginning of string match this regular express… |
|
|
If the whole string matches this regular expression, return True, else False. No… |
|
|
Split string by the occurrences of pattern. If capturing parentheses are used in… |
|
|
Return all non-overlapping matches of pattern in string, as a tuple of strings…. |
|
|
Return the string obtained by replacing the leftmost non-overlapping occurrences… |
|
|
Perform the same operation as sub(), but return a tuple (new_string, number_of_s… |
FrameHE: Constructor | Exporter | Attribute | Method | Dictionary-Like | Display | Assignment | Selector | Iterator | Operator Binary | Operator Unary | Accessor Datetime | Accessor String | Accessor Transpose | Accessor Fill Value | Accessor Regular Expression