Overview: FrameGO: Method

Detail: FrameGO: Method

Detail

FrameGO.__array__(dtype)

Support the __array__ interface, returning an array of values.

Detail

FrameGO.__array_ufunc__(ufunc, method, *args, **kwargs)

Support for NumPy elements or arrays on the left hand of binary operators.

Detail

FrameGO.__bool__()

Raises ValueError to prohibit ambiguous use of truthy evaluation.

Detail

FrameGO.__dataframe__(nan_as_null, allow_copy)

Return a data-frame interchange protocol compliant object. See https://data-apis

Detail

FrameGO.__deepcopy__(memo)

Detail

FrameGO.__len__()

Length of rows in values.

Detail

FrameGO.__round__(decimals)

Return a Frame rounded to the given decimals. Negative decimals round to the lef…

Detail

FrameGO.all(axis, skipna, out)

Logical and over values along the specified axis. Args: axis: Axis, defaulting t…

Detail

FrameGO.any(axis, skipna, out)

Logical or over values along the specified axis. Args: axis: Axis, defaulting to…

Detail

FrameGO.astype[key](dtypes, *, consolidate_blocks)

Selector of columns by label. Args: key: A loc selector, either a label, a list…

Detail

FrameGO.astype(dtype, *, consolidate_blocks)

Apply a single dtype to all columns.

Detail

FrameGO.clip(*, lower, upper, axis)

Apply a clip operation to this Frame. Note that clip operations can be applied t…

Detail

FrameGO.consolidate[key]

Return the full Frame, selecting with key a subset of columns for consolidation….

Detail

FrameGO.consolidate()

Apply consolidation to all columns.

Detail

FrameGO.consolidate.status

Display consolidation status of this Frame.

Detail

FrameGO.corr(*, axis)

Compute a correlation matrix. Args: axis: if 0, each row represents a variable,…

Detail

FrameGO.count(*, skipna, skipfalsy, unique, axis)

Return the count of non-NA values along the provided axis, where 0 provides coun…

Detail

FrameGO.cov(*, axis, ddof)

Compute a covariance matrix. Args: axis: if 0, each row represents a variable, w…

Detail

FrameGO.cumprod(axis, skipna)

Return the cumulative product over the specified axis. Args: axis: Axis, default…

Detail

FrameGO.cumsum(axis, skipna)

Return the cumulative sum over the specified axis. Args: axis: Axis, defaulting…

Detail

FrameGO.drop_duplicated(*, axis, exclude_first, exclude_last)

Return a Frame with duplicated rows (axis 0) or columns (axis 1) removed. All va…

Detail

FrameGO.dropfalsy(axis, condition)

Return a new Frame after removing rows (axis 0) or columns (axis 1) where any or…

Detail

FrameGO.dropna(axis, condition)

Return a new Frame after removing rows (axis 0) or columns (axis 1) where any or…

Detail

FrameGO.duplicated(*, axis, exclude_first, exclude_last)

Return an axis-sized Boolean Series that shows True for all rows (axis 0) or col…

Detail

FrameGO.equals(other, *, compare_name, compare_dtype, compare_class, skipna)

Return a bool from comparison to any other object. Args: compare_name: Include e…

Detail

FrameGO.extend(container, fill_value)

Extend this FrameGO (in-place) with another Frame’s blocks or Series array; as b…

Detail

FrameGO.extend_items(pairs, fill_value)

Given an iterable of pairs of column name, column value, extend this FrameGO. Co…

Detail

FrameGO.fillfalsy(value)

Return a new Frame after replacing falsy values with the supplied value. Args: v…

Detail

FrameGO.fillfalsy_backward(limit, *, axis)

Return a new Frame after filling backward falsy values with the first observed v…

Detail

FrameGO.fillfalsy_forward(limit, *, axis)

Return a new Frame after filling forward falsy values with the last observed val…

Detail

FrameGO.fillfalsy_leading(value, *, axis)

Return a new Frame after filling leading (and only leading) falsy values with th…

Detail

FrameGO.fillfalsy_trailing(value, *, axis)

Return a new Frame after filling trailing (and only trailing) falsy values with…

Detail

FrameGO.fillna(value)

Return a new Frame after replacing null (NaN or None) values with the supplied v…

Detail

FrameGO.fillna_backward(limit, *, axis)

Return a new Frame after filling backward null (NaN or None) with the first obse…

Detail

FrameGO.fillna_forward(limit, *, axis)

Return a new Frame after filling forward null (NaN or None) with the last observ…

Detail

FrameGO.fillna_leading(value, *, axis)

Return a new Frame after filling leading (and only leading) null (NaN or None) w…

Detail

FrameGO.fillna_trailing(value, *, axis)

Return a new Frame after filling trailing (and only trailing) null (NaN or None)…

Detail

FrameGO.head(count)

Return a Frame consisting only of the top elements as specified by count. Args:…

Detail

FrameGO.iloc_max(*, skipna, axis)

Return the integer indices corresponding to the maximum values found. Args: skip…

Detail

FrameGO.iloc_min(*, skipna, axis)

Return the integer indices corresponding to the minimum values found. Args: skip…

Detail

FrameGO.iloc_notfalsy_first(*, fill_value, axis)

Return the position corresponding to the first non-falsy (including nan) values…

Detail

FrameGO.iloc_notfalsy_last(*, fill_value, axis)

Return the position corresponding to the last non-falsy (including nan) values a…

Detail

FrameGO.iloc_notna_first(*, fill_value, axis)

Return the position corresponding to the first non-missing values along the sele…

Detail

FrameGO.iloc_notna_last(*, fill_value, axis)

Return the position corresponding to the last non-missing values along the selec…

Detail

FrameGO.insert_after(key, container, *, fill_value)

Create a new Frame by inserting a named Series or Frame at the position after th…

Detail

FrameGO.insert_before(key, container, *, fill_value)

Create a new Frame by inserting a named Series or Frame at the position before t…

Detail

FrameGO.isfalsy()

Return a same-indexed, Boolean Frame indicating True which values are falsy.

Detail

FrameGO.isin(other)

Return a same-sized Boolean Frame that shows if the same-positioned element is i…

Detail

FrameGO.isna()

Return a same-indexed, Boolean Frame indicating True which values are NaN or Non…

Detail

FrameGO.join_inner(other, *, left_depth_level, left_columns, right_depth_level, right_columns, left_template, right_template, fill_value, include_index)

Perform an inner join. Args: left_depth_level: Specify one or more left index de…

Detail

FrameGO.join_left(other, *, left_depth_level, left_columns, right_depth_level, right_columns, left_template, right_template, fill_value, include_index)

Perform a left outer join. Args: left_depth_level: Specify one or more left inde…

Detail

FrameGO.join_outer(other, *, left_depth_level, left_columns, right_depth_level, right_columns, left_template, right_template, fill_value, include_index)

Perform an outer join. Args: left_depth_level: Specify one or more left index de…

Detail

FrameGO.join_right(other, *, left_depth_level, left_columns, right_depth_level, right_columns, left_template, right_template, fill_value, include_index)

Perform a right outer join. Args: left_depth_level: Specify one or more left ind…

Detail

FrameGO.loc_max(*, skipna, axis)

Return the labels corresponding to the maximum values found. Args: skipna: if Tr…

Detail

FrameGO.loc_min(*, skipna, axis)

Return the labels corresponding to the minimum value found. Args: skipna: if Tru…

Detail

FrameGO.loc_notfalsy_first(*, fill_value, axis)

Return the labels corresponding to the first non-falsy (including nan) values al…

Detail

FrameGO.loc_notfalsy_last(*, fill_value, axis)

Return the labels corresponding to the last non-falsy (including nan) values alo…

Detail

FrameGO.loc_notna_first(*, fill_value, axis)

Return the labels corresponding to the first non-missing values along the select…

Detail

FrameGO.loc_notna_last(*, fill_value, axis)

Return the labels corresponding to the last non-missing values along the selecte…

Detail

FrameGO.max(axis, skipna)

Return the maximum along the specified axis. Args: axis: Axis, defaulting to axi…

Detail

FrameGO.mean(axis, skipna, out)

Return the mean along the specified axis. Args: axis: Axis, defaulting to axis 0…

Detail

FrameGO.median(axis, skipna, out)

Return the median along the specified axis. Args: axis: Axis, defaulting to axis…

Detail

FrameGO.min(axis, skipna, out)

Return the minimum along the specified axis. Args: axis: Axis, defaulting to axi…

Detail

FrameGO.notfalsy()

Return a same-indexed, Boolean Frame indicating True which values are not falsy.

Detail

FrameGO.notna()

Return a same-indexed, Boolean Frame indicating True which values are not NaN or…

Detail

FrameGO.pivot(index_fields, columns_fields, data_fields, *, func, fill_value, index_constructor)

Produce a pivot table, where one or more columns is selected for each of index_f…

Detail

FrameGO.pivot_stack(depth_level, *, fill_value)

Move labels from the columns to the index, creating or extending an IndexHierarc…

Detail

FrameGO.pivot_unstack(depth_level, *, fill_value)

Move labels from the index to the columns, creating or extending an IndexHierarc…

Detail

FrameGO.prod(axis, skipna, allna, out)

Return the product along the specified axis. Args: axis: Axis, defaulting to axi…

Detail

FrameGO.rank_dense(*, axis, skipna, ascending, start, fill_value)

Rank values as compactly as possible, where ties get the same value, and ranks a…

Detail

FrameGO.rank_max(*, axis, skipna, ascending, start, fill_value)

Rank values where tied values are assigned the maximum ordinal rank; ranks are p…

Detail

FrameGO.rank_mean(*, axis, skipna, ascending, start, fill_value)

Rank values where tied values are assigned the mean of the ordinal ranks; ranks…

Detail

FrameGO.rank_min(*, axis, skipna, ascending, start, fill_value)

Rank values where tied values are assigned the minimum ordinal rank; ranks are p…

Detail

FrameGO.rank_ordinal(*, axis, skipna, ascending, start, fill_value)

Rank values distinctly, where ties get distinct values that maintain their order…

Detail

FrameGO.rehierarch(index, columns, *, index_constructors, columns_constructors)

Produce a new Frame with index and/or columns constructed with a transformed hie…

Detail

FrameGO.reindex(index, columns, *, fill_value, own_index, own_columns, check_equals)

Return a new Frame with labels defined by the provided index. The size and order…

Detail

FrameGO.relabel(index, columns, *, index_constructor, columns_constructor)

Return a new Frame with transformed labels on the index. The size and ordering o…

Detail

FrameGO.relabel_flat(index, columns)

Return a new Frame, where an IndexHierarchy (if defined) is replaced with a flat…

Detail

FrameGO.relabel_level_add(index, columns, *, index_constructor, columns_constructor)

Return a new Frame, adding a new root level to an existing IndexHierarchy, or cr…

Detail

FrameGO.relabel_level_drop(index, columns)

Return a new Frame, dropping one or more levels from a either the root or the le…

Detail

FrameGO.relabel_shift_in(key, *, axis, index_constructors)

Create, or augment, an IndexHierarchy by providing one or more selections from t…

Detail

FrameGO.relabel_shift_out(depth_level, *, axis)

Shift values from an index on an axis to the Frame by providing one or more dept…

Detail

FrameGO.rename(name, *, index, columns)

Return a new Frame with an updated name attribute. Optionally update the name at…

Detail

FrameGO.roll(index, columns, *, include_index, include_columns)

Roll columns and/or rows by positive or negative integer counts, where columns a…

Detail

FrameGO.sample(index, columns, *, seed)

Randomly (optionally made deterministic with a fixed seed) extract items from th…

Detail

FrameGO.set_columns(index, *, drop, columns_constructor)

Return a new Frame produced by setting the given row as the columns, optionally…

Detail

FrameGO.set_columns_hierarchy(index, *, drop, columns_constructors, reorder_for_hierarchy)

Given an iterable of index labels, return a new Frame with those rows as an Inde…

Detail

FrameGO.set_index(column, *, drop, index_constructor)

Return a new Frame produced by setting the given column as the index, optionally…

Detail

FrameGO.set_index_hierarchy(columns, *, drop, index_constructors, reorder_for_hierarchy)

Given an iterable of column labels, return a new Frame with those columns as an…

Detail

FrameGO.shift(index, columns, *, fill_value)

Shift columns and/or rows by positive or negative integer counts, where columns…

Detail

FrameGO.sort_columns(*, ascending, kind, key)

Return a new Frame ordered by the sorted columns. Args: ascendings: Boolean, or…

Detail

FrameGO.sort_index(*, ascending, kind, key)

Return a new Frame ordered by the sorted Index. Args: ascendings: Boolean, or it…

Detail

FrameGO.sort_values(label, *, ascending, axis, kind, key)

Return a new Frame ordered by the sorted values, where values are given by singl…

Detail

FrameGO.std(axis, skipna, ddof, out)

Return the standard deviaton along the specified axis. Args: axis: Axis, default…

Detail

FrameGO.sum(axis, skipna, allna, out)

Sum values along the specified axis. Args: axis: Axis, defaulting to axis 0. ski…

Detail

FrameGO.tail(count)

Return a Frame consisting only of the bottom elements as specified by count. Arg…

Detail

FrameGO.transpose()

Transpose. Return a Frame with index as columns and vice versa.

Detail

FrameGO.unique(*, axis)

Return a NumPy array of unqiue values. If the axis argument is provided, uniquen…

Detail

FrameGO.unique_enumerated(*, retain_order, func)

{doc} {args}

Detail

FrameGO.unset_columns(*, names, index_constructors)

Return a new Frame where columns are added to the top of the data, and an IndexA…

Detail

FrameGO.unset_index(*, names, consolidate_blocks, columns_constructors)

Return a new Frame where the index is added to the front of the data, and an Ind…

Detail

FrameGO.var(axis, skipna, ddof, out)

Return the variance along the specified axis. Args: axis: Axis, defaulting to ax…

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