Overview: IndexGO: Method

Detail: IndexGO: Method

Detail

IndexGO.__array__(dtype)

Support the __array__ interface, returning an array of values.

Detail

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

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

Detail

IndexGO.__bool__()

Raises ValueError to prohibit ambiguous use of truthy evaluation.

Detail

IndexGO.__copy__()

Return shallow copy of this Index.

Detail

IndexGO.__deepcopy__(memo)

Detail

IndexGO.__len__()

Detail

IndexGO.all(axis, skipna, out)

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

Detail

IndexGO.any(axis, skipna, out)

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

Detail

IndexGO.append(value)

append a value

Detail

IndexGO.astype(dtype)

Return an Index with type determined by dtype argument. If a datetime64 dtype is…

Detail

IndexGO.copy()

Return shallow copy of this Index.

Detail

IndexGO.cumprod(axis, skipna)

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

Detail

IndexGO.cumsum(axis, skipna)

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

Detail

IndexGO.difference(*others)

Perform difference with another Index, container, or NumPy array. Retains order.

Detail

IndexGO.dropfalsy()

Return a new Index after removing values of NaN or None.

Detail

IndexGO.dropna()

Return a new Index after removing values of NaN or None.

Detail

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

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

Detail

IndexGO.extend(values)

Append multiple values Args: values: can be a generator.

Detail

IndexGO.fillfalsy(value)

Return an Index with replacing falsy values with the supplied value. Args: value…

Detail

IndexGO.fillna(value)

Return an Index with replacing null (NaN or None) with the supplied value. Args:…

Detail

IndexGO.head(count)

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

Detail

IndexGO.iloc_searchsorted(values, *, side_left)

Given a sorted Series, return the iloc (integer) position(s) at which insertion…

Detail

IndexGO.intersection(*others)

Perform intersection with one or many Index, container, or NumPy array. Identica…

Detail

IndexGO.isin(other)

Return a Boolean array showing True where a label is found in other. If other is…

Detail

IndexGO.label_widths_at_depth(depth_level)

A generator of pairs, where each pair is the label and the contiguous count of t…

Detail

IndexGO.level_add(level, *, index_constructor)

Return an IndexHierarchy with an added root level. Args: level: A hashable to us…

Detail

IndexGO.loc_searchsorted(values, *, side_left, fill_value)

Given a sorted Series, return the loc (label) position(s) at which insertion in…

Detail

IndexGO.loc_to_iloc(key)

Given a label (loc) style key (either a label, a list of labels, a slice, or a B…

Detail

IndexGO.max(axis, skipna)

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

Detail

IndexGO.mean(axis, skipna, out)

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

Detail

IndexGO.median(axis, skipna, out)

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

Detail

IndexGO.min(axis, skipna, out)

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

Detail

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

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

Detail

IndexGO.relabel(mapper)

Return a new Index with labels replaced by the callable or mapping; order will b…

Detail

IndexGO.rename(name)

Return a new Frame with an updated name attribute.

Detail

IndexGO.roll(shift)

Return an Index with values rotated forward and wrapped around (with a postive s…

Detail

IndexGO.sample(count, *, seed)

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

Detail

IndexGO.sort(ascending, kind, key)

Return a new Index with the labels sorted. Args: ascending: If True, sort in asc…

Detail

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

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

Detail

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

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

Detail

IndexGO.tail(count)

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

Detail

IndexGO.union(*others)

Perform union with another Index, container, or NumPy array. Identical compariso…

Detail

IndexGO.unique(depth_level, order_by_occurrence)

Return a NumPy array of unique values. Args: depth_level: defaults to 0 for for…

Detail

IndexGO.values_at_depth(depth_level)

Return an NP array for the depth_level specified.

Detail

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

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

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