diff --git a/_modules/arkouda/sparrayclass.html b/_modules/arkouda/sparrayclass.html index fcf2fd236..53c6df507 100644 --- a/_modules/arkouda/sparrayclass.html +++ b/_modules/arkouda/sparrayclass.html @@ -354,7 +354,7 @@

Source code for arkouda.sparrayclass

 from __future__ import annotations
 
 import builtins
-from typing import Optional, Sequence, Union, cast
+from typing import List, Optional, Sequence, Union, cast
 
 import numpy as np
 from typeguard import typechecked
@@ -391,6 +391,8 @@ 

Source code for arkouda.sparrayclass

         The element type of the array
     size : int_scalars
         The size of any one dimension of the array (all dimensions are assumed to be equal sized for now)
+    nnz: int_scalars
+        The number of non-zero elements in the array
     ndim : int_scalars
         The rank of the array (currently only rank 2 arrays supported)
     shape : Sequence[int]
@@ -426,7 +428,7 @@ 

Source code for arkouda.sparrayclass

 
     def __del__(self):
         try:
-            logger.debug(f"deleting pdarray with name {self.name}")
+            logger.debug(f"deleting sparray with name {self.name}")
             generic_msg(cmd="delete", args={"name": self.name})
         except (RuntimeError, AttributeError):
             pass
@@ -445,7 +447,7 @@ 

Source code for arkouda.sparrayclass

     def __getitem__(self, key):
         raise NotImplementedError("sparray does not support __getitem__")
 
-    def __str__(self):  # This won't work out of the box for sparrays need to add this in later
+    def __str__(self):
         from arkouda.client import sparrayIterThresh
 
         return generic_msg(cmd="str", args={"array": self, "printThresh": sparrayIterThresh})
@@ -473,7 +475,7 @@ 

Source code for arkouda.sparrayclass

 
[docs] @typechecked - def to_pdarray(self): + def to_pdarray(self) -> List[pdarray]: dtype = self.dtype dtype_name = cast(np.dtype, dtype).name # check dtype for error @@ -499,7 +501,7 @@

Source code for arkouda.sparrayclass

 
         generic_msg(
             cmd=f"fill_sparse_vals<{self.dtype},2,{self.layout},{a.dtype},1>",
-            args={"matrix": self, "vals": a}
+            args={"matrix": self, "vals": a},
         )
diff --git a/_modules/arkouda/sparsematrix.html b/_modules/arkouda/sparsematrix.html index 850bb0c89..bba9b6e2d 100644 --- a/_modules/arkouda/sparsematrix.html +++ b/_modules/arkouda/sparsematrix.html @@ -353,16 +353,20 @@

Source code for arkouda.sparsematrix

 from __future__ import annotations
 
+from typing import Union, cast
+
+import numpy as np
 from typeguard import typechecked
 
 from arkouda.client import generic_msg
+from arkouda.dtypes import dtype as akdtype
+from arkouda.dtypes import int64
 from arkouda.logger import getArkoudaLogger
+from arkouda.numpy.dtypes.dtypes import NumericDTypes
+from arkouda.pdarrayclass import pdarray
 from arkouda.sparrayclass import create_sparray, sparray
-from typing import Union
-from arkouda.dtypes import int64
-from arkouda.dtypes import dtype as akdtype
 
-__all__ = ["random_sparse_matrix", "sparse_matrix_matrix_mult"]
+__all__ = ["random_sparse_matrix", "sparse_matrix_matrix_mult", "create_sparse_matrix"]
 
 logger = getArkoudaLogger(name="sparsematrix")
 
@@ -447,6 +451,53 @@ 

Source code for arkouda.sparsematrix

 
     return create_sparray(repMsg)
+ + +
+[docs] +def create_sparse_matrix(size: int, rows: pdarray, cols: pdarray, vals: pdarray, layout: str) -> sparray: + """ + Create a sparse matrix from three pdarrays representing the row indices, + column indices, and values of the non-zero elements of the matrix. + + Parameters + ---------- + rows : pdarray + The row indices of the non-zero elements + cols : pdarray + The column indices of the non-zero elements + vals : pdarray + The values of the non-zero elements + + Returns + ------- + sparray + A sparse matrix with the specified row and column indices and values + """ + if not (isinstance(rows, pdarray) and isinstance(cols, pdarray) and isinstance(vals, pdarray)): + raise TypeError("rows, cols, and vals must be pdarrays for create_sparse_matrix") + if not (rows.ndim == 1 and cols.ndim == 1 and vals.ndim == 1): + raise ValueError("rows, cols, and vals must be 1D for create_sparse_matrix") + if not (rows.size == cols.size and rows.size == vals.size): + raise ValueError("rows, cols, and vals must have the same size for create_sparse_matrix") + if not (rows.dtype == int64 and cols.dtype == int64): + raise ValueError("rows and cols must have dtype int64 for create_sparse_matrix") + if layout not in ["CSR", "CSC"]: + raise ValueError("layout must be 'CSR' or 'CSC'") + + vals_dtype_name = cast(np.dtype, vals.dtype).name + # check dtype for error + if vals_dtype_name not in NumericDTypes: + raise TypeError(f"unsupported dtype {vals.dtype}") + + shape = (size, size) + repMsg = generic_msg( + cmd=f"sparse_matrix_from_pdarrays<{vals.dtype},{layout}>", + args={"rows": rows.name, "cols": cols.name, "vals": vals.name, "shape": shape}, + ) + + return create_sparray(repMsg)
+
diff --git a/_sources/autoapi/arkouda/index.rst.txt b/_sources/autoapi/arkouda/index.rst.txt index 4928412cb..c4cc9181c 100644 --- a/_sources/autoapi/arkouda/index.rst.txt +++ b/_sources/autoapi/arkouda/index.rst.txt @@ -45837,6 +45837,12 @@ Package Contents :type: int_scalars + .. attribute:: nnz + + The number of non-zero elements in the array + + :type: int_scalars + .. attribute:: ndim The rank of the array (currently only rank 2 arrays supported) @@ -45889,7 +45895,7 @@ Package Contents .. py:attribute:: size - .. py:method:: to_pdarray() + .. py:method:: to_pdarray() -> List[arkouda.pdarrayclass.pdarray] .. py:function:: sqrt(pda: pdarray, where: Union[bool, pdarray] = True) -> pdarray diff --git a/_sources/autoapi/arkouda/sparrayclass/index.rst.txt b/_sources/autoapi/arkouda/sparrayclass/index.rst.txt index fe662e875..814df51de 100644 --- a/_sources/autoapi/arkouda/sparrayclass/index.rst.txt +++ b/_sources/autoapi/arkouda/sparrayclass/index.rst.txt @@ -68,6 +68,12 @@ Module Contents :type: int_scalars + .. attribute:: nnz + + The number of non-zero elements in the array + + :type: int_scalars + .. attribute:: ndim The rank of the array (currently only rank 2 arrays supported) @@ -120,6 +126,6 @@ Module Contents .. py:attribute:: size - .. py:method:: to_pdarray() + .. py:method:: to_pdarray() -> List[arkouda.pdarrayclass.pdarray] diff --git a/_sources/autoapi/arkouda/sparsematrix/index.rst.txt b/_sources/autoapi/arkouda/sparsematrix/index.rst.txt index d76f9515f..0a5b04522 100644 --- a/_sources/autoapi/arkouda/sparsematrix/index.rst.txt +++ b/_sources/autoapi/arkouda/sparsematrix/index.rst.txt @@ -9,6 +9,7 @@ Functions .. autoapisummary:: + arkouda.sparsematrix.create_sparse_matrix arkouda.sparsematrix.random_sparse_matrix arkouda.sparsematrix.sparse_matrix_matrix_mult @@ -16,6 +17,22 @@ Functions Module Contents --------------- +.. py:function:: create_sparse_matrix(size: int, rows: arkouda.pdarrayclass.pdarray, cols: arkouda.pdarrayclass.pdarray, vals: arkouda.pdarrayclass.pdarray, layout: str) -> arkouda.sparrayclass.sparray + + Create a sparse matrix from three pdarrays representing the row indices, + column indices, and values of the non-zero elements of the matrix. + + :param rows: The row indices of the non-zero elements + :type rows: pdarray + :param cols: The column indices of the non-zero elements + :type cols: pdarray + :param vals: The values of the non-zero elements + :type vals: pdarray + + :returns: A sparse matrix with the specified row and column indices and values + :rtype: sparray + + .. py:function:: random_sparse_matrix(size: int, density: float, layout: str, dtype: Union[type, str] = int64) -> arkouda.sparrayclass.sparray Create a random sparse matrix with the specified number of rows and columns diff --git a/autoapi/arkouda/index.html b/autoapi/arkouda/index.html index b34132f95..0bba41660 100644 --- a/autoapi/arkouda/index.html +++ b/autoapi/arkouda/index.html @@ -992,10 +992,10 @@

Classes

sparray

The class for sparse arrays. This class contains only the

-

str_

+

str_

A unicode string.

-

str_

+

str_

A unicode string.

str_scalars

@@ -1811,10 +1811,10 @@

Functions

tanh(→ arkouda.pdarrayclass.pdarray)

Return the element-wise hyperbolic tangent of the array.

-

timedelta_range([start, end, periods, freq, name, closed])

+

timedelta_range([start, end, periods, freq, name, closed])

Return a fixed frequency TimedeltaIndex, with day as the default

-

timedelta_range([start, end, periods, freq, name, closed])

+

timedelta_range([start, end, periods, freq, name, closed])

Return a fixed frequency TimedeltaIndex, with day as the default

to_csv(columns, prefix_path[, names, col_delim, overwrite])

@@ -42206,7 +42206,7 @@

Package ContentsReturns:

-
With string data:

False if one array is type ak.str_ & the other isn’t, True if both are ak.str_ & they match.

+
With string data:

False if one array is type ak.str_ & the other isn’t, True if both are ak.str_ & they match.

With numeric data:

True if neither array has any nan elements, and all elements pairwise equal.

True if equal_Nan True, all non-nans pairwise equal & nans in pda_a correspond to nans in pda_b

@@ -43089,7 +43089,7 @@

Package Contents[1]_. A N-bit two’s-complement +representing signed integers on computers [1]_. A N-bit two’s-complement system can represent every integer in the range \(-2^{N-1}\) to \(+2^{N-1}-1\).

@@ -46282,7 +46282,7 @@

Package Contentssmallest_normal is not actually the smallest positive representable value in a NumPy floating point type. As in the IEEE-754 -standard [1]_, NumPy floating point types make use of subnormal numbers to +standard [1]_, NumPy floating point types make use of subnormal numbers to fill the gap between 0 and smallest_normal. However, subnormal numbers may have significantly reduced precision [2].

This function can also be used for complex data types as well. If used, @@ -58758,7 +58758,7 @@

Package ContentsParameters:
  • A (pdarray) – Value(s) used when mask is False (see Notes for allowed dtypes)

  • -
  • mask (pdarray) – Used to choose values from A or B, must be same size as A, and of type ak.bool_

  • +
  • mask (pdarray) – Used to choose values from A or B, must be same size as A, and of type ak.bool_

  • Values (pdarray) – Value(s) used when mask is False (see Notes for allowed dtypes)

@@ -58786,10 +58786,10 @@

Package ContentsNotes

A and mask must be the same size. Values can be any size.

Allowed dtypes for A and Values conform to types accepted by numpy putmask.

-

If A is ak.float64, Values can be ak.float64, ak.int64, ak.uint64, ak.bool_.

-

If A is ak.int64, Values can be ak.int64 or ak.bool_.

-

If A is ak.uint64, Values can be ak.int64, ak.uint64, or ak.bool_.

-

If A is ak.bool_, Values must be ak.bool_.

+

If A is ak.float64, Values can be ak.float64, ak.int64, ak.uint64, ak.bool_.

+

If A is ak.int64, Values can be ak.int64 or ak.bool_.

+

If A is ak.uint64, Values can be ak.int64, ak.uint64, or ak.bool_.

+

If A is ak.bool_, Values must be ak.bool_.

Only one conditional clause is supported e.g., n < 5, n > 1, which is supported in numpy is not currently supported in Arkouda

Only 1D pdarrays are implemented for now.

@@ -60260,6 +60260,17 @@

Package Contents +
+nnz
+

The number of non-zero elements in the array

+
+
Type:
+

int_scalars

+
+
+

+
ndim
@@ -60335,23 +60346,23 @@

Package Contents -
-nnz
+
+nnz

-
-shape
+
+shape
-
-size
+
+size
-to_pdarray()[source]
+to_pdarray() List[arkouda.pdarrayclass.pdarray][source]

@@ -61104,8 +61115,8 @@

Package Contents -
-class arkouda.str_
+
+class arkouda.str_

A unicode string.

This type strips trailing null codepoints.

@@ -61133,8 +61144,8 @@

Package Contents -
-T(*args, **kwargs)
+
+T(*args, **kwargs)

Scalar attribute identical to the corresponding array attribute.

Please see ndarray.T.

@@ -61142,8 +61153,8 @@

Package Contents -
-all(*args, **kwargs)
+
+all(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.all.

@@ -61151,8 +61162,8 @@

Package Contents -
-any(*args, **kwargs)
+
+any(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.any.

@@ -61160,8 +61171,8 @@

Package Contents -
-argmax(*args, **kwargs)
+
+argmax(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.argmax.

@@ -61169,8 +61180,8 @@

Package Contents -
-argmin(*args, **kwargs)
+
+argmin(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.argmin.

@@ -61178,8 +61189,8 @@

Package Contents -
-argsort(*args, **kwargs)
+
+argsort(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.argsort.

@@ -61187,8 +61198,8 @@

Package Contents -
-astype(*args, **kwargs)
+
+astype(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.astype.

@@ -61196,8 +61207,8 @@

Package Contents -
-base(*args, **kwargs)
+
+base(*args, **kwargs)

Scalar attribute identical to the corresponding array attribute.

Please see ndarray.base.

@@ -61205,8 +61216,8 @@

Package Contents -
-byteswap(*args, **kwargs)
+
+byteswap(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.byteswap.

@@ -61214,8 +61225,8 @@

Package Contents -
-choose(*args, **kwargs)
+
+choose(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.choose.

@@ -61223,8 +61234,8 @@

Package Contents -
-clip(*args, **kwargs)
+
+clip(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.clip.

@@ -61232,8 +61243,8 @@

Package Contents -
-compress(*args, **kwargs)
+
+compress(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.compress.

@@ -61241,13 +61252,13 @@

Package Contents -
-conj(*args, **kwargs)
+
+conj(*args, **kwargs)
-
-conjugate(*args, **kwargs)
+
+conjugate(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.conjugate.

@@ -61255,8 +61266,8 @@

Package Contents -
-copy(*args, **kwargs)
+
+copy(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.copy.

@@ -61264,8 +61275,8 @@

Package Contents -
-cumprod(*args, **kwargs)
+
+cumprod(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.cumprod.

@@ -61273,8 +61284,8 @@

Package Contents -
-cumsum(*args, **kwargs)
+
+cumsum(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.cumsum.

@@ -61282,14 +61293,14 @@

Package Contents -
-data(*args, **kwargs)
+
+data(*args, **kwargs)

Pointer to start of data.

-
-diagonal(*args, **kwargs)
+
+diagonal(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.diagonal.

@@ -61297,14 +61308,14 @@

Package Contents -
-dtype(*args, **kwargs)
+
+dtype(*args, **kwargs)

Get array data-descriptor.

-
-dump(*args, **kwargs)
+
+dump(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.dump.

@@ -61312,8 +61323,8 @@

Package Contents -
-dumps(*args, **kwargs)
+
+dumps(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.dumps.

@@ -61321,8 +61332,8 @@

Package Contents -
-fill(*args, **kwargs)
+
+fill(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.fill.

@@ -61330,20 +61341,20 @@

Package Contents -
-flags(*args, **kwargs)
+
+flags(*args, **kwargs)

The integer value of flags.

-
-flat(*args, **kwargs)
+
+flat(*args, **kwargs)

A 1-D view of the scalar.

-
-flatten(*args, **kwargs)
+
+flatten(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.flatten.

@@ -61351,8 +61362,8 @@

Package Contents -
-getfield(*args, **kwargs)
+
+getfield(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.getfield.

@@ -61360,14 +61371,14 @@

Package Contents -
-imag(*args, **kwargs)
+
+imag(*args, **kwargs)

The imaginary part of the scalar.

-
-item(*args, **kwargs)
+
+item(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.item.

@@ -61375,8 +61386,8 @@

Package Contents -
-itemset(*args, **kwargs)
+
+itemset(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.itemset.

@@ -61384,14 +61395,14 @@

Package Contents -
-itemsize(*args, **kwargs)
+
+itemsize(*args, **kwargs)

The length of one element in bytes.

-
-max(*args, **kwargs)
+
+max(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.max.

@@ -61399,8 +61410,8 @@

Package Contents -
-mean(*args, **kwargs)
+
+mean(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.mean.

@@ -61408,8 +61419,8 @@

Package Contents -
-min(*args, **kwargs)
+
+min(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.min.

@@ -61417,20 +61428,20 @@

Package Contents -
-nbytes(*args, **kwargs)
+
+nbytes(*args, **kwargs)

The length of the scalar in bytes.

-
-ndim(*args, **kwargs)
+
+ndim(*args, **kwargs)

The number of array dimensions.

-
-newbyteorder(*args, **kwargs)
+
+newbyteorder(*args, **kwargs)

newbyteorder(new_order=’S’, /)

Return a new dtype with a different byte order.

@@ -61457,8 +61468,8 @@

Package Contents -
-nonzero(*args, **kwargs)
+
+nonzero(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.nonzero.

@@ -61466,8 +61477,8 @@

Package Contents -
-prod(*args, **kwargs)
+
+prod(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.prod.

@@ -61475,8 +61486,8 @@

Package Contents -
-ptp(*args, **kwargs)
+
+ptp(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.ptp.

@@ -61484,8 +61495,8 @@

Package Contents -
-put(*args, **kwargs)
+
+put(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.put.

@@ -61493,8 +61504,8 @@

Package Contents -
-ravel(*args, **kwargs)
+
+ravel(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.ravel.

@@ -61502,14 +61513,14 @@

Package Contents -
-real(*args, **kwargs)
+
+real(*args, **kwargs)

The real part of the scalar.

-
-repeat(*args, **kwargs)
+
+repeat(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.repeat.

@@ -61517,8 +61528,8 @@

Package Contents -
-reshape(*args, **kwargs)
+
+reshape(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.reshape.

@@ -61526,8 +61537,8 @@

Package Contents -
-resize(*args, **kwargs)
+
+resize(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.resize.

@@ -61535,8 +61546,8 @@

Package Contents -
-round(*args, **kwargs)
+
+round(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.round.

@@ -61544,8 +61555,8 @@

Package Contents -
-searchsorted(*args, **kwargs)
+
+searchsorted(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.searchsorted.

@@ -61553,8 +61564,8 @@

Package Contents -
-setfield(*args, **kwargs)
+
+setfield(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.setfield.

@@ -61562,8 +61573,8 @@

Package Contents -
-setflags(*args, **kwargs)
+
+setflags(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.setflags.

@@ -61571,20 +61582,20 @@

Package Contents -
-shape(*args, **kwargs)
+
+shape(*args, **kwargs)

Tuple of array dimensions.

-
-size(*args, **kwargs)
+
+size(*args, **kwargs)

The number of elements in the gentype.

-
-sort(*args, **kwargs)
+
+sort(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.sort.

@@ -61592,8 +61603,8 @@

Package Contents -
-squeeze(*args, **kwargs)
+
+squeeze(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.squeeze.

@@ -61601,8 +61612,8 @@

Package Contents -
-std(*args, **kwargs)
+
+std(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.std.

@@ -61610,14 +61621,14 @@

Package Contents -
-strides(*args, **kwargs)
+
+strides(*args, **kwargs)

Tuple of bytes steps in each dimension.

-
-sum(*args, **kwargs)
+
+sum(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.sum.

@@ -61625,8 +61636,8 @@

Package Contents -
-swapaxes(*args, **kwargs)
+
+swapaxes(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.swapaxes.

@@ -61634,8 +61645,8 @@

Package Contents -
-take(*args, **kwargs)
+
+take(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.take.

@@ -61643,13 +61654,13 @@

Package Contents -
-tobytes(*args, **kwargs)
+
+tobytes(*args, **kwargs)

-
-tofile(*args, **kwargs)
+
+tofile(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.tofile.

@@ -61657,8 +61668,8 @@

Package Contents -
-tolist(*args, **kwargs)
+
+tolist(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.tolist.

@@ -61666,8 +61677,8 @@

Package Contents -
-tostring(*args, **kwargs)
+
+tostring(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.tostring.

@@ -61675,8 +61686,8 @@

Package Contents -
-trace(*args, **kwargs)
+
+trace(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.trace.

@@ -61684,8 +61695,8 @@

Package Contents -
-transpose(*args, **kwargs)
+
+transpose(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.transpose.

@@ -61693,8 +61704,8 @@

Package Contents -
-var(*args, **kwargs)
+
+var(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.var.

@@ -61702,8 +61713,8 @@

Package Contents -
-view(*args, **kwargs)
+
+view(*args, **kwargs)

Scalar method identical to the corresponding array attribute.

Please see ndarray.view.

@@ -61857,8 +61868,8 @@

Package Contents -
-arkouda.timedelta_range(start=None, end=None, periods=None, freq=None, name=None, closed=None, **kwargs)[source]
+
+arkouda.timedelta_range(start=None, end=None, periods=None, freq=None, name=None, closed=None, **kwargs)[source]

Return a fixed frequency TimedeltaIndex, with day as the default frequency. Alias for ak.Timedelta(pd.timedelta_range(args)). Subject to size limit imposed by client.maxTransferBytes.

@@ -62704,8 +62715,8 @@

Package Contents -
-arkouda.unique(pda: groupable, return_groups: bool = False, assume_sorted: bool = False, return_indices: bool = False) groupable | Tuple[groupable, pdarray, pdarray, int][source]
+
+arkouda.unique(pda: groupable, return_groups: bool = False, assume_sorted: bool = False, return_indices: bool = False) groupable | Tuple[groupable, pdarray, pdarray, int][source]

Find the unique elements of an array.

Returns the unique elements of an array, sorted if the values are integers. There is an optional output in addition to the unique elements: the number @@ -62748,8 +62759,8 @@

Package Contents -
-arkouda.unique(pda: groupable, return_groups: bool = False, assume_sorted: bool = False, return_indices: bool = False) groupable | Tuple[groupable, pdarray, pdarray, int][source]
+
+arkouda.unique(pda: groupable, return_groups: bool = False, assume_sorted: bool = False, return_indices: bool = False) groupable | Tuple[groupable, pdarray, pdarray, int][source]

Find the unique elements of an array.

Returns the unique elements of an array, sorted if the values are integers. There is an optional output in addition to the unique elements: the number @@ -63190,8 +63201,8 @@

Package Contents -
-arkouda.where(condition: arkouda.pdarrayclass.pdarray, A: str | float | numpy.float64 | numpy.float32 | int | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical, B: str | float | numpy.float64 | numpy.float32 | int | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical) arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical[source]
+
+arkouda.where(condition: arkouda.pdarrayclass.pdarray, A: str | float | numpy.float64 | numpy.float32 | int | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical, B: str | float | numpy.float64 | numpy.float32 | int | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical) arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical[source]

Returns an array with elements chosen from A and B based upon a conditioning array. As is the case with numpy.where, the return array consists of values from the first array (A) where the conditioning array @@ -63265,8 +63276,8 @@

Package Contents -
-arkouda.where(condition: arkouda.pdarrayclass.pdarray, A: str | float | numpy.float64 | numpy.float32 | int | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical, B: str | float | numpy.float64 | numpy.float32 | int | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical) arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical[source]
+
+arkouda.where(condition: arkouda.pdarrayclass.pdarray, A: str | float | numpy.float64 | numpy.float32 | int | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical, B: str | float | numpy.float64 | numpy.float32 | int | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical) arkouda.pdarrayclass.pdarray | arkouda.strings.Strings | Categorical[source]

Returns an array with elements chosen from A and B based upon a conditioning array. As is the case with numpy.where, the return array consists of values from the first array (A) where the conditioning array @@ -63448,8 +63459,8 @@

Package Contents -
-arkouda.zeros(size: arkouda.numpy.dtypes.int_scalars | Tuple[arkouda.numpy.dtypes.int_scalars, Ellipsis] | str, dtype: numpy.dtype | type | str | arkouda.numpy.dtypes.bigint = float64, max_bits: int | None = None) arkouda.pdarrayclass.pdarray[source]
+
+arkouda.zeros(size: arkouda.numpy.dtypes.int_scalars | Tuple[arkouda.numpy.dtypes.int_scalars, Ellipsis] | str, dtype: numpy.dtype | type | str | arkouda.numpy.dtypes.bigint = float64, max_bits: int | None = None) arkouda.pdarrayclass.pdarray[source]

Create a pdarray filled with zeros.

Parameters:
@@ -63490,8 +63501,8 @@

Package Contents -
-arkouda.zeros(size: arkouda.numpy.dtypes.int_scalars | Tuple[arkouda.numpy.dtypes.int_scalars, Ellipsis] | str, dtype: numpy.dtype | type | str | arkouda.numpy.dtypes.bigint = float64, max_bits: int | None = None) arkouda.pdarrayclass.pdarray[source]
+
+arkouda.zeros(size: arkouda.numpy.dtypes.int_scalars | Tuple[arkouda.numpy.dtypes.int_scalars, Ellipsis] | str, dtype: numpy.dtype | type | str | arkouda.numpy.dtypes.bigint = float64, max_bits: int | None = None) arkouda.pdarrayclass.pdarray[source]

Create a pdarray filled with zeros.

Parameters:
@@ -63532,8 +63543,8 @@

Package Contents -
-arkouda.zeros(size: arkouda.numpy.dtypes.int_scalars | Tuple[arkouda.numpy.dtypes.int_scalars, Ellipsis] | str, dtype: numpy.dtype | type | str | arkouda.numpy.dtypes.bigint = float64, max_bits: int | None = None) arkouda.pdarrayclass.pdarray[source]
+
+arkouda.zeros(size: arkouda.numpy.dtypes.int_scalars | Tuple[arkouda.numpy.dtypes.int_scalars, Ellipsis] | str, dtype: numpy.dtype | type | str | arkouda.numpy.dtypes.bigint = float64, max_bits: int | None = None) arkouda.pdarrayclass.pdarray[source]

Create a pdarray filled with zeros.

Parameters:
@@ -66348,6 +66359,7 @@

Package Contentssparray.name
  • sparray.dtype
  • sparray.size
  • +
  • sparray.nnz
  • sparray.ndim
  • sparray.shape
  • sparray.layout
  • @@ -66358,9 +66370,9 @@

    Package Contentssparray.layout
  • sparray.name
  • sparray.ndim
  • -
  • sparray.nnz
  • -
  • sparray.shape
  • -
  • sparray.size
  • +
  • sparray.nnz
  • +
  • sparray.shape
  • +
  • sparray.size
  • sparray.to_pdarray()
  • @@ -66438,74 +66450,74 @@

    Package Contentsstr_.view() -
  • str_
  • diff --git a/autoapi/arkouda/sparrayclass/index.html b/autoapi/arkouda/sparrayclass/index.html index cb5ad7f3f..d2dfb9e41 100644 --- a/autoapi/arkouda/sparrayclass/index.html +++ b/autoapi/arkouda/sparrayclass/index.html @@ -454,6 +454,17 @@

    Module Contents +
    +nnz
    +

    The number of non-zero elements in the array

    +
    +
    Type:
    +

    int_scalars

    +
    +
    +

    +
    ndim
    @@ -529,23 +540,23 @@

    Module Contents -
    -nnz
    +
    +nnz

    -
    -shape
    +
    +shape
    -
    -size
    +
    +size
    -to_pdarray()[source]
    +to_pdarray() List[arkouda.pdarrayclass.pdarray][source]

    @@ -617,6 +628,7 @@

    Module Contentssparray.name
  • sparray.dtype
  • sparray.size
  • +
  • sparray.nnz
  • sparray.ndim
  • sparray.shape
  • sparray.layout
  • @@ -627,9 +639,9 @@

    Module Contentssparray.layout
  • sparray.name
  • sparray.ndim
  • -
  • sparray.nnz
  • -
  • sparray.shape
  • -
  • sparray.size
  • +
  • sparray.nnz
  • +
  • sparray.shape
  • +
  • sparray.size
  • sparray.to_pdarray()
  • diff --git a/autoapi/arkouda/sparsematrix/index.html b/autoapi/arkouda/sparsematrix/index.html index f78c23beb..082c92a5c 100644 --- a/autoapi/arkouda/sparsematrix/index.html +++ b/autoapi/arkouda/sparsematrix/index.html @@ -364,10 +364,13 @@

    Functions - + + + + - + @@ -376,6 +379,28 @@

    Functions

    Module Contents

    +
    +
    +arkouda.sparsematrix.create_sparse_matrix(size: int, rows: arkouda.pdarrayclass.pdarray, cols: arkouda.pdarrayclass.pdarray, vals: arkouda.pdarrayclass.pdarray, layout: str) arkouda.sparrayclass.sparray[source]
    +

    Create a sparse matrix from three pdarrays representing the row indices, +column indices, and values of the non-zero elements of the matrix.

    +
    +
    Parameters:
    +
      +
    • rows (pdarray) – The row indices of the non-zero elements

    • +
    • cols (pdarray) – The column indices of the non-zero elements

    • +
    • vals (pdarray) – The values of the non-zero elements

    • +
    +
    +
    Returns:
    +

    A sparse matrix with the specified row and column indices and values

    +
    +
    Return type:
    +

    sparray

    +
    +
    +
    +
    arkouda.sparsematrix.random_sparse_matrix(size: int, density: float, layout: str, dtype: type | str = int64) arkouda.sparrayclass.sparray[source]
    @@ -485,6 +510,7 @@

    Module Contentsarkouda.sparsematrix
  • base_repr() (in module arkouda) @@ -1860,7 +1860,7 @@

    B

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • @@ -1966,7 +1966,7 @@

    C

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • chunk_info() (arkouda.array_api.Array method) @@ -2016,7 +2016,7 @@

    C

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda)
  • @@ -2152,7 +2152,7 @@

    C

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • compute_join_size() (in module arkouda) @@ -2214,7 +2214,7 @@

    C

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.elementwise_functions)
  • @@ -2232,7 +2232,7 @@

    C

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • connect() (in module arkouda) @@ -2356,7 +2356,7 @@

    C

  • (arkouda.SeriesDTypes method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.DataFrame)
  • @@ -2455,6 +2455,8 @@

    C

  • (in module arkouda.sparrayclass)
  • +
  • create_sparse_matrix() (in module arkouda.sparsematrix) +
  • CRITICAL (arkouda.logger.LogLevel attribute)
  • DataFrame (class in arkouda), [1], [2] @@ -2718,7 +2720,7 @@

    D

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • dict_to_delimited_file() (in module arkouda.io_util) @@ -2936,7 +2938,7 @@

    D

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda)
  • @@ -2984,7 +2986,7 @@

    D

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • dumps() (arkouda.bytes_ method) @@ -2998,7 +3000,7 @@

    D

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • @@ -3218,7 +3220,7 @@

    F

  • (arkouda.pdarrayclass.pdarray method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • fill_vals() (arkouda.sparray method) @@ -3310,7 +3312,7 @@

    F

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • flat() (arkouda.bytes_ method) @@ -3324,7 +3326,7 @@

    F

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • flatten() (arkouda.bytes_ method) @@ -3342,7 +3344,7 @@

    F

  • (arkouda.pdarrayclass.pdarray method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (arkouda.Strings method), [1], [2], [3], [4], [5]
  • @@ -3896,7 +3898,7 @@

    G

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • getMandatoryRelease() (arkouda.dtypes.annotations method) @@ -4134,7 +4136,7 @@

    I

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.elementwise_functions)
  • @@ -5070,7 +5072,7 @@

    I

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • items() (arkouda.dtypes.NUMBER_FORMAT_STRINGS method) @@ -5110,7 +5112,7 @@

    I

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • itemsize (arkouda.pdarray attribute), [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12] @@ -5142,7 +5144,7 @@

    I

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • @@ -5564,7 +5566,7 @@

    M

  • (arkouda.series.Series method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda), [1]
  • @@ -5642,7 +5644,7 @@

    M

  • (arkouda.series.Series method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda), [1]
  • @@ -5780,7 +5782,7 @@

    M

  • (arkouda.series.Series method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda), [1]
  • @@ -6107,7 +6109,7 @@

    N

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • ndim (arkouda.array_api.Array property) @@ -6163,7 +6165,7 @@

    N

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • negative() (in module arkouda.array_api.elementwise_functions) @@ -6185,7 +6187,7 @@

    N

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • @@ -6234,10 +6236,10 @@

    N

  • (arkouda.numpy.finfo attribute)
  • -
  • nnz (arkouda.sparray attribute) +
  • nnz (arkouda.sparray attribute), [1]
  • non_empty (arkouda.SegArray property) @@ -6259,7 +6261,7 @@

    N

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.searching_functions)
  • @@ -6779,7 +6781,7 @@

    P

  • (arkouda.series.Series method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda), [1]
  • @@ -6811,7 +6813,7 @@

    P

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • purge_cached_regex_patterns() (arkouda.Strings method), [1], [2], [3], [4] @@ -6831,7 +6833,7 @@

    P

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • putmask() (in module arkouda) @@ -6915,7 +6917,7 @@

    R

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • re (arkouda.match.Match attribute) @@ -6975,7 +6977,7 @@

    R

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.elementwise_functions)
  • @@ -7141,7 +7143,7 @@

    R

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.manipulation_functions)
  • @@ -7183,7 +7185,7 @@

    R

  • (arkouda.pdarrayclass.pdarray method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.manipulation_functions)
  • @@ -7199,7 +7201,7 @@

    R

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • resolution (arkouda.finfo attribute) @@ -7285,7 +7287,7 @@

    R

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda)
  • @@ -7423,7 +7425,7 @@

    S

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.searching_functions)
  • @@ -7583,7 +7585,7 @@

    S

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • setflags() (arkouda.bytes_ method) @@ -7597,7 +7599,7 @@

    S

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • setxor() (arkouda.SegArray method) @@ -7643,9 +7645,9 @@

    S

  • (arkouda.series.Series property)
  • -
  • (arkouda.sparray attribute), [1] +
  • (arkouda.sparray attribute), [1]
  • -
  • (arkouda.sparrayclass.sparray attribute), [1] +
  • (arkouda.sparrayclass.sparray attribute), [1]
  • (arkouda.Strings attribute), [1], [2], [3], [4]
  • @@ -7671,7 +7673,7 @@

    S

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • shapes() (arkouda.scipy.stats.chi2 method) @@ -7767,9 +7769,9 @@

    S

  • (arkouda.segarray.SegArray attribute)
  • -
  • (arkouda.sparray attribute), [1] +
  • (arkouda.sparray attribute), [1]
  • -
  • (arkouda.sparrayclass.sparray attribute), [1] +
  • (arkouda.sparrayclass.sparray attribute), [1]
  • (arkouda.Strings attribute), [1], [2], [3], [4]
  • @@ -7795,7 +7797,7 @@

    S

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • skew() (in module arkouda) @@ -7841,7 +7843,7 @@

    S

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda)
  • @@ -7945,7 +7947,7 @@

    S

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.manipulation_functions)
  • @@ -8033,7 +8035,7 @@

    S

  • (arkouda.series.Series method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (arkouda.timeclass.Timedelta method)
  • @@ -8062,7 +8064,7 @@

    S

  • (arkouda.numpy.dtypes.DType method)
  • -
  • str_ (class in arkouda), [1] +
  • str_ (class in arkouda), [1]
  • string_operators() (in module arkouda) @@ -8191,7 +8193,7 @@

    S

  • (arkouda.series.Series method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (arkouda.timeclass.Datetime method)
  • @@ -8287,7 +8289,7 @@

    S

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • symmetric_difference() (arkouda.ARKOUDA_SUPPORTED_DTYPES method) @@ -8369,7 +8371,7 @@

    T

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • tail() (arkouda.DataFrame method), [1] @@ -8405,7 +8407,7 @@

    T

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda.array_api.indexing_functions)
  • @@ -8448,7 +8450,7 @@

    T

  • (class in arkouda.numpy)
  • -
  • timedelta_range() (in module arkouda), [1] +
  • timedelta_range() (in module arkouda), [1]
  • tofile() (arkouda.bytes_ method) @@ -8769,7 +8771,7 @@

    T

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • tolist() (arkouda.array_api.Array method) @@ -8787,7 +8789,7 @@

    T

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • TooHardError (class in arkouda) @@ -8815,7 +8817,7 @@

    T

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • total_seconds() (arkouda.timeclass.Timedelta method) @@ -8835,7 +8837,7 @@

    T

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • transfer() (arkouda.Categorical method), [1], [2] @@ -8875,7 +8877,7 @@

    T

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda)
  • @@ -9213,7 +9215,7 @@

    U

  • (arkouda.segarray.SegArray method)
  • -
  • (in module arkouda), [1], [2], [3] +
  • (in module arkouda), [1], [2], [3]
  • (in module arkouda.groupbyclass)
  • @@ -9587,7 +9589,7 @@

    V

  • (arkouda.series.Series method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • (in module arkouda), [1]
  • @@ -9617,7 +9619,7 @@

    V

  • (arkouda.numpy.str_ method)
  • -
  • (arkouda.str_ method), [1] +
  • (arkouda.str_ method), [1]
  • void (class in arkouda) @@ -9670,7 +9672,7 @@

    W

  • (arkouda.timeclass.Datetime property)
  • -
  • where() (in module arkouda), [1], [2], [3] +
  • where() (in module arkouda), [1], [2], [3]
  • -
  • zeros() (in module arkouda), [1], [2], [3], [4] +
  • zeros() (in module arkouda), [1], [2], [3], [4]
    • (in module arkouda.array_api.creation_functions) diff --git a/objects.inv b/objects.inv index 03fd0da07..3e592f176 100644 Binary files a/objects.inv and b/objects.inv differ diff --git a/searchindex.js b/searchindex.js index 28cc622da..d30128b56 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"API Reference": [[57, null], [67, "api-reference"], [68, "api-reference"], [69, "api-reference"], [70, "api-reference"]], "Access/Set Specific Elements in Sub-Array": [[96, "access-set-specific-elements-in-sub-array"]], "Adding Functionality to the Arkouda Server": [[58, "adding-functionality-to-the-arkouda-server"]], "Adding Issues": [[0, "adding-issues"]], "Adding Python Functionality (Client Interface)": [[58, "adding-python-functionality-client-interface"]], "Adding Your First Feature": [[58, null]], "Adding a Module from Outside the Arkouda src Directory": [[1, "adding-a-module-from-outside-the-arkouda-src-directory"]], "Adding new modules into the build process": [[78, "adding-new-modules-into-the-build-process"]], "All Dependencies": [[75, "all-dependencies"]], "Anaconda": [[77, "anaconda"]], "Append": [[90, "append"]], "Append & Prepend": [[96, "append-prepend"]], "ArgSort": [[85, "argsort"]], "Argsort": [[82, "argsort"]], "Arithmetic and Numeric Operations": [[87, null]], "Arkouda Arrays": [[66, "arkouda-arrays"]], "Arkouda DataFrames": [[66, "arkouda-dataframes"]], "Arkouda Documentation": [[72, null]], "Arkouda Formatted File": [[67, "arkouda-formatted-file"]], "Array Set Operations": [[98, null]], "Arrow Install Troubleshooting": [[75, "arrow-install-troubleshooting"]], "Attributes": [[4, "attributes"], [24, "attributes"], [26, "attributes"], [35, "attributes"], [47, "attributes"], [48, "attributes"]], "Basic Interaction": [[66, "basic-interaction"]], "Benchmark Arguments": [[59, "benchmark-arguments"]], "Between client and server": [[84, "between-client-and-server"]], "Bug Reports": [[0, "bug-reports"]], "Build Arkouda": [[60, "build-arkouda"]], "Build Chapel with GASNet": [[60, "build-chapel-with-gasnet"]], "Build from Source (Recommended)": [[77, "build-from-source-recommended"]], "Build the Server": [[75, "build-the-server"]], "Building the Arkouda Documentation": [[75, "building-the-arkouda-documentation"]], "Building the Server": [[75, null]], "CSV": [[67, null]], "Categorical": [[68, "categorical"], [68, "id3"], [70, "categorical"]], "Categoricals": [[88, null]], "Change Dtype": [[85, "change-dtype"]], "Chapel": [[0, "chapel"]], "Chapel API Reference": [[74, null]], "Chapel Compiler Flags": [[1, "chapel-compiler-flags"]], "Chapel Installation": [[76, "chapel-installation"]], "Classes": [[2, "classes"], [4, "classes"], [6, "classes"], [8, "classes"], [13, "classes"], [17, "classes"], [19, "classes"], [20, "classes"], [21, "classes"], [22, "classes"], [23, "classes"], [24, "classes"], [25, "classes"], [30, "classes"], [31, "classes"], [32, "classes"], [34, "classes"], [35, "classes"], [36, "classes"], [37, "classes"], [42, "classes"], [43, "classes"], [44, "classes"], [46, "classes"], [48, "classes"], [49, "classes"], [51, "classes"], [53, "classes"], [55, "classes"]], "Clone Arkouda Repository": [[76, "clone-arkouda-repository"], [77, "clone-arkouda-repository"]], "Coding Conventions and Linting": [[0, "coding-conventions-and-linting"]], "Compilation / Makefile": [[1, "compilation-makefile"]], "Compression": [[70, "compression"]], "Concat": [[85, "concat"]], "Concatenate": [[90, "concatenate"]], "Concatenation": [[89, "concatenation"]], "Connect a Python 3 client": [[99, "connect-a-python-3-client"]], "Connect the Python 3 Client": [[73, "connect-the-python-3-client"]], "Constant": [[89, "constant"]], "Construction": [[88, "construction"]], "Contributing": [[0, null]], "Copy": [[90, "copy"]], "Core Development Team Only": [[0, "core-development-team-only"]], "Creating & Using a DataFrame": [[66, "creating-using-a-dataframe"]], "Creating Arrays": [[89, null]], "Creation": [[95, "creation"]], "Data Distribution": [[68, "data-distribution"]], "Data Formatting": [[67, "data-formatting"]], "Data I/O": [[84, null]], "Data Preprocessing": [[84, "data-preprocessing"]], "Data Schema": [[68, "data-schema"]], "Data Type": [[94, "data-type"]], "Data Types": [[90, "data-types"]], "DataFrame": [[67, "dataframe"], [68, "dataframe"], [70, "dataframe"]], "DataFrames": [[66, "dataframes"]], "DataFrames in Arkouda": [[90, null]], "Deduplication": [[90, "deduplication"], [96, "deduplication"]], "Dependencies": [[75, "dependencies"]], "Dependency Configuration": [[75, "dependency-configuration"]], "Dependency List": [[79, "dependency-list"]], "Dependency Paths": [[1, "dependency-paths"]], "Descriptive Statistics": [[92, "descriptive-statistics"]], "Developer Documentation": [[65, null]], "Developer Specific": [[79, "developer-specific"]], "Developing Arkouda": [[0, "developing-arkouda"]], "Diff the git logs": [[62, "diff-the-git-logs"]], "Distributable Package": [[75, "distributable-package"]], "Drop": [[90, "drop"]], "Element-wise Functions": [[87, "element-wise-functions"]], "Environment Configuration": [[60, "environment-configuration"]], "Environment Variables": [[1, null]], "Environment Variables to Always Set": [[63, "environment-variables-to-always-set"]], "Example": [[58, "example"], [58, "id1"]], "Example Files": [[67, "example-files"]], "Examples": [[66, null]], "Exceptions": [[3, "exceptions"], [24, "exceptions"], [37, "exceptions"]], "Export": [[69, "export"]], "Exporting pdarray Objects": [[66, "exporting-pdarray-objects"]], "Exporting to Pandas": [[66, "exporting-to-pandas"]], "Feature Requests": [[0, "feature-requests"]], "Features": [[85, "features"], [90, "features"], [95, "features"], [97, "features"]], "File Configuration": [[68, "file-configuration"]], "File Formatting": [[67, "file-formatting"]], "File I/O": [[71, null]], "File Without Header": [[67, "file-without-header"]], "Filter": [[90, "filter"]], "Flattening": [[100, "flattening"]], "Functions": [[2, "functions"], [3, "functions"], [4, "functions"], [5, "functions"], [6, "functions"], [7, "functions"], [9, "functions"], [10, "functions"], [11, "functions"], [12, "functions"], [13, "functions"], [14, "functions"], [15, "functions"], [16, "functions"], [18, "functions"], [19, "functions"], [20, "functions"], [21, "functions"], [22, "functions"], [24, "functions"], [26, "functions"], [27, "functions"], [28, "functions"], [29, "functions"], [30, "functions"], [34, "functions"], [35, "functions"], [36, "functions"], [37, "functions"], [38, "functions"], [39, "functions"], [40, "functions"], [41, "functions"], [42, "functions"], [44, "functions"], [45, "functions"], [47, "functions"], [48, "functions"], [50, "functions"], [51, "functions"], [52, "functions"], [54, "functions"], [55, "functions"], [56, "functions"]], "GASNet Development": [[60, null]], "Gather": [[82, "gather"]], "Gather/Scatter (pdarray)": [[93, "gather-scatter-pdarray"]], "General I/O API": [[71, "general-i-o-api"]], "Generating release notes": [[62, "generating-release-notes"]], "Getting Started": [[75, "getting-started"]], "GroupBy": [[66, "groupby"], [68, "groupby"], [68, "id5"], [90, "groupby"], [91, null]], "HDF5": [[68, null]], "Head/Tail": [[97, "head-tail"]], "Histogram": [[92, "histogram"]], "Homebrew": [[77, "homebrew"]], "I/O": [[100, "i-o"]], "Import": [[69, "import"]], "Import/Export": [[69, null], [84, "import-export"]], "Import/Export Support": [[71, "import-export-support"]], "Importing Pandas DataFrame": [[66, "importing-pandas-dataframe"]], "Index": [[67, "index"], [68, "index"], [70, "index"]], "Indexing and Assignment": [[93, null]], "Indexs in Arkouda": [[85, null]], "Individual Installs": [[75, "individual-installs"]], "Install Arkouda": [[73, "install-arkouda"]], "Install Chapel": [[77, "install-chapel"]], "Install Chapel (RHEL)": [[76, "install-chapel-rhel"]], "Install Chapel (Ubuntu)": [[76, "install-chapel-ubuntu"]], "Install Dependencies": [[73, "install-dependencies"]], "Install Guides": [[81, "install-guides"]], "Installation": [[81, null]], "Installing Dependencies Manually": [[75, "installing-dependencies-manually"]], "Installing/Updating Python Dependencies": [[79, "installing-updating-python-dependencies"]], "Integer": [[93, "integer"]], "Integer pdarray index": [[93, "integer-pdarray-index"]], "Intersect": [[96, "intersect"]], "Iteration": [[88, "iteration"], [90, "iteration"], [94, "iteration"], [96, "iteration"], [100, "iteration"]], "Large Datasets": [[84, "large-datasets"]], "Launch arkouda server": [[99, "launch-arkouda-server"]], "Launching the Server": [[73, "launching-the-server"]], "Legacy File Support": [[68, "legacy-file-support"]], "Linux": [[76, null]], "Logical indexing": [[93, "logical-indexing"]], "Lookup": [[85, "lookup"], [97, "lookup"], [97, "id1"]], "MacOS": [[77, null]], "Match Object": [[100, "match-object"]], "Merging Pull Requests": [[0, "merging-pull-requests"]], "MetaData Attributes": [[68, "metadata-attributes"]], "Modular Building": [[75, "modular-building"]], "Modular Server Builds": [[78, null]], "Module Contents": [[2, "module-contents"], [3, "module-contents"], [4, "module-contents"], [5, "module-contents"], [6, "module-contents"], [7, "module-contents"], [9, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [16, "module-contents"], [17, "module-contents"], [18, "module-contents"], [19, "module-contents"], [20, "module-contents"], [22, "module-contents"], [23, "module-contents"], [25, "module-contents"], [26, "module-contents"], [27, "module-contents"], [28, "module-contents"], [29, "module-contents"], [30, "module-contents"], [31, "module-contents"], [32, "module-contents"], [34, "module-contents"], [35, "module-contents"], [36, "module-contents"], [37, "module-contents"], [38, "module-contents"], [39, "module-contents"], [40, "module-contents"], [41, "module-contents"], [43, "module-contents"], [44, "module-contents"], [45, "module-contents"], [46, "module-contents"], [47, "module-contents"], [48, "module-contents"], [49, "module-contents"], [50, "module-contents"], [51, "module-contents"], [52, "module-contents"], [53, "module-contents"], [55, "module-contents"], [56, "module-contents"]], "NGrams": [[96, "ngrams"]], "Name": [[94, "name"]], "Named Arguments": [[82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"]], "Next Steps": [[76, "next-steps"], [77, "next-steps"]], "Operation": [[96, "operation"]], "Operations": [[88, "operations"], [100, "operations"]], "Operators": [[94, "operators"]], "Overview": [[81, "overview"]], "Package Contents": [[8, "package-contents"], [21, "package-contents"], [24, "package-contents"], [42, "package-contents"], [54, "package-contents"]], "Pandas Integration": [[97, "pandas-integration"]], "Parquet": [[70, null]], "Performance": [[96, "performance"], [100, "performance"]], "Performance Testing": [[82, null]], "Permutations": [[90, "permutations"]], "Positional Arguments": [[82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"]], "Prefix & Suffix": [[96, "prefix-suffix"]], "PyTest Benchmarks": [[59, null]], "Python Client": [[1, "python-client"]], "Python Dependencies": [[79, "python-dependencies"]], "Python Environment - Anaconda": [[77, "python-environment-anaconda"]], "Python Environment - Anaconda (Linux)": [[76, "python-environment-anaconda-linux"]], "Python Mapping": [[66, "python-mapping"]], "Python3": [[0, "python3"]], "Quickstart": [[73, null]], "Random": [[89, "random"]], "Random in Arkouda": [[95, null]], "Rank": [[94, "rank"]], "Read": [[71, "read"]], "Reading data from disk": [[84, "reading-data-from-disk"]], "Reading the JSON Output": [[59, "reading-the-json-output"]], "Reduce": [[82, "reduce"]], "Reducing Memory Usage of Arkouda Builds": [[61, null]], "Reductions": [[87, "reductions"]], "Regular": [[89, "regular"]], "Regular Expressions": [[100, "regular-expressions"]], "Release Process": [[0, "release-process"], [62, null]], "Rename Columns": [[90, "rename-columns"]], "Reproducing User Bugs Efficiently": [[64, "reproducing-user-bugs-efficiently"]], "Requirements": [[79, null], [81, "requirements"]], "Reset Indexes": [[90, "reset-indexes"]], "Reshape": [[94, "reshape"]], "Reviewing Pull Requests": [[0, "reviewing-pull-requests"]], "Run Arkouda": [[60, "run-arkouda"]], "Running": [[1, "running"]], "Running Single Files or Tests": [[59, "running-single-files-or-tests"]], "Running The Full Suite": [[59, "running-the-full-suite"]], "Running chapel tests": [[0, "running-chapel-tests"]], "Running python tests": [[0, "running-python-tests"]], "Saving Full Builds": [[64, "saving-full-builds"]], "Saving modules used in an Arkouda server run": [[78, "saving-modules-used-in-an-arkouda-server-run"]], "Scan": [[82, "scan"]], "Scans": [[87, "scans"]], "Scatter": [[82, "scatter"]], "SegArray": [[68, "segarray"], [68, "id4"], [70, "segarray"]], "SegArray SetOps": [[96, "segarray-setops"]], "SegArray Specific Methods": [[96, "segarray-specific-methods"]], "SegArrays in Arkouda": [[96, null]], "Series in Arkouda": [[97, null]], "Set Difference": [[96, "set-difference"]], "Shutdown/Disconnect": [[73, "shutdown-disconnect"]], "Slice": [[93, "slice"]], "Sorting": [[86, null], [90, "sorting"], [97, "sorting"]], "Specifying a custom configuration file": [[78, "specifying-a-custom-configuration-file"]], "Speeding up Arkouda Compilation": [[63, null]], "Splitting and joining": [[100, "splitting-and-joining"]], "Startup": [[99, null]], "Step-by-step instructions": [[62, "step-by-step-instructions"]], "Stream": [[82, "stream"]], "String-Specific Methods": [[100, "string-specific-methods"]], "Strings": [[67, "strings"], [68, "strings"], [68, "id2"], [70, "strings"]], "Strings in Arkouda": [[100, null]], "Sub-array of Size": [[96, "sub-array-of-size"]], "Submodules": [[8, "submodules"], [24, "submodules"], [35, "submodules"], [44, "submodules"]], "Subpackages": [[24, "subpackages"]], "Substring search": [[100, "substring-search"]], "Summarizing Data": [[92, null]], "Support Arkouda Data Types": [[67, "support-arkouda-data-types"]], "Supported Arkouda Data Types": [[68, "supported-arkouda-data-types"], [70, "supported-arkouda-data-types"]], "Supported File Formats": [[84, "supported-file-formats"]], "Supported File Formats:": [[71, null]], "Supported Write Modes": [[68, "supported-write-modes"], [70, "supported-write-modes"]], "Symmetric Difference": [[96, "symmetric-difference"]], "Tail/Head of Data": [[90, "tail-head-of-data"]], "Testing": [[0, "testing"], [1, "testing"]], "The pdarray class": [[94, null]], "Tips for Reproducing User Bugs": [[64, null]], "Type Casting": [[94, "type-casting"]], "Union": [[96, "union"]], "Updating Environment": [[77, "updating-environment"]], "Usage Guide": [[83, null]], "Using Anaconda": [[79, "using-anaconda"]], "Using Arkouda": [[73, "using-arkouda"]], "Using Environment Installed Dependencies (Recommended)": [[75, "using-environment-installed-dependencies-recommended"]], "Using Pip": [[79, "using-pip"]], "Using conda": [[75, "using-conda"]], "Using pip": [[75, "using-pip"]], "Using the Modular Build System": [[63, "using-the-modular-build-system"]], "Value Counts": [[92, "value-counts"], [97, "value-counts"]], "Vector and Scalar Arithmetic": [[87, "vector-and-scalar-arithmetic"]], "Where": [[87, "where"]], "Windows (WSL2)": [[80, null]], "Write": [[71, "write"]], "Writing Pull Requests": [[0, "writing-pull-requests"]], "arkouda": [[24, null]], "arkouda.accessor": [[2, null]], "arkouda.alignment": [[3, null]], "arkouda.array_api": [[8, null]], "arkouda.array_api.array_object": [[4, null]], "arkouda.array_api.creation_functions": [[5, null]], "arkouda.array_api.data_type_functions": [[6, null]], "arkouda.array_api.elementwise_functions": [[7, null]], "arkouda.array_api.indexing_functions": [[9, null]], "arkouda.array_api.linalg": [[10, null]], "arkouda.array_api.manipulation_functions": [[11, null]], "arkouda.array_api.searching_functions": [[12, null]], "arkouda.array_api.set_functions": [[13, null]], "arkouda.array_api.sorting_functions": [[14, null]], "arkouda.array_api.statistical_functions": [[15, null]], "arkouda.array_api.utility_functions": [[16, null]], "arkouda.categorical": [[17, null]], "arkouda.client": [[18, null]], "arkouda.client_dtypes": [[19, null]], "arkouda.dataframe": [[20, null]], "arkouda.dtypes": [[21, null]], "arkouda.groupbyclass": [[22, null]], "arkouda.history": [[23, null]], "arkouda.index": [[25, null]], "arkouda.infoclass": [[26, null]], "arkouda.io": [[27, null]], "arkouda.io_util": [[28, null]], "arkouda.join": [[29, null]], "arkouda.logger": [[30, null]], "arkouda.match": [[31, null]], "arkouda.matcher": [[32, null]], "arkouda.numeric": [[33, null]], "arkouda.numpy": [[35, null]], "arkouda.numpy.dtypes": [[34, null]], "arkouda.numpy.random": [[36, null]], "arkouda.pdarrayclass": [[37, null]], "arkouda.pdarraycreation": [[38, null]], "arkouda.pdarraymanipulation": [[39, null]], "arkouda.pdarraysetops": [[40, null]], "arkouda.plotting": [[41, null]], "arkouda.random": [[42, null]], "arkouda.row": [[43, null]], "arkouda.scipy": [[44, null]], "arkouda.scipy.special": [[45, null]], "arkouda.scipy.stats": [[46, null]], "arkouda.security": [[47, null]], "arkouda.segarray": [[48, null]], "arkouda.series": [[49, null]], "arkouda.sorting": [[50, null]], "arkouda.sparrayclass": [[51, null]], "arkouda.sparsematrix": [[52, null]], "arkouda.strings": [[53, null]], "arkouda.testing": [[54, null]], "arkouda.timeclass": [[55, null]], "arkouda.util": [[56, null]], "choice": [[95, "choice"]], "exponential": [[95, "exponential"]], "installing the chapel-py dependency": [[75, "installing-the-chapel-py-dependency"]], "installing the chapel-py dependency manually": [[75, "installing-the-chapel-py-dependency-manually"]], "integers": [[95, "integers"]], "logistic": [[95, "logistic"]], "lognormal": [[95, "lognormal"]], "ls Functionality": [[71, "ls-functionality"]], "normal": [[95, "normal"]], "pdarray": [[67, "pdarray"], [68, "pdarray"], [68, "id1"], [70, "pdarray"]], "pdarray Creation": [[66, "pdarray-creation"]], "pdarray Set operations": [[66, "pdarray-set-operations"]], "pdarrays": [[66, "pdarrays"]], "permutation": [[95, "permutation"]], "poisson": [[95, "poisson"]], "random": [[95, "random"]], "shuffle": [[95, "shuffle"]], "standard_exponential": [[95, "standard-exponential"]], "standard_normal": [[95, "standard-normal"]], "uniform": [[95, "uniform"]]}, "docnames": ["CONTRIBUTING_LINK", "ENVIRONMENT", "autoapi/arkouda/accessor/index", "autoapi/arkouda/alignment/index", "autoapi/arkouda/array_api/array_object/index", "autoapi/arkouda/array_api/creation_functions/index", "autoapi/arkouda/array_api/data_type_functions/index", "autoapi/arkouda/array_api/elementwise_functions/index", "autoapi/arkouda/array_api/index", "autoapi/arkouda/array_api/indexing_functions/index", "autoapi/arkouda/array_api/linalg/index", "autoapi/arkouda/array_api/manipulation_functions/index", "autoapi/arkouda/array_api/searching_functions/index", "autoapi/arkouda/array_api/set_functions/index", "autoapi/arkouda/array_api/sorting_functions/index", "autoapi/arkouda/array_api/statistical_functions/index", "autoapi/arkouda/array_api/utility_functions/index", "autoapi/arkouda/categorical/index", "autoapi/arkouda/client/index", "autoapi/arkouda/client_dtypes/index", "autoapi/arkouda/dataframe/index", "autoapi/arkouda/dtypes/index", "autoapi/arkouda/groupbyclass/index", "autoapi/arkouda/history/index", "autoapi/arkouda/index", "autoapi/arkouda/index/index", "autoapi/arkouda/infoclass/index", "autoapi/arkouda/io/index", "autoapi/arkouda/io_util/index", "autoapi/arkouda/join/index", "autoapi/arkouda/logger/index", "autoapi/arkouda/match/index", "autoapi/arkouda/matcher/index", "autoapi/arkouda/numeric/index", "autoapi/arkouda/numpy/dtypes/index", "autoapi/arkouda/numpy/index", "autoapi/arkouda/numpy/random/index", "autoapi/arkouda/pdarrayclass/index", "autoapi/arkouda/pdarraycreation/index", "autoapi/arkouda/pdarraymanipulation/index", "autoapi/arkouda/pdarraysetops/index", "autoapi/arkouda/plotting/index", "autoapi/arkouda/random/index", "autoapi/arkouda/row/index", "autoapi/arkouda/scipy/index", "autoapi/arkouda/scipy/special/index", "autoapi/arkouda/scipy/stats/index", "autoapi/arkouda/security/index", "autoapi/arkouda/segarray/index", "autoapi/arkouda/series/index", "autoapi/arkouda/sorting/index", "autoapi/arkouda/sparrayclass/index", "autoapi/arkouda/sparsematrix/index", "autoapi/arkouda/strings/index", "autoapi/arkouda/testing/index", "autoapi/arkouda/timeclass/index", "autoapi/arkouda/util/index", "autoapi/index", "developer/ADDING_FEATURES", "developer/BENCHMARK", "developer/GASNET", "developer/MEMORY", "developer/RELEASE_PROCESS", "developer/TIPS", "developer/USER_BUGS", "developer/dev_menu", "examples", "file_io/CSV", "file_io/HDF5", "file_io/IMPORT_EXPORT", "file_io/PARQUET", "file_io/io_menu", "index", "quickstart", "server/index", "setup/BUILD", "setup/LINUX_INSTALL", "setup/MAC_INSTALL", "setup/MODULAR", "setup/REQUIREMENTS", "setup/WINDOWS_INSTALL", "setup/install_menu", "setup/testing", "usage", "usage/IO", "usage/Index", "usage/argsort", "usage/arithmetic", "usage/categorical", "usage/creation", "usage/dataframe", "usage/groupby", "usage/histogram", "usage/indexing", "usage/pdarray", "usage/random", "usage/segarray", "usage/series", "usage/setops", "usage/startup", "usage/strings"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1}, "filenames": ["CONTRIBUTING_LINK.md", "ENVIRONMENT.md", "autoapi/arkouda/accessor/index.rst", "autoapi/arkouda/alignment/index.rst", "autoapi/arkouda/array_api/array_object/index.rst", "autoapi/arkouda/array_api/creation_functions/index.rst", "autoapi/arkouda/array_api/data_type_functions/index.rst", "autoapi/arkouda/array_api/elementwise_functions/index.rst", "autoapi/arkouda/array_api/index.rst", "autoapi/arkouda/array_api/indexing_functions/index.rst", "autoapi/arkouda/array_api/linalg/index.rst", "autoapi/arkouda/array_api/manipulation_functions/index.rst", "autoapi/arkouda/array_api/searching_functions/index.rst", "autoapi/arkouda/array_api/set_functions/index.rst", "autoapi/arkouda/array_api/sorting_functions/index.rst", "autoapi/arkouda/array_api/statistical_functions/index.rst", "autoapi/arkouda/array_api/utility_functions/index.rst", "autoapi/arkouda/categorical/index.rst", "autoapi/arkouda/client/index.rst", "autoapi/arkouda/client_dtypes/index.rst", "autoapi/arkouda/dataframe/index.rst", "autoapi/arkouda/dtypes/index.rst", "autoapi/arkouda/groupbyclass/index.rst", "autoapi/arkouda/history/index.rst", "autoapi/arkouda/index.rst", "autoapi/arkouda/index/index.rst", "autoapi/arkouda/infoclass/index.rst", "autoapi/arkouda/io/index.rst", "autoapi/arkouda/io_util/index.rst", "autoapi/arkouda/join/index.rst", "autoapi/arkouda/logger/index.rst", "autoapi/arkouda/match/index.rst", "autoapi/arkouda/matcher/index.rst", "autoapi/arkouda/numeric/index.rst", "autoapi/arkouda/numpy/dtypes/index.rst", "autoapi/arkouda/numpy/index.rst", "autoapi/arkouda/numpy/random/index.rst", "autoapi/arkouda/pdarrayclass/index.rst", "autoapi/arkouda/pdarraycreation/index.rst", "autoapi/arkouda/pdarraymanipulation/index.rst", "autoapi/arkouda/pdarraysetops/index.rst", "autoapi/arkouda/plotting/index.rst", "autoapi/arkouda/random/index.rst", "autoapi/arkouda/row/index.rst", "autoapi/arkouda/scipy/index.rst", "autoapi/arkouda/scipy/special/index.rst", "autoapi/arkouda/scipy/stats/index.rst", "autoapi/arkouda/security/index.rst", "autoapi/arkouda/segarray/index.rst", "autoapi/arkouda/series/index.rst", "autoapi/arkouda/sorting/index.rst", "autoapi/arkouda/sparrayclass/index.rst", "autoapi/arkouda/sparsematrix/index.rst", "autoapi/arkouda/strings/index.rst", "autoapi/arkouda/testing/index.rst", "autoapi/arkouda/timeclass/index.rst", "autoapi/arkouda/util/index.rst", "autoapi/index.rst", "developer/ADDING_FEATURES.md", "developer/BENCHMARK.md", "developer/GASNET.md", "developer/MEMORY.md", "developer/RELEASE_PROCESS.md", "developer/TIPS.md", "developer/USER_BUGS.md", "developer/dev_menu.rst", "examples.rst", "file_io/CSV.md", "file_io/HDF5.md", "file_io/IMPORT_EXPORT.md", "file_io/PARQUET.md", "file_io/io_menu.rst", "index.rst", "quickstart.rst", "server/index.rst", "setup/BUILD.md", "setup/LINUX_INSTALL.md", "setup/MAC_INSTALL.md", "setup/MODULAR.md", "setup/REQUIREMENTS.md", "setup/WINDOWS_INSTALL.md", "setup/install_menu.rst", "setup/testing.rst", "usage.rst", "usage/IO.rst", "usage/Index.rst", "usage/argsort.rst", "usage/arithmetic.rst", "usage/categorical.rst", "usage/creation.rst", "usage/dataframe.rst", "usage/groupby.rst", "usage/histogram.rst", "usage/indexing.rst", "usage/pdarray.rst", "usage/random.rst", "usage/segarray.rst", "usage/series.rst", "usage/setops.rst", "usage/startup.rst", "usage/strings.rst"], "indexentries": {"a() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.a", false]], "abs() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.abs", false]], "abs() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.abs", false], [24, "id798", false]], "abs() (in module arkouda)": [[24, "arkouda.abs", false], [87, "arkouda.abs", false]], "abs() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.abs", false]], "abs() (in module arkouda.numpy)": [[35, "arkouda.numpy.abs", false]], "abspath() (arkouda.datasource method)": [[24, "arkouda.DataSource.abspath", false]], "abspath() (arkouda.numpy.datasource method)": [[35, "arkouda.numpy.DataSource.abspath", false]], "acos() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.acos", false]], "acosh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.acosh", false]], "add() (arkouda.series method)": [[24, "arkouda.Series.add", false]], "add() (arkouda.series.series method)": [[49, "arkouda.series.Series.add", false]], "add() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.add", false]], "add_newdoc() (in module arkouda)": [[24, "arkouda.add_newdoc", false]], "add_newdoc() (in module arkouda.numpy)": [[35, "arkouda.numpy.add_newdoc", false]], "aggregate() (arkouda.groupby method)": [[24, "arkouda.GroupBy.aggregate", false], [24, "id258", false], [24, "id305", false], [24, "id352", false], [24, "id399", false], [24, "id446", false], [91, "arkouda.GroupBy.aggregate", false]], "aggregate() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.aggregate", false]], "aggregate() (arkouda.segarray method)": [[24, "arkouda.SegArray.aggregate", false]], "aggregate() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.aggregate", false]], "akabs() (in module arkouda)": [[24, "arkouda.akabs", false]], "akbool (class in arkouda)": [[24, "arkouda.akbool", false], [24, "id819", false]], "akcast() (in module arkouda)": [[24, "arkouda.akcast", false], [24, "id820", false]], "akfloat64 (class in arkouda)": [[24, "arkouda.akfloat64", false], [24, "id821", false]], "akint64 (class in arkouda)": [[24, "arkouda.akint64", false], [24, "id826", false], [24, "id828", false]], "akuint64 (class in arkouda)": [[24, "arkouda.akuint64", false], [24, "id830", false], [24, "id832", false]], "align() (in module arkouda)": [[24, "arkouda.align", false]], "align() (in module arkouda.alignment)": [[3, "arkouda.alignment.align", false]], "all() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.all", false]], "all() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.all", false], [24, "id124", false]], "all() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.all", false]], "all() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.all", false]], "all() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.all", false]], "all() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.all", false]], "all() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.all", false]], "all() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.all", false]], "all() (arkouda.groupby method)": [[24, "arkouda.GroupBy.all", false], [24, "id259", false], [24, "id306", false], [24, "id353", false], [24, "id400", false], [24, "id447", false], [91, "arkouda.GroupBy.all", false]], "all() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.all", false]], "all() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.all", false]], "all() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.all", false]], "all() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.all", false]], "all() (arkouda.pdarray method)": [[24, "arkouda.pdarray.all", false], [24, "id1001", false], [24, "id1072", false], [24, "id1143", false], [24, "id1214", false], [24, "id930", false], [92, "arkouda.pdarray.all", false]], "all() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.all", false]], "all() (arkouda.segarray method)": [[24, "arkouda.SegArray.all", false]], "all() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.all", false]], "all() (arkouda.str_ method)": [[24, "arkouda.str_.all", false], [24, "id1289", false]], "all() (in module arkouda)": [[24, "arkouda.all", false], [87, "arkouda.all", false]], "all() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.all", false]], "all() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.all", false]], "all_scalars (class in arkouda)": [[24, "arkouda.all_scalars", false]], "all_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.all_scalars", false]], "all_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.all_scalars", false]], "all_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.all_scalars", false]], "allsymbols (in module arkouda)": [[24, "arkouda.AllSymbols", false]], "allsymbols (in module arkouda.infoclass)": [[26, "arkouda.infoclass.AllSymbols", false]], "and() (arkouda.groupby method)": [[24, "arkouda.GroupBy.AND", false], [24, "id254", false], [24, "id301", false], [24, "id348", false], [24, "id395", false], [24, "id442", false], [91, "arkouda.GroupBy.AND", false]], "and() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.AND", false]], "and() (arkouda.segarray method)": [[24, "arkouda.SegArray.AND", false]], "and() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.AND", false]], "annotations (class in arkouda.dtypes)": [[21, "arkouda.dtypes.annotations", false]], "annotations (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.annotations", false]], "any() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.any", false]], "any() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.any", false], [24, "id125", false]], "any() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.any", false]], "any() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.any", false]], "any() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.any", false]], "any() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.any", false]], "any() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.any", false]], "any() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.any", false]], "any() (arkouda.groupby method)": [[24, "arkouda.GroupBy.any", false], [24, "id260", false], [24, "id307", false], [24, "id354", false], [24, "id401", false], [24, "id448", false], [91, "arkouda.GroupBy.any", false]], "any() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.any", false]], "any() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.any", false]], "any() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.any", false]], "any() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.any", false]], "any() (arkouda.pdarray method)": [[24, "arkouda.pdarray.any", false], [24, "id1002", false], [24, "id1073", false], [24, "id1144", false], [24, "id1215", false], [24, "id931", false], [92, "arkouda.pdarray.any", false]], "any() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.any", false]], "any() (arkouda.segarray method)": [[24, "arkouda.SegArray.any", false]], "any() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.any", false]], "any() (arkouda.str_ method)": [[24, "arkouda.str_.any", false], [24, "id1290", false]], "any() (in module arkouda)": [[24, "arkouda.any", false], [87, "arkouda.any", false]], "any() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.any", false]], "any() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.any", false]], "append() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.append", false], [24, "id126", false]], "append() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.append", false]], "append() (arkouda.segarray method)": [[24, "arkouda.SegArray.append", false]], "append() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.append", false]], "append() (in module arkouda.segarray)": [[96, "arkouda.SegArray.append", false]], "append_single() (arkouda.segarray method)": [[24, "arkouda.SegArray.append_single", false]], "append_single() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.append_single", false]], "append_single() (in module arkouda.segarray)": [[96, "arkouda.SegArray.append_single", false]], "apply_permutation() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.apply_permutation", false], [24, "id127", false]], "apply_permutation() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.apply_permutation", false]], "apply_permutation() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.apply_permutation", false]], "arange() (in module arkouda)": [[24, "arkouda.arange", false], [24, "id834", false], [24, "id835", false], [24, "id836", false], [24, "id837", false], [24, "id838", false], [89, "arkouda.arange", false]], "arange() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.arange", false]], "arange() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.arange", false]], "arccos() (in module arkouda)": [[24, "arkouda.arccos", false]], "arccos() (in module arkouda.numpy)": [[35, "arkouda.numpy.arccos", false]], "arccosh() (in module arkouda)": [[24, "arkouda.arccosh", false]], "arccosh() (in module arkouda.numpy)": [[35, "arkouda.numpy.arccosh", false]], "arcsin() (in module arkouda)": [[24, "arkouda.arcsin", false]], "arcsin() (in module arkouda.numpy)": [[35, "arkouda.numpy.arcsin", false]], "arcsinh() (in module arkouda)": [[24, "arkouda.arcsinh", false]], "arcsinh() (in module arkouda.numpy)": [[35, "arkouda.numpy.arcsinh", false]], "arctan() (in module arkouda)": [[24, "arkouda.arctan", false]], "arctan() (in module arkouda.numpy)": [[35, "arkouda.numpy.arctan", false]], "arctan2() (in module arkouda)": [[24, "arkouda.arctan2", false]], "arctan2() (in module arkouda.numpy)": [[35, "arkouda.numpy.arctan2", false]], "arctanh() (in module arkouda)": [[24, "arkouda.arctanh", false]], "arctanh() (in module arkouda.numpy)": [[35, "arkouda.numpy.arctanh", false]], "argmax() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.argmax", false]], "argmax() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.argmax", false]], "argmax() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.argmax", false]], "argmax() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.argmax", false]], "argmax() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.argmax", false]], "argmax() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.argmax", false]], "argmax() (arkouda.groupby method)": [[24, "arkouda.GroupBy.argmax", false], [24, "id261", false], [24, "id308", false], [24, "id355", false], [24, "id402", false], [24, "id449", false], [91, "arkouda.GroupBy.argmax", false]], "argmax() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.argmax", false]], "argmax() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.argmax", false]], "argmax() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.argmax", false]], "argmax() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.argmax", false]], "argmax() (arkouda.pdarray method)": [[24, "arkouda.pdarray.argmax", false], [24, "id1003", false], [24, "id1074", false], [24, "id1145", false], [24, "id1216", false], [24, "id932", false], [92, "arkouda.pdarray.argmax", false]], "argmax() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.argmax", false]], "argmax() (arkouda.segarray method)": [[24, "arkouda.SegArray.argmax", false]], "argmax() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.argmax", false]], "argmax() (arkouda.series method)": [[24, "arkouda.Series.argmax", false]], "argmax() (arkouda.series.series method)": [[49, "arkouda.series.Series.argmax", false]], "argmax() (arkouda.str_ method)": [[24, "arkouda.str_.argmax", false], [24, "id1291", false]], "argmax() (in module arkouda)": [[24, "arkouda.argmax", false], [87, "arkouda.argmax", false]], "argmax() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.argmax", false]], "argmax() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.argmax", false]], "argmaxk() (arkouda.pdarray method)": [[24, "arkouda.pdarray.argmaxk", false], [24, "id1004", false], [24, "id1075", false], [24, "id1146", false], [24, "id1217", false], [24, "id933", false], [92, "arkouda.pdarray.argmaxk", false]], "argmaxk() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.argmaxk", false]], "argmaxk() (in module arkouda)": [[24, "arkouda.argmaxk", false], [87, "arkouda.argmaxk", false]], "argmaxk() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.argmaxk", false]], "argmin() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.argmin", false]], "argmin() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.argmin", false]], "argmin() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.argmin", false]], "argmin() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.argmin", false]], "argmin() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.argmin", false]], "argmin() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.argmin", false]], "argmin() (arkouda.groupby method)": [[24, "arkouda.GroupBy.argmin", false], [24, "id262", false], [24, "id309", false], [24, "id356", false], [24, "id403", false], [24, "id450", false], [91, "arkouda.GroupBy.argmin", false]], "argmin() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.argmin", false]], "argmin() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.argmin", false]], "argmin() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.argmin", false]], "argmin() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.argmin", false]], "argmin() (arkouda.pdarray method)": [[24, "arkouda.pdarray.argmin", false], [24, "id1005", false], [24, "id1076", false], [24, "id1147", false], [24, "id1218", false], [24, "id934", false], [92, "arkouda.pdarray.argmin", false]], "argmin() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.argmin", false]], "argmin() (arkouda.segarray method)": [[24, "arkouda.SegArray.argmin", false]], "argmin() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.argmin", false]], "argmin() (arkouda.series method)": [[24, "arkouda.Series.argmin", false]], "argmin() (arkouda.series.series method)": [[49, "arkouda.series.Series.argmin", false]], "argmin() (arkouda.str_ method)": [[24, "arkouda.str_.argmin", false], [24, "id1292", false]], "argmin() (in module arkouda)": [[24, "arkouda.argmin", false], [87, "arkouda.argmin", false]], "argmin() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.argmin", false]], "argmin() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.argmin", false]], "argmink() (arkouda.pdarray method)": [[24, "arkouda.pdarray.argmink", false], [24, "id1006", false], [24, "id1077", false], [24, "id1148", false], [24, "id1219", false], [24, "id935", false], [92, "arkouda.pdarray.argmink", false]], "argmink() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.argmink", false]], "argmink() (in module arkouda)": [[24, "arkouda.argmink", false], [87, "arkouda.argmink", false]], "argmink() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.argmink", false]], "argsort() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.argsort", false]], "argsort() (arkouda.categorical method)": [[24, "arkouda.Categorical.argsort", false], [24, "id18", false], [24, "id76", false]], "argsort() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.argsort", false]], "argsort() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.argsort", false], [24, "id128", false]], "argsort() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.argsort", false]], "argsort() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.argsort", false]], "argsort() (arkouda.index method)": [[24, "arkouda.Index.argsort", false]], "argsort() (arkouda.index.index method)": [[25, "arkouda.index.Index.argsort", false]], "argsort() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.argsort", false]], "argsort() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.argsort", false]], "argsort() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.argsort", false]], "argsort() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.argsort", false]], "argsort() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.argsort", false]], "argsort() (arkouda.str_ method)": [[24, "arkouda.str_.argsort", false], [24, "id1293", false]], "argsort() (in module arkouda)": [[24, "arkouda.argsort", false], [24, "id839", false], [24, "id840", false], [86, "arkouda.argsort", false]], "argsort() (in module arkouda.array_api.sorting_functions)": [[14, "arkouda.array_api.sorting_functions.argsort", false]], "argsort() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.argsort", false]], "argsort() (in module arkouda.index)": [[85, "arkouda.Index.argsort", false]], "argsort() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.argsort", false]], "argsort() (in module arkouda.sorting)": [[50, "arkouda.sorting.argsort", false]], "arkouda": [[24, "module-arkouda", false]], "arkouda.accessor": [[2, "module-arkouda.accessor", false]], "arkouda.alignment": [[3, "module-arkouda.alignment", false]], "arkouda.array_api": [[8, "module-arkouda.array_api", false]], "arkouda.array_api.array_object": [[4, "module-arkouda.array_api.array_object", false]], "arkouda.array_api.creation_functions": [[5, "module-arkouda.array_api.creation_functions", false]], "arkouda.array_api.data_type_functions": [[6, "module-arkouda.array_api.data_type_functions", false]], "arkouda.array_api.elementwise_functions": [[7, "module-arkouda.array_api.elementwise_functions", false]], "arkouda.array_api.indexing_functions": [[9, "module-arkouda.array_api.indexing_functions", false]], "arkouda.array_api.linalg": [[10, "module-arkouda.array_api.linalg", false]], "arkouda.array_api.manipulation_functions": [[11, "module-arkouda.array_api.manipulation_functions", false]], "arkouda.array_api.searching_functions": [[12, "module-arkouda.array_api.searching_functions", false]], "arkouda.array_api.set_functions": [[13, "module-arkouda.array_api.set_functions", false]], "arkouda.array_api.sorting_functions": [[14, "module-arkouda.array_api.sorting_functions", false]], "arkouda.array_api.statistical_functions": [[15, "module-arkouda.array_api.statistical_functions", false]], "arkouda.array_api.utility_functions": [[16, "module-arkouda.array_api.utility_functions", false]], "arkouda.categorical": [[17, "module-arkouda.categorical", false]], "arkouda.client": [[18, "module-arkouda.client", false]], "arkouda.client_dtypes": [[19, "module-arkouda.client_dtypes", false]], "arkouda.dataframe": [[20, "module-arkouda.dataframe", false]], "arkouda.dtypes": [[21, "module-arkouda.dtypes", false]], "arkouda.groupbyclass": [[22, "module-arkouda.groupbyclass", false]], "arkouda.history": [[23, "module-arkouda.history", false]], "arkouda.index": [[25, "module-arkouda.index", false]], "arkouda.infoclass": [[26, "module-arkouda.infoclass", false]], "arkouda.io": [[27, "module-arkouda.io", false]], "arkouda.io_util": [[28, "module-arkouda.io_util", false]], "arkouda.join": [[29, "module-arkouda.join", false]], "arkouda.logger": [[30, "module-arkouda.logger", false]], "arkouda.match": [[31, "module-arkouda.match", false]], "arkouda.matcher": [[32, "module-arkouda.matcher", false]], "arkouda.numeric": [[33, "module-arkouda.numeric", false]], "arkouda.numpy": [[35, "module-arkouda.numpy", false]], "arkouda.numpy.dtypes": [[34, "module-arkouda.numpy.dtypes", false]], "arkouda.numpy.random": [[36, "module-arkouda.numpy.random", false]], "arkouda.pdarrayclass": [[37, "module-arkouda.pdarrayclass", false]], "arkouda.pdarraycreation": [[38, "module-arkouda.pdarraycreation", false]], "arkouda.pdarraymanipulation": [[39, "module-arkouda.pdarraymanipulation", false]], "arkouda.pdarraysetops": [[40, "module-arkouda.pdarraysetops", false]], "arkouda.plotting": [[41, "module-arkouda.plotting", false]], "arkouda.random": [[42, "module-arkouda.random", false]], "arkouda.row": [[43, "module-arkouda.row", false]], "arkouda.scipy": [[44, "module-arkouda.scipy", false]], "arkouda.scipy.special": [[45, "module-arkouda.scipy.special", false]], "arkouda.scipy.stats": [[46, "module-arkouda.scipy.stats", false]], "arkouda.security": [[47, "module-arkouda.security", false]], "arkouda.segarray": [[48, "module-arkouda.segarray", false]], "arkouda.series": [[49, "module-arkouda.series", false]], "arkouda.sorting": [[50, "module-arkouda.sorting", false]], "arkouda.sparrayclass": [[51, "module-arkouda.sparrayclass", false]], "arkouda.sparsematrix": [[52, "module-arkouda.sparsematrix", false]], "arkouda.strings": [[53, "module-arkouda.strings", false]], "arkouda.testing": [[54, "module-arkouda.testing", false]], "arkouda.timeclass": [[55, "module-arkouda.timeclass", false]], "arkouda.util": [[56, "module-arkouda.util", false]], "arkouda_supported_dtypes (class in arkouda)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES", false]], "arkouda_supported_dtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES", false]], "arkouda_supported_dtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES", false]], "arkouda_supported_dtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES", false]], "arkouda_supported_floats (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_FLOATS", false]], "arkouda_supported_floats (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_FLOATS", false]], "arkouda_supported_ints (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_INTS", false]], "arkouda_supported_ints (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_INTS", false]], "arkouda_supported_numbers (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_NUMBERS", false]], "arkouda_supported_numbers (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_NUMBERS", false]], "array (class in arkouda.array_api)": [[8, "arkouda.array_api.Array", false]], "array (class in arkouda.array_api.array_object)": [[4, "arkouda.array_api.array_object.Array", false]], "array() (in module arkouda)": [[24, "arkouda.array", false], [24, "id841", false], [24, "id842", false], [24, "id843", false], [84, "arkouda.array", false]], "array() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.array", false]], "array_equal() (in module arkouda)": [[24, "arkouda.array_equal", false]], "array_equal() (in module arkouda.numpy)": [[35, "arkouda.numpy.array_equal", false]], "as_index (arkouda.dataframe.dataframegroupby attribute)": [[20, "arkouda.dataframe.DataFrameGroupBy.as_index", false]], "as_index (arkouda.dataframegroupby attribute)": [[24, "arkouda.DataFrameGroupBy.as_index", false]], "as_integer_ratio() (arkouda.akfloat64 method)": [[24, "arkouda.akfloat64.as_integer_ratio", false], [24, "id822", false]], "as_integer_ratio() (arkouda.double method)": [[24, "arkouda.double.as_integer_ratio", false]], "as_integer_ratio() (arkouda.dtypes.float16 method)": [[21, "arkouda.dtypes.float16.as_integer_ratio", false]], "as_integer_ratio() (arkouda.dtypes.float32 method)": [[21, "arkouda.dtypes.float32.as_integer_ratio", false]], "as_integer_ratio() (arkouda.dtypes.float64 method)": [[21, "arkouda.dtypes.float64.as_integer_ratio", false]], "as_integer_ratio() (arkouda.float16 method)": [[24, "arkouda.float16.as_integer_ratio", false]], "as_integer_ratio() (arkouda.float32 method)": [[24, "arkouda.float32.as_integer_ratio", false]], "as_integer_ratio() (arkouda.float64 method)": [[24, "arkouda.float64.as_integer_ratio", false]], "as_integer_ratio() (arkouda.float_ method)": [[24, "arkouda.float_.as_integer_ratio", false]], "as_integer_ratio() (arkouda.half method)": [[24, "arkouda.half.as_integer_ratio", false]], "as_integer_ratio() (arkouda.longdouble method)": [[24, "arkouda.longdouble.as_integer_ratio", false]], "as_integer_ratio() (arkouda.longfloat method)": [[24, "arkouda.longfloat.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.double method)": [[35, "arkouda.numpy.double.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.dtypes.float16 method)": [[34, "arkouda.numpy.dtypes.float16.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.dtypes.float32 method)": [[34, "arkouda.numpy.dtypes.float32.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.dtypes.float64 method)": [[34, "arkouda.numpy.dtypes.float64.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.float16 method)": [[35, "arkouda.numpy.float16.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.float32 method)": [[35, "arkouda.numpy.float32.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.float64 method)": [[35, "arkouda.numpy.float64.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.float_ method)": [[35, "arkouda.numpy.float_.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.half method)": [[35, "arkouda.numpy.half.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.longdouble method)": [[35, "arkouda.numpy.longdouble.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.longfloat method)": [[35, "arkouda.numpy.longfloat.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.single method)": [[35, "arkouda.numpy.single.as_integer_ratio", false]], "as_integer_ratio() (arkouda.single method)": [[24, "arkouda.single.as_integer_ratio", false]], "asarray() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.asarray", false]], "asin() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.asin", false]], "asinh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.asinh", false]], "assert_almost_equal() (in module arkouda)": [[24, "arkouda.assert_almost_equal", false]], "assert_almost_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_almost_equal", false]], "assert_almost_equivalent() (in module arkouda)": [[24, "arkouda.assert_almost_equivalent", false]], "assert_almost_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_almost_equivalent", false]], "assert_arkouda_array_equal() (in module arkouda)": [[24, "arkouda.assert_arkouda_array_equal", false]], "assert_arkouda_array_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_array_equal", false]], "assert_arkouda_array_equivalent() (in module arkouda)": [[24, "arkouda.assert_arkouda_array_equivalent", false]], "assert_arkouda_array_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_array_equivalent", false]], "assert_arkouda_pdarray_equal() (in module arkouda)": [[24, "arkouda.assert_arkouda_pdarray_equal", false]], "assert_arkouda_pdarray_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_pdarray_equal", false]], "assert_arkouda_segarray_equal() (in module arkouda)": [[24, "arkouda.assert_arkouda_segarray_equal", false]], "assert_arkouda_segarray_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_segarray_equal", false]], "assert_arkouda_strings_equal() (in module arkouda)": [[24, "arkouda.assert_arkouda_strings_equal", false]], "assert_arkouda_strings_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_strings_equal", false]], "assert_attr_equal() (in module arkouda)": [[24, "arkouda.assert_attr_equal", false]], "assert_attr_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_attr_equal", false]], "assert_categorical_equal() (in module arkouda)": [[24, "arkouda.assert_categorical_equal", false]], "assert_categorical_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_categorical_equal", false]], "assert_class_equal() (in module arkouda)": [[24, "arkouda.assert_class_equal", false]], "assert_class_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_class_equal", false]], "assert_contains_all() (in module arkouda)": [[24, "arkouda.assert_contains_all", false]], "assert_contains_all() (in module arkouda.testing)": [[54, "arkouda.testing.assert_contains_all", false]], "assert_copy() (in module arkouda)": [[24, "arkouda.assert_copy", false]], "assert_copy() (in module arkouda.testing)": [[54, "arkouda.testing.assert_copy", false]], "assert_dict_equal() (in module arkouda)": [[24, "arkouda.assert_dict_equal", false]], "assert_dict_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_dict_equal", false]], "assert_equal() (in module arkouda)": [[24, "arkouda.assert_equal", false]], "assert_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_equal", false]], "assert_equivalent() (in module arkouda)": [[24, "arkouda.assert_equivalent", false]], "assert_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_equivalent", false]], "assert_frame_equal() (in module arkouda)": [[24, "arkouda.assert_frame_equal", false]], "assert_frame_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_frame_equal", false]], "assert_frame_equivalent() (in module arkouda)": [[24, "arkouda.assert_frame_equivalent", false]], "assert_frame_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_frame_equivalent", false]], "assert_index_equal() (in module arkouda)": [[24, "arkouda.assert_index_equal", false]], "assert_index_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_index_equal", false]], "assert_index_equivalent() (in module arkouda)": [[24, "arkouda.assert_index_equivalent", false]], "assert_index_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_index_equivalent", false]], "assert_is_sorted() (in module arkouda)": [[24, "arkouda.assert_is_sorted", false]], "assert_is_sorted() (in module arkouda.testing)": [[54, "arkouda.testing.assert_is_sorted", false]], "assert_series_equal() (in module arkouda)": [[24, "arkouda.assert_series_equal", false]], "assert_series_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_series_equal", false]], "assert_series_equivalent() (in module arkouda)": [[24, "arkouda.assert_series_equivalent", false]], "assert_series_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_series_equivalent", false]], "assign() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.assign", false], [24, "id129", false]], "assign() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.assign", false]], "astype() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.astype", false]], "astype() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.astype", false]], "astype() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.astype", false]], "astype() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.astype", false]], "astype() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.astype", false]], "astype() (arkouda.pdarray method)": [[24, "arkouda.pdarray.astype", false], [24, "id1007", false], [24, "id1078", false], [24, "id1149", false], [24, "id1220", false], [24, "id936", false]], "astype() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.astype", false]], "astype() (arkouda.str_ method)": [[24, "arkouda.str_.astype", false], [24, "id1294", false]], "astype() (arkouda.strings method)": [[24, "arkouda.Strings.astype", false], [24, "id502", false], [24, "id578", false], [24, "id654", false], [24, "id730", false]], "astype() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.astype", false]], "astype() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.astype", false]], "at (arkouda.series property)": [[24, "arkouda.Series.at", false]], "at (arkouda.series.series property)": [[49, "arkouda.series.Series.at", false]], "atan() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.atan", false]], "atan2() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.atan2", false]], "atanh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.atanh", false]], "attach() (arkouda.categorical static method)": [[24, "arkouda.Categorical.attach", false], [24, "id19", false], [24, "id77", false]], "attach() (arkouda.categorical.categorical static method)": [[17, "arkouda.categorical.Categorical.attach", false]], "attach() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.attach", false], [24, "id130", false]], "attach() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.attach", false]], "attach() (arkouda.groupby method)": [[24, "arkouda.GroupBy.attach", false], [24, "id263", false], [24, "id310", false], [24, "id357", false], [24, "id404", false], [24, "id451", false]], "attach() (arkouda.groupby static method)": [[91, "arkouda.GroupBy.attach", false]], "attach() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.attach", false]], "attach() (arkouda.pdarray static method)": [[24, "arkouda.pdarray.attach", false], [24, "id1008", false], [24, "id1079", false], [24, "id1150", false], [24, "id1221", false], [24, "id937", false]], "attach() (arkouda.pdarrayclass.pdarray static method)": [[37, "arkouda.pdarrayclass.pdarray.attach", false]], "attach() (arkouda.segarray class method)": [[24, "arkouda.SegArray.attach", false]], "attach() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.attach", false]], "attach() (arkouda.series method)": [[24, "arkouda.Series.attach", false]], "attach() (arkouda.series.series method)": [[49, "arkouda.series.Series.attach", false]], "attach() (arkouda.strings static method)": [[24, "arkouda.Strings.attach", false], [24, "id503", false], [24, "id579", false], [24, "id655", false], [24, "id731", false]], "attach() (arkouda.strings.strings static method)": [[53, "arkouda.strings.Strings.attach", false]], "attach() (in module arkouda)": [[24, "arkouda.attach", false]], "attach() (in module arkouda.util)": [[56, "arkouda.util.attach", false]], "attach_all() (in module arkouda)": [[24, "arkouda.attach_all", false]], "attach_all() (in module arkouda.util)": [[56, "arkouda.util.attach_all", false]], "attach_pdarray() (in module arkouda)": [[24, "arkouda.attach_pdarray", false]], "attach_pdarray() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.attach_pdarray", false]], "b() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.b", false]], "badvalue() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.badvalue", false]], "base() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.base", false]], "base() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.base", false]], "base() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.base", false]], "base() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.base", false]], "base() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.base", false]], "base() (arkouda.str_ method)": [[24, "arkouda.str_.base", false], [24, "id1295", false]], "base_repr() (in module arkouda)": [[24, "arkouda.base_repr", false]], "base_repr() (in module arkouda.numpy)": [[35, "arkouda.numpy.base_repr", false]], "bigint (class in arkouda)": [[24, "arkouda.bigint", false], [24, "id844", false]], "bigint (class in arkouda.dtypes)": [[21, "arkouda.dtypes.bigint", false]], "bigint (class in arkouda.numpy)": [[35, "arkouda.numpy.bigint", false]], "bigint (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.bigint", false]], "bigint() (arkouda.dtype method)": [[24, "arkouda.DType.BIGINT", false]], "bigint() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.BIGINT", false]], "bigint() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.BIGINT", false]], "bigint() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.BIGINT", false]], "bigint_from_uint_arrays() (in module arkouda)": [[24, "arkouda.bigint_from_uint_arrays", false]], "bigint_from_uint_arrays() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.bigint_from_uint_arrays", false]], "bigint_to_uint_arrays() (arkouda.pdarray method)": [[24, "arkouda.pdarray.bigint_to_uint_arrays", false], [24, "id1009", false], [24, "id1080", false], [24, "id1151", false], [24, "id1222", false], [24, "id938", false]], "bigint_to_uint_arrays() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.bigint_to_uint_arrays", false]], "binary_repr() (in module arkouda)": [[24, "arkouda.binary_repr", false]], "binary_repr() (in module arkouda.numpy)": [[35, "arkouda.numpy.binary_repr", false]], "binops (arkouda.categorical attribute)": [[24, "arkouda.Categorical.BinOps", false], [24, "id15", false], [24, "id73", false]], "binops (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.BinOps", false]], "binops (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.BinOps", false], [24, "id1070", false], [24, "id1141", false], [24, "id1212", false], [24, "id928", false], [24, "id999", false]], "binops (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.BinOps", false]], "binops (arkouda.strings attribute)": [[24, "arkouda.Strings.BinOps", false], [24, "id501", false], [24, "id577", false], [24, "id653", false], [24, "id729", false]], "binops (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.BinOps", false]], "bit_count() (arkouda.akint64 method)": [[24, "arkouda.akint64.bit_count", false], [24, "id827", false], [24, "id829", false]], "bit_count() (arkouda.akuint64 method)": [[24, "arkouda.akuint64.bit_count", false], [24, "id831", false], [24, "id833", false]], "bit_count() (arkouda.bittype method)": [[24, "arkouda.bitType.bit_count", false], [24, "id853", false]], "bit_count() (arkouda.byte method)": [[24, "arkouda.byte.bit_count", false]], "bit_count() (arkouda.dtypes.bittype method)": [[21, "arkouda.dtypes.bitType.bit_count", false]], "bit_count() (arkouda.dtypes.int16 method)": [[21, "arkouda.dtypes.int16.bit_count", false]], "bit_count() (arkouda.dtypes.int32 method)": [[21, "arkouda.dtypes.int32.bit_count", false]], "bit_count() (arkouda.dtypes.int64 method)": [[21, "arkouda.dtypes.int64.bit_count", false]], "bit_count() (arkouda.dtypes.int8 method)": [[21, "arkouda.dtypes.int8.bit_count", false]], "bit_count() (arkouda.dtypes.uint16 method)": [[21, "arkouda.dtypes.uint16.bit_count", false]], "bit_count() (arkouda.dtypes.uint32 method)": [[21, "arkouda.dtypes.uint32.bit_count", false]], "bit_count() (arkouda.dtypes.uint64 method)": [[21, "arkouda.dtypes.uint64.bit_count", false]], "bit_count() (arkouda.dtypes.uint8 method)": [[21, "arkouda.dtypes.uint8.bit_count", false]], "bit_count() (arkouda.int16 method)": [[24, "arkouda.int16.bit_count", false]], "bit_count() (arkouda.int32 method)": [[24, "arkouda.int32.bit_count", false]], "bit_count() (arkouda.int64 method)": [[24, "arkouda.int64.bit_count", false], [24, "id884", false]], "bit_count() (arkouda.int8 method)": [[24, "arkouda.int8.bit_count", false]], "bit_count() (arkouda.int_ method)": [[24, "arkouda.int_.bit_count", false]], "bit_count() (arkouda.intc method)": [[24, "arkouda.intc.bit_count", false]], "bit_count() (arkouda.intp method)": [[24, "arkouda.intp.bit_count", false]], "bit_count() (arkouda.longlong method)": [[24, "arkouda.longlong.bit_count", false]], "bit_count() (arkouda.numpy.bittype method)": [[35, "arkouda.numpy.bitType.bit_count", false]], "bit_count() (arkouda.numpy.byte method)": [[35, "arkouda.numpy.byte.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.bittype method)": [[34, "arkouda.numpy.dtypes.bitType.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.int16 method)": [[34, "arkouda.numpy.dtypes.int16.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.int32 method)": [[34, "arkouda.numpy.dtypes.int32.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.int64 method)": [[34, "arkouda.numpy.dtypes.int64.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.int8 method)": [[34, "arkouda.numpy.dtypes.int8.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.uint16 method)": [[34, "arkouda.numpy.dtypes.uint16.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.uint32 method)": [[34, "arkouda.numpy.dtypes.uint32.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.uint64 method)": [[34, "arkouda.numpy.dtypes.uint64.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.uint8 method)": [[34, "arkouda.numpy.dtypes.uint8.bit_count", false]], "bit_count() (arkouda.numpy.int16 method)": [[35, "arkouda.numpy.int16.bit_count", false]], "bit_count() (arkouda.numpy.int32 method)": [[35, "arkouda.numpy.int32.bit_count", false]], "bit_count() (arkouda.numpy.int64 method)": [[35, "arkouda.numpy.int64.bit_count", false]], "bit_count() (arkouda.numpy.int8 method)": [[35, "arkouda.numpy.int8.bit_count", false]], "bit_count() (arkouda.numpy.int_ method)": [[35, "arkouda.numpy.int_.bit_count", false]], "bit_count() (arkouda.numpy.intc method)": [[35, "arkouda.numpy.intc.bit_count", false]], "bit_count() (arkouda.numpy.intp method)": [[35, "arkouda.numpy.intp.bit_count", false]], "bit_count() (arkouda.numpy.longlong method)": [[35, "arkouda.numpy.longlong.bit_count", false]], "bit_count() (arkouda.numpy.short method)": [[35, "arkouda.numpy.short.bit_count", false]], "bit_count() (arkouda.numpy.ubyte method)": [[35, "arkouda.numpy.ubyte.bit_count", false]], "bit_count() (arkouda.numpy.uint method)": [[35, "arkouda.numpy.uint.bit_count", false]], "bit_count() (arkouda.numpy.uint16 method)": [[35, "arkouda.numpy.uint16.bit_count", false]], "bit_count() (arkouda.numpy.uint32 method)": [[35, "arkouda.numpy.uint32.bit_count", false]], "bit_count() (arkouda.numpy.uint64 method)": [[35, "arkouda.numpy.uint64.bit_count", false]], "bit_count() (arkouda.numpy.uint8 method)": [[35, "arkouda.numpy.uint8.bit_count", false]], "bit_count() (arkouda.numpy.uintc method)": [[35, "arkouda.numpy.uintc.bit_count", false]], "bit_count() (arkouda.numpy.uintp method)": [[35, "arkouda.numpy.uintp.bit_count", false]], "bit_count() (arkouda.numpy.ulonglong method)": [[35, "arkouda.numpy.ulonglong.bit_count", false]], "bit_count() (arkouda.numpy.ushort method)": [[35, "arkouda.numpy.ushort.bit_count", false]], "bit_count() (arkouda.short method)": [[24, "arkouda.short.bit_count", false]], "bit_count() (arkouda.ubyte method)": [[24, "arkouda.ubyte.bit_count", false]], "bit_count() (arkouda.uint method)": [[24, "arkouda.uint.bit_count", false]], "bit_count() (arkouda.uint16 method)": [[24, "arkouda.uint16.bit_count", false]], "bit_count() (arkouda.uint32 method)": [[24, "arkouda.uint32.bit_count", false]], "bit_count() (arkouda.uint64 method)": [[24, "arkouda.uint64.bit_count", false]], "bit_count() (arkouda.uint8 method)": [[24, "arkouda.uint8.bit_count", false]], "bit_count() (arkouda.uintc method)": [[24, "arkouda.uintc.bit_count", false]], "bit_count() (arkouda.uintp method)": [[24, "arkouda.uintp.bit_count", false]], "bit_count() (arkouda.ulonglong method)": [[24, "arkouda.ulonglong.bit_count", false]], "bit_count() (arkouda.ushort method)": [[24, "arkouda.ushort.bit_count", false]], "bits (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.bits", false]], "bits (arkouda.array_api.data_type_functions.iinfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.iinfo_object.bits", false]], "bits (arkouda.finfo attribute)": [[24, "arkouda.finfo.bits", false]], "bits (arkouda.iinfo attribute)": [[24, "arkouda.iinfo.bits", false]], "bits (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.bits", false]], "bits (arkouda.numpy.iinfo attribute)": [[35, "arkouda.numpy.iinfo.bits", false]], "bittype (class in arkouda)": [[24, "arkouda.bitType", false], [24, "id852", false]], "bittype (class in arkouda.dtypes)": [[21, "arkouda.dtypes.bitType", false]], "bittype (class in arkouda.numpy)": [[35, "arkouda.numpy.bitType", false]], "bittype (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.bitType", false]], "bitvector (class in arkouda)": [[24, "arkouda.BitVector", false]], "bitvector (class in arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.BitVector", false]], "bitvectorizer() (in module arkouda)": [[24, "arkouda.BitVectorizer", false]], "bitvectorizer() (in module arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.BitVectorizer", false]], "bitwise_and() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_and", false]], "bitwise_invert() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_invert", false]], "bitwise_left_shift() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_left_shift", false]], "bitwise_or() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_or", false]], "bitwise_right_shift() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_right_shift", false]], "bitwise_xor() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_xor", false]], "bool() (arkouda.dtype method)": [[24, "arkouda.DType.BOOL", false]], "bool() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.BOOL", false]], "bool() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.BOOL", false]], "bool() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.BOOL", false]], "bool_ (class in arkouda)": [[24, "arkouda.bool_", false]], "bool_ (class in arkouda.dtypes)": [[21, "arkouda.dtypes.bool_", false]], "bool_ (class in arkouda.numpy)": [[35, "arkouda.numpy.bool_", false]], "bool_ (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.bool_", false]], "bool_scalars (class in arkouda)": [[24, "arkouda.bool_scalars", false]], "bool_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.bool_scalars", false]], "bool_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.bool_scalars", false]], "bool_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.bool_scalars", false]], "booldtype (class in arkouda)": [[24, "arkouda.BoolDType", false]], "booldtype (class in arkouda.numpy)": [[35, "arkouda.numpy.BoolDType", false]], "broadcast() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.broadcast", false]], "broadcast() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.broadcast", false]], "broadcast() (arkouda.groupby method)": [[24, "arkouda.GroupBy.broadcast", false], [24, "id264", false], [24, "id311", false], [24, "id358", false], [24, "id405", false], [24, "id452", false], [91, "arkouda.GroupBy.broadcast", false]], "broadcast() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.broadcast", false]], "broadcast() (in module arkouda)": [[24, "arkouda.broadcast", false], [24, "id854", false], [24, "id855", false], [24, "id856", false]], "broadcast() (in module arkouda.groupbyclass)": [[22, "arkouda.groupbyclass.broadcast", false]], "broadcast_arrays() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.broadcast_arrays", false]], "broadcast_dims() (in module arkouda)": [[24, "arkouda.broadcast_dims", false]], "broadcast_dims() (in module arkouda.util)": [[56, "arkouda.util.broadcast_dims", false]], "broadcast_to() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.broadcast_to", false]], "broadcast_to_shape() (in module arkouda)": [[24, "arkouda.broadcast_to_shape", false]], "broadcast_to_shape() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.broadcast_to_shape", false]], "build_from_components() (arkouda.groupby method)": [[24, "arkouda.GroupBy.build_from_components", false], [24, "id265", false], [24, "id312", false], [24, "id359", false], [24, "id406", false], [24, "id453", false]], "build_from_components() (arkouda.groupby static method)": [[91, "arkouda.GroupBy.build_from_components", false]], "build_from_components() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.build_from_components", false]], "byte (class in arkouda)": [[24, "arkouda.byte", false]], "byte (class in arkouda.numpy)": [[35, "arkouda.numpy.byte", false]], "bytedtype (class in arkouda)": [[24, "arkouda.ByteDType", false]], "bytedtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ByteDType", false]], "bytes_ (class in arkouda)": [[24, "arkouda.bytes_", false]], "bytes_ (class in arkouda.numpy)": [[35, "arkouda.numpy.bytes_", false]], "bytesdtype (class in arkouda)": [[24, "arkouda.BytesDType", false]], "bytesdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.BytesDType", false]], "byteswap() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.byteswap", false]], "byteswap() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.byteswap", false]], "byteswap() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.byteswap", false]], "byteswap() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.byteswap", false]], "byteswap() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.byteswap", false]], "byteswap() (arkouda.str_ method)": [[24, "arkouda.str_.byteswap", false], [24, "id1296", false]], "cached_regex_patterns() (arkouda.strings method)": [[24, "arkouda.Strings.cached_regex_patterns", false], [24, "id504", false], [24, "id580", false], [24, "id656", false], [24, "id732", false]], "cached_regex_patterns() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.cached_regex_patterns", false]], "cachedaccessor (class in arkouda)": [[24, "arkouda.CachedAccessor", false]], "cachedaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.CachedAccessor", false]], "can_cast() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.can_cast", false]], "capitalize() (arkouda.strings method)": [[24, "arkouda.Strings.capitalize", false], [24, "id505", false], [24, "id581", false], [24, "id657", false], [24, "id733", false]], "capitalize() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.capitalize", false]], "cast() (in module arkouda)": [[24, "arkouda.cast", false], [24, "id857", false], [94, "arkouda.cast", false]], "cast() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.cast", false]], "cast() (in module arkouda.numpy)": [[35, "arkouda.numpy.cast", false]], "cast() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.cast", false]], "categorical (class in arkouda)": [[24, "arkouda.Categorical", false], [24, "id6", false], [24, "id64", false], [88, "arkouda.Categorical", false]], "categorical (class in arkouda.categorical)": [[17, "arkouda.categorical.Categorical", false]], "categories (arkouda.categorical attribute)": [[24, "arkouda.Categorical.categories", false], [24, "id65", false], [24, "id7", false], [88, "arkouda.Categorical.categories", false]], "categories (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.categories", false]], "cdouble (class in arkouda)": [[24, "arkouda.cdouble", false]], "cdouble (class in arkouda.numpy)": [[35, "arkouda.numpy.cdouble", false]], "ceil() (in module arkouda)": [[24, "arkouda.ceil", false]], "ceil() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.ceil", false]], "ceil() (in module arkouda.numpy)": [[35, "arkouda.numpy.ceil", false]], "cfloat (class in arkouda)": [[24, "arkouda.cfloat", false]], "cfloat (class in arkouda.numpy)": [[35, "arkouda.numpy.cfloat", false]], "character (class in arkouda)": [[24, "arkouda.character", false]], "character (class in arkouda.numpy)": [[35, "arkouda.numpy.character", false]], "chi2 (class in arkouda.scipy.stats)": [[46, "arkouda.scipy.stats.chi2", false]], "chisquare() (in module arkouda)": [[24, "arkouda.chisquare", false]], "chisquare() (in module arkouda.scipy)": [[44, "arkouda.scipy.chisquare", false]], "choice() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.choice", false]], "choice() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.choice", false]], "choice() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.choice", false]], "choose() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.choose", false]], "choose() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.choose", false]], "choose() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.choose", false]], "choose() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.choose", false]], "choose() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.choose", false]], "choose() (arkouda.str_ method)": [[24, "arkouda.str_.choose", false], [24, "id1297", false]], "chunk_info() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.chunk_info", false]], "chunk_info() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.chunk_info", false]], "clear() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.clear", false]], "clear() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.clear", false]], "clear() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.clear", false]], "clear() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.clear", false]], "clear() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.clear", false]], "clear() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.clear", false]], "clear() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.clear", false]], "clear() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.clear", false]], "clear() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.clear", false]], "clear() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.clear", false]], "clear() (arkouda.sctypes method)": [[24, "arkouda.sctypes.clear", false]], "clear() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.clear", false]], "clear() (in module arkouda)": [[24, "arkouda.clear", false]], "clear() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.clear", false]], "clip() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.clip", false]], "clip() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.clip", false]], "clip() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.clip", false]], "clip() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.clip", false]], "clip() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.clip", false]], "clip() (arkouda.str_ method)": [[24, "arkouda.str_.clip", false], [24, "id1298", false]], "clip() (in module arkouda)": [[24, "arkouda.clip", false]], "clip() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.clip", false]], "clip() (in module arkouda.numpy)": [[35, "arkouda.numpy.clip", false]], "clongdouble (class in arkouda)": [[24, "arkouda.clongdouble", false]], "clongdouble (class in arkouda.numpy)": [[35, "arkouda.numpy.clongdouble", false]], "clongdoubledtype (class in arkouda)": [[24, "arkouda.CLongDoubleDType", false]], "clongdoubledtype (class in arkouda.numpy)": [[35, "arkouda.numpy.CLongDoubleDType", false]], "clongfloat (class in arkouda)": [[24, "arkouda.clongfloat", false]], "clongfloat (class in arkouda.numpy)": [[35, "arkouda.numpy.clongfloat", false]], "clz() (arkouda.pdarray method)": [[24, "arkouda.pdarray.clz", false], [24, "id1010", false], [24, "id1081", false], [24, "id1152", false], [24, "id1223", false], [24, "id939", false]], "clz() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.clz", false]], "clz() (in module arkouda)": [[24, "arkouda.clz", false]], "clz() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.clz", false]], "coargsort() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.coargsort", false], [24, "id131", false]], "coargsort() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.coargsort", false]], "coargsort() (in module arkouda)": [[24, "arkouda.coargsort", false], [24, "id858", false], [24, "id859", false], [86, "arkouda.coargsort", false]], "coargsort() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.coargsort", false]], "coargsort() (in module arkouda.sorting)": [[50, "arkouda.sorting.coargsort", false]], "codes (arkouda.categorical attribute)": [[24, "arkouda.Categorical.codes", false], [24, "id66", false], [24, "id8", false], [88, "arkouda.Categorical.codes", false]], "codes (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.codes", false]], "columns (arkouda.dataframe property)": [[24, "arkouda.DataFrame.columns", false], [24, "id132", false]], "columns (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.columns", false]], "compiler_flag() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.compiler_flag", false]], "compiler_flag() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.compiler_flag", false]], "complex128 (class in arkouda)": [[24, "arkouda.complex128", false]], "complex128 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.complex128", false]], "complex128 (class in arkouda.numpy)": [[35, "arkouda.numpy.complex128", false]], "complex128 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.complex128", false]], "complex128() (arkouda.dtype method)": [[24, "arkouda.DType.COMPLEX128", false]], "complex128() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.COMPLEX128", false]], "complex128() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.COMPLEX128", false]], "complex128() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.COMPLEX128", false]], "complex128dtype (class in arkouda)": [[24, "arkouda.Complex128DType", false]], "complex128dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Complex128DType", false]], "complex64 (class in arkouda)": [[24, "arkouda.complex64", false]], "complex64 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.complex64", false]], "complex64 (class in arkouda.numpy)": [[35, "arkouda.numpy.complex64", false]], "complex64 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.complex64", false]], "complex64() (arkouda.dtype method)": [[24, "arkouda.DType.COMPLEX64", false]], "complex64() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.COMPLEX64", false]], "complex64() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.COMPLEX64", false]], "complex64() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.COMPLEX64", false]], "complex64dtype (class in arkouda)": [[24, "arkouda.Complex64DType", false]], "complex64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Complex64DType", false]], "components (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.components", false]], "components (arkouda.timedelta property)": [[24, "arkouda.Timedelta.components", false], [24, "id799", false]], "compress() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.compress", false]], "compress() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.compress", false]], "compress() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.compress", false]], "compress() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.compress", false]], "compress() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.compress", false]], "compress() (arkouda.str_ method)": [[24, "arkouda.str_.compress", false], [24, "id1299", false]], "compute_join_size() (in module arkouda)": [[24, "arkouda.compute_join_size", false]], "compute_join_size() (in module arkouda.join)": [[29, "arkouda.join.compute_join_size", false]], "concat() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.concat", false], [24, "id133", false]], "concat() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.concat", false]], "concat() (arkouda.index method)": [[24, "arkouda.Index.concat", false]], "concat() (arkouda.index.index method)": [[25, "arkouda.index.Index.concat", false]], "concat() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.concat", false]], "concat() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.concat", false]], "concat() (arkouda.segarray class method)": [[24, "arkouda.SegArray.concat", false]], "concat() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.concat", false]], "concat() (arkouda.series method)": [[24, "arkouda.Series.concat", false]], "concat() (arkouda.series.series method)": [[49, "arkouda.series.Series.concat", false]], "concat() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.concat", false]], "concat() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.concat", false]], "concat() (in module arkouda.index)": [[85, "arkouda.Index.concat", false]], "concat() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.concat", false]], "concatenate() (arkouda.categorical method)": [[24, "arkouda.Categorical.concatenate", false], [24, "id20", false], [24, "id78", false]], "concatenate() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.concatenate", false]], "concatenate() (in module arkouda)": [[24, "arkouda.concatenate", false], [24, "id860", false], [24, "id861", false], [89, "arkouda.concatenate", false]], "concatenate() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.concatenate", false]], "concatenate() (in module arkouda.util)": [[56, "arkouda.util.concatenate", false]], "conj() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.conj", false]], "conj() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.conj", false]], "conj() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.conj", false]], "conj() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.conj", false]], "conj() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.conj", false]], "conj() (arkouda.str_ method)": [[24, "arkouda.str_.conj", false], [24, "id1300", false]], "conj() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.conj", false]], "conjugate() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.conjugate", false]], "conjugate() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.conjugate", false]], "conjugate() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.conjugate", false]], "conjugate() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.conjugate", false]], "conjugate() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.conjugate", false]], "conjugate() (arkouda.str_ method)": [[24, "arkouda.str_.conjugate", false], [24, "id1301", false]], "connect() (in module arkouda)": [[99, "arkouda.connect", false]], "connect() (in module arkouda.client)": [[18, "arkouda.client.connect", false]], "conserves (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.conserves", false]], "conserves (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.conserves", false]], "contains() (arkouda.categorical method)": [[24, "arkouda.Categorical.contains", false], [24, "id21", false], [24, "id79", false], [88, "arkouda.Categorical.contains", false]], "contains() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.contains", false]], "contains() (arkouda.strings method)": [[24, "arkouda.Strings.contains", false], [24, "id506", false], [24, "id582", false], [24, "id658", false], [24, "id734", false], [100, "arkouda.Strings.contains", false]], "contains() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.contains", false]], "convert_bytes() (in module arkouda.util)": [[56, "arkouda.util.convert_bytes", false]], "convert_if_categorical() (in module arkouda)": [[24, "arkouda.convert_if_categorical", false]], "convert_if_categorical() (in module arkouda.util)": [[56, "arkouda.util.convert_if_categorical", false]], "copy() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.copy", false]], "copy() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.copy", false]], "copy() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.copy", false]], "copy() (arkouda.dtypes method)": [[24, "arkouda.DTypes.copy", false]], "copy() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.copy", false]], "copy() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.copy", false]], "copy() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.copy", false]], "copy() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.copy", false]], "copy() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.copy", false]], "copy() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.copy", false]], "copy() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.copy", false]], "copy() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.copy", false]], "copy() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.copy", false]], "copy() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.copy", false]], "copy() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.copy", false]], "copy() (arkouda.inttypes method)": [[24, "arkouda.intTypes.copy", false], [24, "id886", false], [24, "id895", false]], "copy() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.copy", false]], "copy() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.copy", false]], "copy() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.copy", false]], "copy() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.copy", false]], "copy() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.copy", false]], "copy() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.copy", false]], "copy() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.copy", false]], "copy() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.copy", false]], "copy() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.copy", false]], "copy() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.copy", false]], "copy() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.copy", false]], "copy() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.copy", false]], "copy() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.copy", false]], "copy() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.copy", false]], "copy() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.copy", false]], "copy() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.copy", false]], "copy() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.copy", false]], "copy() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.copy", false]], "copy() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.copy", false]], "copy() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.copy", false]], "copy() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.copy", false]], "copy() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.copy", false]], "copy() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.copy", false]], "copy() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.copy", false]], "copy() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.copy", false]], "copy() (arkouda.sctypes method)": [[24, "arkouda.sctypes.copy", false]], "copy() (arkouda.segarray method)": [[24, "arkouda.SegArray.copy", false]], "copy() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.copy", false]], "copy() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.copy", false]], "copy() (arkouda.str_ method)": [[24, "arkouda.str_.copy", false], [24, "id1302", false]], "copy() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.copy", false]], "corr() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.corr", false], [24, "id134", false]], "corr() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.corr", false]], "corr() (arkouda.pdarray method)": [[24, "arkouda.pdarray.corr", false], [24, "id1011", false], [24, "id1082", false], [24, "id1153", false], [24, "id1224", false], [24, "id940", false]], "corr() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.corr", false]], "corr() (in module arkouda)": [[24, "arkouda.corr", false]], "corr() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.corr", false]], "cos() (in module arkouda)": [[24, "arkouda.cos", false], [87, "arkouda.cos", false]], "cos() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.cos", false]], "cos() (in module arkouda.numpy)": [[35, "arkouda.numpy.cos", false]], "cosh() (in module arkouda)": [[24, "arkouda.cosh", false]], "cosh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.cosh", false]], "cosh() (in module arkouda.numpy)": [[35, "arkouda.numpy.cosh", false]], "count() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.count", false], [24, "id135", false]], "count() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.count", false]], "count() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.count", false]], "count() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.count", false]], "count() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.count", false]], "count() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.count", false]], "count() (arkouda.dtypes.arkouda_supported_floats method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_FLOATS.count", false]], "count() (arkouda.dtypes.arkouda_supported_ints method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_INTS.count", false]], "count() (arkouda.dtypes.arkouda_supported_numbers method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_NUMBERS.count", false]], "count() (arkouda.groupby method)": [[24, "arkouda.GroupBy.count", false], [24, "id266", false], [24, "id313", false], [24, "id360", false], [24, "id407", false], [24, "id454", false], [91, "arkouda.GroupBy.count", false]], "count() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.count", false]], "count() (arkouda.numpy.dtypes.arkouda_supported_floats method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_FLOATS.count", false]], "count() (arkouda.numpy.dtypes.arkouda_supported_ints method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_INTS.count", false]], "count() (arkouda.numpy.dtypes.arkouda_supported_numbers method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_NUMBERS.count", false]], "count() (arkouda.numpy.scalartype method)": [[35, "arkouda.numpy.ScalarType.count", false]], "count() (arkouda.scalartype method)": [[24, "arkouda.ScalarType.count", false]], "count_nonzero() (in module arkouda)": [[24, "arkouda.count_nonzero", false]], "count_nonzero() (in module arkouda.numpy)": [[35, "arkouda.numpy.count_nonzero", false]], "counts (arkouda.array_api.set_functions.uniqueallresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueAllResult.counts", false]], "counts (arkouda.array_api.set_functions.uniquecountsresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueCountsResult.counts", false]], "cov() (arkouda.pdarray method)": [[24, "arkouda.pdarray.cov", false], [24, "id1012", false], [24, "id1083", false], [24, "id1154", false], [24, "id1225", false], [24, "id941", false]], "cov() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.cov", false]], "cov() (in module arkouda)": [[24, "arkouda.cov", false]], "cov() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.cov", false]], "create_pdarray() (in module arkouda)": [[24, "arkouda.create_pdarray", false], [24, "id862", false], [24, "id863", false], [24, "id864", false], [24, "id865", false]], "create_sparray() (in module arkouda)": [[24, "arkouda.create_sparray", false]], "create_sparray() (in module arkouda.sparrayclass)": [[51, "arkouda.sparrayclass.create_sparray", false]], "critical (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.CRITICAL", false]], "critical (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.CRITICAL", false]], "csingle (class in arkouda)": [[24, "arkouda.csingle", false]], "csingle (class in arkouda.numpy)": [[35, "arkouda.numpy.csingle", false]], "ctz() (arkouda.pdarray method)": [[24, "arkouda.pdarray.ctz", false], [24, "id1013", false], [24, "id1084", false], [24, "id1155", false], [24, "id1226", false], [24, "id942", false]], "ctz() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.ctz", false]], "ctz() (in module arkouda)": [[24, "arkouda.ctz", false]], "ctz() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.ctz", false]], "cumprod() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.cumprod", false]], "cumprod() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.cumprod", false]], "cumprod() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.cumprod", false]], "cumprod() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.cumprod", false]], "cumprod() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.cumprod", false]], "cumprod() (arkouda.str_ method)": [[24, "arkouda.str_.cumprod", false], [24, "id1303", false]], "cumprod() (in module arkouda)": [[24, "arkouda.cumprod", false], [87, "arkouda.cumprod", false]], "cumprod() (in module arkouda.numpy)": [[35, "arkouda.numpy.cumprod", false]], "cumsum() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.cumsum", false]], "cumsum() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.cumsum", false]], "cumsum() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.cumsum", false]], "cumsum() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.cumsum", false]], "cumsum() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.cumsum", false]], "cumsum() (arkouda.str_ method)": [[24, "arkouda.str_.cumsum", false], [24, "id1304", false]], "cumsum() (in module arkouda)": [[24, "arkouda.cumsum", false], [24, "id866", false], [24, "id867", false], [87, "arkouda.cumsum", false]], "cumsum() (in module arkouda.numpy)": [[35, "arkouda.numpy.cumsum", false]], "cumulative_sum() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.cumulative_sum", false]], "data (arkouda.accessor.datetimeaccessor attribute)": [[2, "arkouda.accessor.DatetimeAccessor.data", false]], "data (arkouda.accessor.stringaccessor attribute)": [[2, "arkouda.accessor.StringAccessor.data", false]], "data (arkouda.datetimeaccessor attribute)": [[24, "arkouda.DatetimeAccessor.data", false]], "data (arkouda.stringaccessor attribute)": [[24, "arkouda.StringAccessor.data", false]], "data() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.data", false]], "data() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.data", false]], "data() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.data", false]], "data() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.data", false]], "data() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.data", false]], "data() (arkouda.str_ method)": [[24, "arkouda.str_.data", false], [24, "id1305", false]], "dataframe (class in arkouda)": [[24, "arkouda.DataFrame", false], [24, "id122", false], [90, "arkouda.DataFrame", false]], "dataframe (class in arkouda.dataframe)": [[20, "arkouda.dataframe.DataFrame", false]], "dataframegroupby (class in arkouda)": [[24, "arkouda.DataFrameGroupBy", false]], "dataframegroupby (class in arkouda.dataframe)": [[20, "arkouda.dataframe.DataFrameGroupBy", false]], "datasource (class in arkouda)": [[24, "arkouda.DataSource", false]], "datasource (class in arkouda.numpy)": [[35, "arkouda.numpy.DataSource", false]], "date (arkouda.datetime property)": [[24, "arkouda.Datetime.date", false], [24, "id179", false], [24, "id212", false]], "date (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.date", false]], "date_operators() (in module arkouda)": [[24, "arkouda.date_operators", false]], "date_operators() (in module arkouda.accessor)": [[2, "arkouda.accessor.date_operators", false]], "date_range() (in module arkouda)": [[24, "arkouda.date_range", false], [24, "id868", false]], "date_range() (in module arkouda.timeclass)": [[55, "arkouda.timeclass.date_range", false]], "datetime (class in arkouda)": [[24, "arkouda.Datetime", false], [24, "id178", false], [24, "id211", false]], "datetime (class in arkouda.timeclass)": [[55, "arkouda.timeclass.Datetime", false]], "datetime64 (class in arkouda)": [[24, "arkouda.datetime64", false]], "datetime64 (class in arkouda.numpy)": [[35, "arkouda.numpy.datetime64", false]], "datetime64dtype (class in arkouda)": [[24, "arkouda.DateTime64DType", false]], "datetime64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.DateTime64DType", false]], "datetimeaccessor (class in arkouda)": [[24, "arkouda.DatetimeAccessor", false]], "datetimeaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.DatetimeAccessor", false]], "day (arkouda.datetime property)": [[24, "arkouda.Datetime.day", false], [24, "id180", false], [24, "id213", false]], "day (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day", false]], "day_of_week (arkouda.datetime property)": [[24, "arkouda.Datetime.day_of_week", false], [24, "id181", false], [24, "id214", false]], "day_of_week (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day_of_week", false]], "day_of_year (arkouda.datetime property)": [[24, "arkouda.Datetime.day_of_year", false], [24, "id182", false], [24, "id215", false]], "day_of_year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day_of_year", false]], "dayofweek (arkouda.datetime property)": [[24, "arkouda.Datetime.dayofweek", false], [24, "id183", false], [24, "id216", false]], "dayofweek (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.dayofweek", false]], "dayofyear (arkouda.datetime property)": [[24, "arkouda.Datetime.dayofyear", false], [24, "id184", false], [24, "id217", false]], "dayofyear (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.dayofyear", false]], "days (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.days", false]], "days (arkouda.timedelta property)": [[24, "arkouda.Timedelta.days", false], [24, "id800", false]], "debug (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.DEBUG", false]], "debug (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.DEBUG", false]], "decode() (arkouda.strings method)": [[24, "arkouda.Strings.decode", false], [24, "id507", false], [24, "id583", false], [24, "id659", false], [24, "id735", false]], "decode() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.decode", false]], "default_rng() (in module arkouda.numpy.random)": [[36, "arkouda.numpy.random.default_rng", false]], "default_rng() (in module arkouda.random)": [[42, "arkouda.random.default_rng", false]], "deg2rad() (in module arkouda)": [[24, "arkouda.deg2rad", false]], "deg2rad() (in module arkouda.numpy)": [[35, "arkouda.numpy.deg2rad", false]], "delete() (in module arkouda)": [[24, "arkouda.delete", false]], "delete() (in module arkouda.pdarraymanipulation)": [[39, "arkouda.pdarraymanipulation.delete", false]], "delete_directory() (in module arkouda.io_util)": [[28, "arkouda.io_util.delete_directory", false]], "delimited_file_to_dict() (in module arkouda.io_util)": [[28, "arkouda.io_util.delimited_file_to_dict", false]], "denominator() (arkouda.integer method)": [[24, "arkouda.integer.denominator", false]], "denominator() (arkouda.numpy.integer method)": [[35, "arkouda.numpy.integer.denominator", false]], "deprecate() (in module arkouda)": [[24, "arkouda.deprecate", false]], "deprecate() (in module arkouda.numpy)": [[35, "arkouda.numpy.deprecate", false]], "deprecate_with_doc() (in module arkouda)": [[24, "arkouda.deprecate_with_doc", false]], "deprecate_with_doc() (in module arkouda.numpy)": [[35, "arkouda.numpy.deprecate_with_doc", false]], "device (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.device", false]], "device (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.device", false]], "df (arkouda.dataframe.dataframegroupby attribute)": [[20, "arkouda.dataframe.DataFrameGroupBy.df", false]], "df (arkouda.dataframegroupby attribute)": [[24, "arkouda.DataFrameGroupBy.df", false]], "diagonal() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.diagonal", false]], "diagonal() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.diagonal", false]], "diagonal() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.diagonal", false]], "diagonal() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.diagonal", false]], "diagonal() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.diagonal", false]], "diagonal() (arkouda.str_ method)": [[24, "arkouda.str_.diagonal", false], [24, "id1306", false]], "dict_to_delimited_file() (in module arkouda.io_util)": [[28, "arkouda.io_util.dict_to_delimited_file", false]], "diff() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.diff", false]], "diff() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.diff", false]], "diff() (arkouda.series method)": [[24, "arkouda.Series.diff", false]], "diff() (arkouda.series.series method)": [[49, "arkouda.series.Series.diff", false]], "diff() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.diff", false]], "diffaggregate (class in arkouda)": [[24, "arkouda.DiffAggregate", false]], "diffaggregate (class in arkouda.dataframe)": [[20, "arkouda.dataframe.DiffAggregate", false]], "difference() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.difference", false]], "difference() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.difference", false]], "difference() (arkouda.dtypes method)": [[24, "arkouda.DTypes.difference", false]], "difference() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.difference", false]], "difference() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.difference", false]], "difference() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.difference", false]], "difference() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.difference", false]], "difference() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.difference", false]], "difference() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.difference", false]], "difference() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.difference", false]], "difference() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.difference", false]], "difference() (arkouda.inttypes method)": [[24, "arkouda.intTypes.difference", false], [24, "id887", false], [24, "id896", false]], "difference() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.difference", false]], "difference() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.difference", false]], "difference() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.difference", false]], "difference() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.difference", false]], "difference() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.difference", false]], "difference() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.difference", false]], "difference() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.difference", false]], "difference() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.difference", false]], "difference() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.difference", false]], "difference() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.difference", false]], "difference() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.difference", false]], "difference() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.difference", false]], "difference() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.difference", false]], "difference() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.difference", false]], "disableverbose() (in module arkouda)": [[24, "arkouda.disableVerbose", false]], "disableverbose() (in module arkouda.logger)": [[30, "arkouda.logger.disableVerbose", false]], "disconnect() (in module arkouda.client)": [[18, "arkouda.client.disconnect", false]], "disp() (in module arkouda)": [[24, "arkouda.disp", false]], "disp() (in module arkouda.numpy)": [[35, "arkouda.numpy.disp", false]], "divide() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.divide", false]], "divmod() (in module arkouda)": [[24, "arkouda.divmod", false]], "divmod() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.divmod", false]], "dot() (in module arkouda)": [[24, "arkouda.dot", false]], "dot() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.dot", false]], "double (class in arkouda)": [[24, "arkouda.double", false]], "double (class in arkouda.numpy)": [[35, "arkouda.numpy.double", false]], "drop() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.drop", false], [24, "id136", false]], "drop() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.drop", false]], "drop() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.drop", false]], "drop_duplicates() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.drop_duplicates", false], [24, "id137", false]], "drop_duplicates() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.drop_duplicates", false]], "drop_duplicates() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.drop_duplicates", false]], "dropna (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.dropna", false], [24, "id253", false], [24, "id300", false], [24, "id347", false], [24, "id394", false], [24, "id441", false], [91, "arkouda.GroupBy.dropna", false]], "dropna (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.dropna", false]], "dropna() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.dropna", false], [24, "id138", false]], "dropna() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.dropna", false]], "dt() (arkouda.series method)": [[24, "arkouda.Series.dt", false]], "dt() (arkouda.series.series method)": [[49, "arkouda.series.Series.dt", false]], "dtype (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.dtype", false]], "dtype (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.dtype", false]], "dtype (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.dtype", false]], "dtype (arkouda.array_api.data_type_functions.iinfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.iinfo_object.dtype", false]], "dtype (arkouda.categorical attribute)": [[24, "arkouda.Categorical.dtype", false], [24, "id22", false], [24, "id80", false]], "dtype (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.dtype", false]], "dtype (arkouda.finfo attribute)": [[24, "arkouda.finfo.dtype", false]], "dtype (arkouda.format_parser attribute)": [[24, "arkouda.format_parser.dtype", false]], "dtype (arkouda.iinfo attribute)": [[24, "arkouda.iinfo.dtype", false]], "dtype (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.dtype", false]], "dtype (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.dtype", false]], "dtype (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.dtype", false]], "dtype (arkouda.numpy.format_parser attribute)": [[35, "arkouda.numpy.format_parser.dtype", false]], "dtype (arkouda.numpy.iinfo attribute)": [[35, "arkouda.numpy.iinfo.dtype", false]], "dtype (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.dtype", false], [24, "id1014", false], [24, "id1065", false], [24, "id1085", false], [24, "id1136", false], [24, "id1156", false], [24, "id1207", false], [24, "id1227", false], [24, "id913", false], [24, "id923", false], [24, "id943", false], [24, "id994", false], [94, "arkouda.pdarray.dtype", false]], "dtype (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.dtype", false], [37, "id0", false]], "dtype (arkouda.segarray attribute)": [[24, "arkouda.SegArray.dtype", false]], "dtype (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.dtype", false]], "dtype (arkouda.series property)": [[24, "arkouda.Series.dtype", false]], "dtype (arkouda.series.series property)": [[49, "arkouda.series.Series.dtype", false]], "dtype (arkouda.sparray attribute)": [[24, "arkouda.sparray.dtype", false], [24, "id1280", false]], "dtype (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.dtype", false], [51, "id0", false]], "dtype (arkouda.strings attribute)": [[24, "arkouda.Strings.dtype", false], [24, "id490", false], [24, "id499", false], [24, "id508", false], [24, "id575", false], [24, "id584", false], [24, "id651", false], [24, "id660", false], [24, "id727", false], [24, "id736", false]], "dtype (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.dtype", false], [53, "id0", false]], "dtype (class in arkouda)": [[24, "arkouda.DType", false]], "dtype (class in arkouda.dtypes)": [[21, "arkouda.dtypes.DType", false]], "dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.DType", false]], "dtype (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.DType", false]], "dtype() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.dtype", false]], "dtype() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.dtype", false]], "dtype() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.dtype", false]], "dtype() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.dtype", false]], "dtype() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.dtype", false]], "dtype() (arkouda.str_ method)": [[24, "arkouda.str_.dtype", false], [24, "id1307", false]], "dtype() (in module arkouda)": [[24, "arkouda.dtype", false]], "dtype() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.dtype", false]], "dtype() (in module arkouda.numpy)": [[35, "arkouda.numpy.dtype", false]], "dtype() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.dtype", false]], "dtypeobjects (class in arkouda)": [[24, "arkouda.DTypeObjects", false]], "dtypeobjects (class in arkouda.dtypes)": [[21, "arkouda.dtypes.DTypeObjects", false]], "dtypeobjects (class in arkouda.numpy)": [[35, "arkouda.numpy.DTypeObjects", false]], "dtypeobjects (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.DTypeObjects", false]], "dtypes (arkouda.dataframe property)": [[24, "arkouda.DataFrame.dtypes", false], [24, "id139", false]], "dtypes (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.dtypes", false]], "dtypes (class in arkouda)": [[24, "arkouda.DTypes", false]], "dtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.DTypes", false]], "dtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.DTypes", false]], "dtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.DTypes", false]], "dump() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.dump", false]], "dump() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.dump", false]], "dump() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.dump", false]], "dump() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.dump", false]], "dump() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.dump", false]], "dump() (arkouda.str_ method)": [[24, "arkouda.str_.dump", false], [24, "id1308", false]], "dumps() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.dumps", false]], "dumps() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.dumps", false]], "dumps() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.dumps", false]], "dumps() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.dumps", false]], "dumps() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.dumps", false]], "dumps() (arkouda.str_ method)": [[24, "arkouda.str_.dumps", false], [24, "id1309", false]], "e (in module arkouda)": [[24, "arkouda.e", false]], "e (in module arkouda.numpy)": [[35, "arkouda.numpy.e", false]], "empty (arkouda.dataframe property)": [[24, "arkouda.DataFrame.empty", false], [24, "id140", false]], "empty (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.empty", false]], "empty() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.empty", false]], "empty_like() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.empty_like", false]], "enableverbose() (in module arkouda)": [[24, "arkouda.enableVerbose", false]], "enableverbose() (in module arkouda.logger)": [[30, "arkouda.logger.enableVerbose", false]], "encode() (arkouda.strings method)": [[24, "arkouda.Strings.encode", false], [24, "id509", false], [24, "id585", false], [24, "id661", false], [24, "id737", false]], "encode() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.encode", false]], "end() (arkouda.match.match method)": [[31, "arkouda.match.Match.end", false], [100, "arkouda.match.Match.end", false]], "endswith() (arkouda.categorical method)": [[24, "arkouda.Categorical.endswith", false], [24, "id23", false], [24, "id81", false], [88, "arkouda.Categorical.endswith", false]], "endswith() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.endswith", false]], "endswith() (arkouda.strings method)": [[24, "arkouda.Strings.endswith", false], [24, "id510", false], [24, "id586", false], [24, "id662", false], [24, "id738", false], [100, "arkouda.Strings.endswith", false]], "endswith() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.endswith", false]], "enrich_inplace() (in module arkouda.util)": [[56, "arkouda.util.enrich_inplace", false]], "entry (arkouda.strings attribute)": [[24, "arkouda.Strings.entry", false], [24, "id491", false], [24, "id494", false], [24, "id511", false], [24, "id570", false], [24, "id587", false], [24, "id646", false], [24, "id663", false], [24, "id722", false], [24, "id739", false]], "entry (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.entry", false], [53, "id1", false]], "enum (class in arkouda.dtypes)": [[21, "arkouda.dtypes.Enum", false]], "enum (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.Enum", false]], "eps (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.eps", false]], "eps (arkouda.finfo attribute)": [[24, "arkouda.finfo.eps", false]], "eps (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.eps", false]], "epsneg (arkouda.finfo attribute)": [[24, "arkouda.finfo.epsneg", false]], "epsneg (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.epsneg", false]], "equal() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.equal", false]], "equal_levels() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.equal_levels", false]], "equal_levels() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.equal_levels", false]], "equals() (arkouda.categorical method)": [[24, "arkouda.Categorical.equals", false], [24, "id24", false], [24, "id82", false]], "equals() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.equals", false]], "equals() (arkouda.index method)": [[24, "arkouda.Index.equals", false]], "equals() (arkouda.index.index method)": [[25, "arkouda.index.Index.equals", false]], "equals() (arkouda.pdarray method)": [[24, "arkouda.pdarray.equals", false], [24, "id1015", false], [24, "id1086", false], [24, "id1157", false], [24, "id1228", false], [24, "id944", false]], "equals() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.equals", false]], "equals() (arkouda.strings method)": [[24, "arkouda.Strings.equals", false], [24, "id512", false], [24, "id588", false], [24, "id664", false], [24, "id740", false]], "equals() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.equals", false]], "error (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.ERROR", false]], "error (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.ERROR", false]], "errormode (class in arkouda)": [[24, "arkouda.ErrorMode", false]], "errormode (class in arkouda.numpy)": [[35, "arkouda.numpy.ErrorMode", false]], "euler_gamma (in module arkouda)": [[24, "arkouda.euler_gamma", false]], "euler_gamma (in module arkouda.numpy)": [[35, "arkouda.numpy.euler_gamma", false]], "exists() (arkouda.datasource method)": [[24, "arkouda.DataSource.exists", false]], "exists() (arkouda.numpy.datasource method)": [[35, "arkouda.numpy.DataSource.exists", false]], "exp() (in module arkouda)": [[24, "arkouda.exp", false], [87, "arkouda.exp", false]], "exp() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.exp", false]], "exp() (in module arkouda.numpy)": [[35, "arkouda.numpy.exp", false]], "expand() (in module arkouda.util)": [[56, "arkouda.util.expand", false]], "expand_dims() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.expand_dims", false]], "expm1() (in module arkouda)": [[24, "arkouda.expm1", false]], "expm1() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.expm1", false]], "expm1() (in module arkouda.numpy)": [[35, "arkouda.numpy.expm1", false]], "exponential() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.exponential", false]], "exponential() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.exponential", false]], "exponential() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.exponential", false]], "export() (in module arkouda)": [[24, "arkouda.export", false], [84, "arkouda.export", false]], "export() (in module arkouda.io)": [[27, "arkouda.io.export", false]], "export_uint() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.export_uint", false]], "export_uint() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.export_uint", false]], "eye() (in module arkouda)": [[24, "arkouda.eye", false]], "eye() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.eye", false]], "eye() (in module arkouda.numpy)": [[35, "arkouda.numpy.eye", false]], "factory() (arkouda.index static method)": [[24, "arkouda.Index.factory", false]], "factory() (arkouda.index.index static method)": [[25, "arkouda.index.Index.factory", false]], "false_ (class in arkouda)": [[24, "arkouda.False_", false]], "false_ (class in arkouda.numpy)": [[35, "arkouda.numpy.False_", false]], "fields (class in arkouda)": [[24, "arkouda.Fields", false]], "fields (class in arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.Fields", false]], "fill() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.fill", false]], "fill() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.fill", false]], "fill() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.fill", false]], "fill() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.fill", false]], "fill() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.fill", false]], "fill() (arkouda.pdarray method)": [[24, "arkouda.pdarray.fill", false], [24, "id1016", false], [24, "id1087", false], [24, "id1158", false], [24, "id1229", false], [24, "id945", false]], "fill() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.fill", false]], "fill() (arkouda.str_ method)": [[24, "arkouda.str_.fill", false], [24, "id1310", false]], "fill_vals() (arkouda.sparray method)": [[24, "arkouda.sparray.fill_vals", false]], "fill_vals() (arkouda.sparrayclass.sparray method)": [[51, "arkouda.sparrayclass.sparray.fill_vals", false]], "fillna() (arkouda.series method)": [[24, "arkouda.Series.fillna", false]], "fillna() (arkouda.series.series method)": [[49, "arkouda.series.Series.fillna", false]], "filter() (arkouda.segarray method)": [[24, "arkouda.SegArray.filter", false]], "filter() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.filter", false]], "filter_by_range() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.filter_by_range", false], [24, "id141", false]], "filter_by_range() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.filter_by_range", false]], "find() (in module arkouda)": [[24, "arkouda.find", false]], "find() (in module arkouda.alignment)": [[3, "arkouda.alignment.find", false]], "find_locations() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.find_locations", false]], "find_locations() (arkouda.strings method)": [[24, "arkouda.Strings.find_locations", false], [24, "id513", false], [24, "id589", false], [24, "id665", false], [24, "id741", false], [100, "arkouda.Strings.find_locations", false]], "find_locations() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.find_locations", false]], "find_matches() (arkouda.match.match method)": [[31, "arkouda.match.Match.find_matches", false], [100, "arkouda.match.Match.find_matches", false]], "findall() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.findall", false]], "findall() (arkouda.strings method)": [[24, "arkouda.Strings.findall", false], [24, "id514", false], [24, "id590", false], [24, "id666", false], [24, "id742", false], [100, "arkouda.Strings.findall", false]], "findall() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.findall", false]], "finfo (class in arkouda)": [[24, "arkouda.finfo", false]], "finfo (class in arkouda.numpy)": [[35, "arkouda.numpy.finfo", false]], "finfo() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.finfo", false]], "finfo_object (class in arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.finfo_object", false]], "first (arkouda.index.multiindex attribute)": [[25, "arkouda.index.MultiIndex.first", false]], "first (arkouda.multiindex attribute)": [[24, "arkouda.MultiIndex.first", false]], "first() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.first", false]], "first() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.first", false]], "first() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.first", false]], "first() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.first", false]], "first() (arkouda.groupby method)": [[24, "arkouda.GroupBy.first", false], [24, "id267", false], [24, "id314", false], [24, "id361", false], [24, "id408", false], [24, "id455", false], [91, "arkouda.GroupBy.first", false]], "first() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.first", false]], "flags() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.flags", false]], "flags() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.flags", false]], "flags() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.flags", false]], "flags() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.flags", false]], "flags() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.flags", false]], "flags() (arkouda.str_ method)": [[24, "arkouda.str_.flags", false], [24, "id1311", false]], "flat() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.flat", false]], "flat() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.flat", false]], "flat() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.flat", false]], "flat() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.flat", false]], "flat() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.flat", false]], "flat() (arkouda.str_ method)": [[24, "arkouda.str_.flat", false], [24, "id1312", false]], "flatten() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.flatten", false]], "flatten() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.flatten", false]], "flatten() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.flatten", false]], "flatten() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.flatten", false]], "flatten() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.flatten", false]], "flatten() (arkouda.pdarray method)": [[24, "arkouda.pdarray.flatten", false], [24, "id1017", false], [24, "id1088", false], [24, "id1159", false], [24, "id1230", false], [24, "id946", false]], "flatten() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.flatten", false]], "flatten() (arkouda.str_ method)": [[24, "arkouda.str_.flatten", false], [24, "id1313", false]], "flatten() (arkouda.strings method)": [[24, "arkouda.Strings.flatten", false], [24, "id515", false], [24, "id591", false], [24, "id667", false], [24, "id743", false], [100, "arkouda.Strings.flatten", false]], "flatten() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.flatten", false]], "flexible (class in arkouda)": [[24, "arkouda.flexible", false]], "flexible (class in arkouda.numpy)": [[35, "arkouda.numpy.flexible", false]], "flip() (in module arkouda)": [[24, "arkouda.flip", false]], "flip() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.flip", false]], "flip() (in module arkouda.numpy)": [[35, "arkouda.numpy.flip", false]], "float() (arkouda.dtype method)": [[24, "arkouda.DType.FLOAT", false]], "float() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.FLOAT", false]], "float() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.FLOAT", false]], "float() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.FLOAT", false]], "float16 (class in arkouda)": [[24, "arkouda.float16", false]], "float16 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.float16", false]], "float16 (class in arkouda.numpy)": [[35, "arkouda.numpy.float16", false]], "float16 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.float16", false]], "float16dtype (class in arkouda)": [[24, "arkouda.Float16DType", false]], "float16dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Float16DType", false]], "float32 (class in arkouda)": [[24, "arkouda.float32", false]], "float32 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.float32", false]], "float32 (class in arkouda.numpy)": [[35, "arkouda.numpy.float32", false]], "float32 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.float32", false]], "float32() (arkouda.dtype method)": [[24, "arkouda.DType.FLOAT32", false]], "float32() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.FLOAT32", false]], "float32() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.FLOAT32", false]], "float32() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.FLOAT32", false]], "float32dtype (class in arkouda)": [[24, "arkouda.Float32DType", false]], "float32dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Float32DType", false]], "float64 (class in arkouda)": [[24, "arkouda.float64", false]], "float64 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.float64", false]], "float64 (class in arkouda.numpy)": [[35, "arkouda.numpy.float64", false]], "float64 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.float64", false]], "float64() (arkouda.dtype method)": [[24, "arkouda.DType.FLOAT64", false]], "float64() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.FLOAT64", false]], "float64() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.FLOAT64", false]], "float64() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.FLOAT64", false]], "float64dtype (class in arkouda)": [[24, "arkouda.Float64DType", false]], "float64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Float64DType", false]], "float_ (class in arkouda)": [[24, "arkouda.float_", false]], "float_ (class in arkouda.numpy)": [[35, "arkouda.numpy.float_", false]], "float_scalars (class in arkouda)": [[24, "arkouda.float_scalars", false]], "float_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.float_scalars", false]], "float_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.float_scalars", false]], "float_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.float_scalars", false]], "floating (class in arkouda)": [[24, "arkouda.floating", false]], "floating (class in arkouda.numpy)": [[35, "arkouda.numpy.floating", false]], "floor() (in module arkouda)": [[24, "arkouda.floor", false]], "floor() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.floor", false]], "floor() (in module arkouda.numpy)": [[35, "arkouda.numpy.floor", false]], "floor_divide() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.floor_divide", false]], "fmod() (in module arkouda)": [[24, "arkouda.fmod", false]], "fmod() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.fmod", false]], "format() (arkouda.bitvector method)": [[24, "arkouda.BitVector.format", false]], "format() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.format", false]], "format() (arkouda.client_dtypes.fields method)": [[19, "arkouda.client_dtypes.Fields.format", false]], "format() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.format", false]], "format() (arkouda.fields method)": [[24, "arkouda.Fields.format", false]], "format() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.format", false]], "format_float_positional() (in module arkouda)": [[24, "arkouda.format_float_positional", false]], "format_float_positional() (in module arkouda.numpy)": [[35, "arkouda.numpy.format_float_positional", false]], "format_float_scientific() (in module arkouda)": [[24, "arkouda.format_float_scientific", false]], "format_float_scientific() (in module arkouda.numpy)": [[35, "arkouda.numpy.format_float_scientific", false]], "format_other() (arkouda.pdarray method)": [[24, "arkouda.pdarray.format_other", false], [24, "id1018", false], [24, "id1089", false], [24, "id1160", false], [24, "id1231", false], [24, "id947", false]], "format_other() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.format_other", false]], "format_parser (class in arkouda)": [[24, "arkouda.format_parser", false]], "format_parser (class in arkouda.numpy)": [[35, "arkouda.numpy.format_parser", false]], "from_codes() (arkouda.categorical class method)": [[24, "arkouda.Categorical.from_codes", false], [24, "id25", false], [24, "id83", false], [88, "arkouda.Categorical.from_codes", false]], "from_codes() (arkouda.categorical.categorical class method)": [[17, "arkouda.categorical.Categorical.from_codes", false]], "from_dlpack() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.from_dlpack", false]], "from_multi_array() (arkouda.segarray class method)": [[24, "arkouda.SegArray.from_multi_array", false]], "from_multi_array() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.from_multi_array", false]], "from_pandas() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.from_pandas", false], [24, "id142", false]], "from_pandas() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.from_pandas", false]], "from_parts() (arkouda.segarray class method)": [[24, "arkouda.SegArray.from_parts", false]], "from_parts() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.from_parts", false]], "from_parts() (arkouda.strings static method)": [[24, "arkouda.Strings.from_parts", false], [24, "id516", false], [24, "id592", false], [24, "id668", false], [24, "id744", false]], "from_parts() (arkouda.strings.strings static method)": [[53, "arkouda.strings.Strings.from_parts", false]], "from_return_msg() (arkouda.bitvector class method)": [[24, "arkouda.BitVector.from_return_msg", false]], "from_return_msg() (arkouda.categorical class method)": [[24, "arkouda.Categorical.from_return_msg", false], [24, "id26", false], [24, "id84", false]], "from_return_msg() (arkouda.categorical.categorical class method)": [[17, "arkouda.categorical.Categorical.from_return_msg", false]], "from_return_msg() (arkouda.client_dtypes.bitvector class method)": [[19, "arkouda.client_dtypes.BitVector.from_return_msg", false]], "from_return_msg() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.from_return_msg", false], [24, "id143", false]], "from_return_msg() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.from_return_msg", false]], "from_return_msg() (arkouda.groupby method)": [[24, "arkouda.GroupBy.from_return_msg", false], [24, "id268", false], [24, "id315", false], [24, "id362", false], [24, "id409", false], [24, "id456", false]], "from_return_msg() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.from_return_msg", false]], "from_return_msg() (arkouda.index class method)": [[24, "arkouda.Index.from_return_msg", false]], "from_return_msg() (arkouda.index.index class method)": [[25, "arkouda.index.Index.from_return_msg", false]], "from_return_msg() (arkouda.segarray class method)": [[24, "arkouda.SegArray.from_return_msg", false]], "from_return_msg() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.from_return_msg", false]], "from_return_msg() (arkouda.series method)": [[24, "arkouda.Series.from_return_msg", false]], "from_return_msg() (arkouda.series.series method)": [[49, "arkouda.series.Series.from_return_msg", false]], "from_return_msg() (arkouda.strings static method)": [[24, "arkouda.Strings.from_return_msg", false], [24, "id517", false], [24, "id593", false], [24, "id669", false], [24, "id745", false]], "from_return_msg() (arkouda.strings.strings static method)": [[53, "arkouda.strings.Strings.from_return_msg", false]], "from_series() (in module arkouda)": [[24, "arkouda.from_series", false], [24, "id875", false]], "from_series() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.from_series", false]], "fromhex() (arkouda.akfloat64 method)": [[24, "arkouda.akfloat64.fromhex", false], [24, "id823", false]], "fromhex() (arkouda.double method)": [[24, "arkouda.double.fromhex", false]], "fromhex() (arkouda.dtypes.float64 method)": [[21, "arkouda.dtypes.float64.fromhex", false]], "fromhex() (arkouda.float64 method)": [[24, "arkouda.float64.fromhex", false]], "fromhex() (arkouda.float_ method)": [[24, "arkouda.float_.fromhex", false]], "fromhex() (arkouda.numpy.double method)": [[35, "arkouda.numpy.double.fromhex", false]], "fromhex() (arkouda.numpy.dtypes.float64 method)": [[34, "arkouda.numpy.dtypes.float64.fromhex", false]], "fromhex() (arkouda.numpy.float64 method)": [[35, "arkouda.numpy.float64.fromhex", false]], "fromhex() (arkouda.numpy.float_ method)": [[35, "arkouda.numpy.float_.fromhex", false]], "fromkeys() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.fromkeys", false]], "fromkeys() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.fromkeys", false]], "fromkeys() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.fromkeys", false]], "fromkeys() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.fromkeys", false]], "fromkeys() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.fromkeys", false]], "fromkeys() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.fromkeys", false]], "fromkeys() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.fromkeys", false]], "fromkeys() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.fromkeys", false]], "fromkeys() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.fromkeys", false]], "fromkeys() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.fromkeys", false]], "fromkeys() (arkouda.sctypes method)": [[24, "arkouda.sctypes.fromkeys", false]], "fromkeys() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.fromkeys", false]], "full() (in module arkouda)": [[24, "arkouda.full", false], [24, "id876", false]], "full() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.full", false]], "full() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.full", false]], "full_like() (in module arkouda)": [[24, "arkouda.full_like", false]], "full_like() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.full_like", false]], "full_like() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.full_like", false]], "full_match_bool (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.full_match_bool", false]], "full_match_ind (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.full_match_ind", false]], "fullmatch() (arkouda.strings method)": [[24, "arkouda.Strings.fullmatch", false], [24, "id518", false], [24, "id594", false], [24, "id670", false], [24, "id746", false], [100, "arkouda.Strings.fullmatch", false]], "fullmatch() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.fullmatch", false]], "gb (arkouda.dataframe.dataframegroupby attribute)": [[20, "arkouda.dataframe.DataFrameGroupBy.gb", false]], "gb (arkouda.dataframe.diffaggregate attribute)": [[20, "arkouda.dataframe.DiffAggregate.gb", false]], "gb (arkouda.dataframegroupby attribute)": [[24, "arkouda.DataFrameGroupBy.gb", false]], "gb (arkouda.diffaggregate attribute)": [[24, "arkouda.DiffAggregate.gb", false]], "gb_key_names (arkouda.dataframe.dataframegroupby attribute)": [[20, "arkouda.dataframe.DataFrameGroupBy.gb_key_names", false]], "gb_key_names (arkouda.dataframegroupby attribute)": [[24, "arkouda.DataFrameGroupBy.gb_key_names", false]], "gen_ranges() (in module arkouda)": [[24, "arkouda.gen_ranges", false], [24, "id877", false]], "gen_ranges() (in module arkouda.join)": [[29, "arkouda.join.gen_ranges", false]], "generate_history() (in module arkouda.client)": [[18, "arkouda.client.generate_history", false]], "generate_token() (in module arkouda.security)": [[47, "arkouda.security.generate_token", false]], "generate_username_token_json() (in module arkouda.security)": [[47, "arkouda.security.generate_username_token_json", false]], "generator (class in arkouda.numpy.random)": [[36, "arkouda.numpy.random.Generator", false]], "generator (class in arkouda.random)": [[42, "arkouda.random.Generator", false], [95, "arkouda.random.Generator", false]], "generic_concat() (in module arkouda)": [[24, "arkouda.generic_concat", false]], "generic_concat() (in module arkouda.util)": [[56, "arkouda.util.generic_concat", false]], "generic_moment() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.generic_moment", false]], "get() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.get", false]], "get() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.get", false]], "get() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.get", false]], "get() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.get", false]], "get() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.get", false]], "get() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.get", false]], "get() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.get", false]], "get() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.get", false]], "get() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.get", false]], "get() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.get", false]], "get() (arkouda.sctypes method)": [[24, "arkouda.sctypes.get", false]], "get() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.get", false]], "get_arkouda_client_directory() (in module arkouda.security)": [[47, "arkouda.security.get_arkouda_client_directory", false]], "get_byteorder() (in module arkouda)": [[24, "arkouda.get_byteorder", false]], "get_byteorder() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.get_byteorder", false]], "get_byteorder() (in module arkouda.numpy)": [[35, "arkouda.numpy.get_byteorder", false]], "get_byteorder() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.get_byteorder", false]], "get_bytes() (arkouda.strings method)": [[24, "arkouda.Strings.get_bytes", false], [24, "id519", false], [24, "id595", false], [24, "id671", false], [24, "id747", false]], "get_bytes() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_bytes", false]], "get_callback() (in module arkouda)": [[24, "arkouda.get_callback", false]], "get_callback() (in module arkouda.util)": [[56, "arkouda.util.get_callback", false]], "get_columns() (in module arkouda)": [[24, "arkouda.get_columns", false]], "get_columns() (in module arkouda.io)": [[27, "arkouda.io.get_columns", false]], "get_config() (in module arkouda.client)": [[18, "arkouda.client.get_config", false]], "get_datasets() (in module arkouda)": [[24, "arkouda.get_datasets", false], [84, "arkouda.get_datasets", false]], "get_datasets() (in module arkouda.io)": [[27, "arkouda.io.get_datasets", false]], "get_directory() (in module arkouda.io_util)": [[28, "arkouda.io_util.get_directory", false]], "get_filetype() (in module arkouda)": [[24, "arkouda.get_filetype", false]], "get_filetype() (in module arkouda.io)": [[27, "arkouda.io.get_filetype", false]], "get_home_directory() (in module arkouda.security)": [[47, "arkouda.security.get_home_directory", false]], "get_jth() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_jth", false]], "get_jth() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_jth", false]], "get_jth() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_jth", false]], "get_length_n() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_length_n", false]], "get_length_n() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_length_n", false]], "get_length_n() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_length_n", false]], "get_lengths() (arkouda.strings method)": [[24, "arkouda.Strings.get_lengths", false], [24, "id520", false], [24, "id596", false], [24, "id672", false], [24, "id748", false]], "get_lengths() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_lengths", false]], "get_level_values() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.get_level_values", false]], "get_level_values() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.get_level_values", false]], "get_match() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.get_match", false]], "get_max_array_rank() (in module arkouda.client)": [[18, "arkouda.client.get_max_array_rank", false]], "get_mem_avail() (in module arkouda.client)": [[18, "arkouda.client.get_mem_avail", false]], "get_mem_status() (in module arkouda.client)": [[18, "arkouda.client.get_mem_status", false]], "get_mem_used() (in module arkouda.client)": [[18, "arkouda.client.get_mem_used", false]], "get_ngrams() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_ngrams", false]], "get_ngrams() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_ngrams", false]], "get_ngrams() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_ngrams", false]], "get_null_indices() (in module arkouda)": [[24, "arkouda.get_null_indices", false]], "get_null_indices() (in module arkouda.io)": [[27, "arkouda.io.get_null_indices", false]], "get_offsets() (arkouda.strings method)": [[24, "arkouda.Strings.get_offsets", false], [24, "id521", false], [24, "id597", false], [24, "id673", false], [24, "id749", false]], "get_offsets() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_offsets", false]], "get_prefixes() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_prefixes", false]], "get_prefixes() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_prefixes", false]], "get_prefixes() (arkouda.strings method)": [[24, "arkouda.Strings.get_prefixes", false], [24, "id522", false], [24, "id598", false], [24, "id674", false], [24, "id750", false]], "get_prefixes() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_prefixes", false]], "get_prefixes() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_prefixes", false]], "get_server_byteorder() (in module arkouda)": [[24, "arkouda.get_server_byteorder", false]], "get_server_byteorder() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.get_server_byteorder", false]], "get_server_byteorder() (in module arkouda.numpy)": [[35, "arkouda.numpy.get_server_byteorder", false]], "get_server_byteorder() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.get_server_byteorder", false]], "get_server_commands() (in module arkouda.client)": [[18, "arkouda.client.get_server_commands", false]], "get_suffixes() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_suffixes", false]], "get_suffixes() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_suffixes", false]], "get_suffixes() (arkouda.strings method)": [[24, "arkouda.Strings.get_suffixes", false], [24, "id523", false], [24, "id599", false], [24, "id675", false], [24, "id751", false]], "get_suffixes() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_suffixes", false]], "get_suffixes() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_suffixes", false]], "get_username() (in module arkouda.security)": [[47, "arkouda.security.get_username", false]], "getarkoudalogger() (in module arkouda)": [[24, "arkouda.getArkoudaLogger", false]], "getfield() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.getfield", false]], "getfield() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.getfield", false]], "getfield() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.getfield", false]], "getfield() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.getfield", false]], "getfield() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.getfield", false]], "getfield() (arkouda.str_ method)": [[24, "arkouda.str_.getfield", false], [24, "id1314", false]], "getmandatoryrelease() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.getMandatoryRelease", false]], "getmandatoryrelease() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.getMandatoryRelease", false]], "getoptionalrelease() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.getOptionalRelease", false]], "getoptionalrelease() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.getOptionalRelease", false]], "greater() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.greater", false]], "greater_equal() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.greater_equal", false]], "group() (arkouda.categorical method)": [[24, "arkouda.Categorical.group", false], [24, "id27", false], [24, "id85", false]], "group() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.group", false]], "group() (arkouda.match.match method)": [[31, "arkouda.match.Match.group", false], [100, "arkouda.match.Match.group", false]], "group() (arkouda.strings method)": [[24, "arkouda.Strings.group", false], [24, "id524", false], [24, "id600", false], [24, "id676", false], [24, "id752", false]], "group() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.group", false]], "groupby (class in arkouda)": [[24, "arkouda.GroupBy", false], [24, "id245", false], [24, "id292", false], [24, "id339", false], [24, "id386", false], [24, "id433", false], [91, "arkouda.GroupBy", false]], "groupby (class in arkouda.groupbyclass)": [[22, "arkouda.groupbyclass.GroupBy", false]], "groupby() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.GroupBy", false], [24, "id123", false], [24, "arkouda.DataFrame.groupby", false], [24, "id144", false]], "groupby() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.GroupBy", false], [20, "arkouda.dataframe.DataFrame.groupby", false]], "groupby() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.groupby", false]], "groupby_reduction_types (class in arkouda)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES", false]], "groupby_reduction_types (class in arkouda.groupbyclass)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES", false]], "grouping (arkouda.segarray property)": [[24, "arkouda.SegArray.grouping", false]], "grouping (arkouda.segarray.segarray property)": [[48, "arkouda.segarray.SegArray.grouping", false]], "half (class in arkouda)": [[24, "arkouda.half", false]], "half (class in arkouda.numpy)": [[35, "arkouda.numpy.half", false]], "handled_functions (in module arkouda.array_api.array_object)": [[4, "arkouda.array_api.array_object.HANDLED_FUNCTIONS", false]], "has_repeat_labels() (arkouda.series method)": [[24, "arkouda.Series.has_repeat_labels", false]], "has_repeat_labels() (arkouda.series.series method)": [[49, "arkouda.series.Series.has_repeat_labels", false]], "hash() (arkouda.categorical method)": [[24, "arkouda.Categorical.hash", false], [24, "id28", false], [24, "id86", false]], "hash() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.hash", false]], "hash() (arkouda.segarray method)": [[24, "arkouda.SegArray.hash", false]], "hash() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.hash", false]], "hash() (arkouda.strings method)": [[24, "arkouda.Strings.hash", false], [24, "id525", false], [24, "id601", false], [24, "id677", false], [24, "id753", false]], "hash() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.hash", false]], "hash() (in module arkouda)": [[24, "arkouda.hash", false]], "hash() (in module arkouda.numpy)": [[35, "arkouda.numpy.hash", false]], "hasnans() (arkouda.series method)": [[24, "arkouda.Series.hasnans", false]], "hasnans() (arkouda.series.series method)": [[49, "arkouda.series.Series.hasnans", false]], "head() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.head", false], [24, "id145", false]], "head() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.head", false]], "head() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.head", false]], "head() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.head", false]], "head() (arkouda.groupby method)": [[24, "arkouda.GroupBy.head", false], [24, "id269", false], [24, "id316", false], [24, "id363", false], [24, "id410", false], [24, "id457", false], [91, "arkouda.GroupBy.head", false]], "head() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.head", false]], "head() (arkouda.series method)": [[24, "arkouda.Series.head", false]], "head() (arkouda.series.series method)": [[49, "arkouda.series.Series.head", false]], "head() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.head", false]], "head() (in module arkouda.series)": [[97, "arkouda.Series.head", false]], "hex() (arkouda.akfloat64 method)": [[24, "arkouda.akfloat64.hex", false], [24, "id824", false]], "hex() (arkouda.double method)": [[24, "arkouda.double.hex", false]], "hex() (arkouda.dtypes.float64 method)": [[21, "arkouda.dtypes.float64.hex", false]], "hex() (arkouda.float64 method)": [[24, "arkouda.float64.hex", false]], "hex() (arkouda.float_ method)": [[24, "arkouda.float_.hex", false]], "hex() (arkouda.numpy.double method)": [[35, "arkouda.numpy.double.hex", false]], "hex() (arkouda.numpy.dtypes.float64 method)": [[34, "arkouda.numpy.dtypes.float64.hex", false]], "hex() (arkouda.numpy.float64 method)": [[35, "arkouda.numpy.float64.hex", false]], "hex() (arkouda.numpy.float_ method)": [[35, "arkouda.numpy.float_.hex", false]], "hist_all() (in module arkouda)": [[24, "arkouda.hist_all", false]], "hist_all() (in module arkouda.plotting)": [[41, "arkouda.plotting.hist_all", false]], "histogram() (in module arkouda)": [[24, "arkouda.histogram", false], [24, "id878", false], [92, "arkouda.histogram", false]], "histogram() (in module arkouda.numpy)": [[35, "arkouda.numpy.histogram", false]], "histogram2d() (in module arkouda)": [[24, "arkouda.histogram2d", false]], "histogram2d() (in module arkouda.numpy)": [[35, "arkouda.numpy.histogram2d", false]], "histogramdd() (in module arkouda)": [[24, "arkouda.histogramdd", false]], "histogramdd() (in module arkouda.numpy)": [[35, "arkouda.numpy.histogramdd", false]], "historyretriever (class in arkouda.history)": [[23, "arkouda.history.HistoryRetriever", false]], "hour (arkouda.datetime property)": [[24, "arkouda.Datetime.hour", false], [24, "id185", false], [24, "id218", false]], "hour (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.hour", false]], "iat (arkouda.series property)": [[24, "arkouda.Series.iat", false]], "iat (arkouda.series.series property)": [[49, "arkouda.series.Series.iat", false]], "identity() (in module arkouda.util)": [[56, "arkouda.util.identity", false]], "iexp (arkouda.finfo attribute)": [[24, "arkouda.finfo.iexp", false]], "iexp (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.iexp", false]], "ignore() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.ignore", false]], "ignore() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.ignore", false]], "iinfo (class in arkouda)": [[24, "arkouda.iinfo", false]], "iinfo (class in arkouda.numpy)": [[35, "arkouda.numpy.iinfo", false]], "iinfo() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.iinfo", false]], "iinfo_object (class in arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.iinfo_object", false]], "iloc (arkouda.series property)": [[24, "arkouda.Series.iloc", false]], "iloc (arkouda.series.series property)": [[49, "arkouda.series.Series.iloc", false]], "imag() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.imag", false]], "imag() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.imag", false]], "imag() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.imag", false]], "imag() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.imag", false]], "imag() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.imag", false]], "imag() (arkouda.str_ method)": [[24, "arkouda.str_.imag", false], [24, "id1315", false]], "imag() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.imag", false]], "implements_numpy() (in module arkouda.array_api.array_object)": [[4, "arkouda.array_api.array_object.implements_numpy", false]], "import_data() (in module arkouda)": [[24, "arkouda.import_data", false], [84, "arkouda.import_data", false]], "import_data() (in module arkouda.io)": [[27, "arkouda.io.import_data", false]], "in1d() (arkouda.categorical method)": [[24, "arkouda.Categorical.in1d", false], [24, "id29", false], [24, "id87", false]], "in1d() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.in1d", false]], "in1d() (in module arkouda)": [[24, "arkouda.in1d", false], [24, "id881", false], [24, "id882", false], [98, "arkouda.in1d", false]], "in1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.in1d", false]], "in1d_intervals() (in module arkouda)": [[24, "arkouda.in1d_intervals", false]], "in1d_intervals() (in module arkouda.alignment)": [[3, "arkouda.alignment.in1d_intervals", false]], "index (arkouda.dataframe property)": [[24, "arkouda.DataFrame.index", false], [24, "id146", false]], "index (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.index", false]], "index (arkouda.index property)": [[24, "arkouda.Index.index", false]], "index (arkouda.index.index property)": [[25, "arkouda.index.Index.index", false]], "index (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.index", false]], "index (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.index", false]], "index (class in arkouda)": [[24, "arkouda.Index", false], [85, "arkouda.Index", false]], "index (class in arkouda.index)": [[25, "arkouda.index.Index", false]], "index() (arkouda.dtypes.arkouda_supported_floats method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_FLOATS.index", false]], "index() (arkouda.dtypes.arkouda_supported_ints method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_INTS.index", false]], "index() (arkouda.dtypes.arkouda_supported_numbers method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_NUMBERS.index", false]], "index() (arkouda.numpy.dtypes.arkouda_supported_floats method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_FLOATS.index", false]], "index() (arkouda.numpy.dtypes.arkouda_supported_ints method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_INTS.index", false]], "index() (arkouda.numpy.dtypes.arkouda_supported_numbers method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_NUMBERS.index", false]], "index() (arkouda.numpy.scalartype method)": [[35, "arkouda.numpy.ScalarType.index", false]], "index() (arkouda.scalartype method)": [[24, "arkouda.ScalarType.index", false]], "indexof1d() (in module arkouda)": [[24, "arkouda.indexof1d", false]], "indexof1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.indexof1d", false]], "indices (arkouda.array_api.set_functions.uniqueallresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueAllResult.indices", false]], "indices (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.indices", false]], "inexact (class in arkouda)": [[24, "arkouda.inexact", false]], "inexact (class in arkouda.numpy)": [[35, "arkouda.numpy.inexact", false]], "inf (in module arkouda)": [[24, "arkouda.Inf", false], [24, "arkouda.inf", false]], "inf (in module arkouda.numpy)": [[35, "arkouda.numpy.Inf", false], [35, "arkouda.numpy.inf", false]], "inferred_type (arkouda.categorical property)": [[24, "arkouda.Categorical.inferred_type", false], [24, "id30", false], [24, "id88", false]], "inferred_type (arkouda.categorical.categorical property)": [[17, "arkouda.categorical.Categorical.inferred_type", false]], "inferred_type (arkouda.index property)": [[24, "arkouda.Index.inferred_type", false]], "inferred_type (arkouda.index.index property)": [[25, "arkouda.index.Index.inferred_type", false]], "inferred_type (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.inferred_type", false]], "inferred_type (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.inferred_type", false]], "inferred_type (arkouda.pdarray property)": [[24, "arkouda.pdarray.inferred_type", false], [24, "id1019", false], [24, "id1090", false], [24, "id1161", false], [24, "id1232", false], [24, "id948", false]], "inferred_type (arkouda.pdarrayclass.pdarray property)": [[37, "arkouda.pdarrayclass.pdarray.inferred_type", false]], "inferred_type (arkouda.strings property)": [[24, "arkouda.Strings.inferred_type", false], [24, "id526", false], [24, "id602", false], [24, "id678", false], [24, "id754", false]], "inferred_type (arkouda.strings.strings property)": [[53, "arkouda.strings.Strings.inferred_type", false]], "infinity (in module arkouda)": [[24, "arkouda.Infinity", false]], "infinity (in module arkouda.numpy)": [[35, "arkouda.numpy.Infinity", false]], "info (arkouda.dataframe property)": [[24, "arkouda.DataFrame.info", false], [24, "id147", false]], "info (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.info", false]], "info (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.INFO", false]], "info (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.INFO", false]], "info() (arkouda.categorical method)": [[24, "arkouda.Categorical.info", false], [24, "id31", false], [24, "id89", false]], "info() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.info", false]], "info() (arkouda.pdarray method)": [[24, "arkouda.pdarray.info", false], [24, "id1020", false], [24, "id1091", false], [24, "id1162", false], [24, "id1233", false], [24, "id949", false]], "info() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.info", false]], "info() (arkouda.strings method)": [[24, "arkouda.Strings.info", false], [24, "id527", false], [24, "id603", false], [24, "id679", false], [24, "id755", false]], "info() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.info", false]], "information() (in module arkouda)": [[24, "arkouda.information", false]], "information() (in module arkouda.infoclass)": [[26, "arkouda.infoclass.information", false]], "infty (in module arkouda)": [[24, "arkouda.infty", false]], "infty (in module arkouda.numpy)": [[35, "arkouda.numpy.infty", false]], "int() (arkouda.dtype method)": [[24, "arkouda.DType.INT", false]], "int() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT", false]], "int() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT", false]], "int() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT", false]], "int16 (class in arkouda)": [[24, "arkouda.int16", false]], "int16 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int16", false]], "int16 (class in arkouda.numpy)": [[35, "arkouda.numpy.int16", false]], "int16 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int16", false]], "int16() (arkouda.dtype method)": [[24, "arkouda.DType.INT16", false]], "int16() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT16", false]], "int16() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT16", false]], "int16() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT16", false]], "int16dtype (class in arkouda)": [[24, "arkouda.Int16DType", false]], "int16dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Int16DType", false]], "int32 (class in arkouda)": [[24, "arkouda.int32", false]], "int32 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int32", false]], "int32 (class in arkouda.numpy)": [[35, "arkouda.numpy.int32", false]], "int32 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int32", false]], "int32() (arkouda.dtype method)": [[24, "arkouda.DType.INT32", false]], "int32() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT32", false]], "int32() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT32", false]], "int32() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT32", false]], "int32dtype (class in arkouda)": [[24, "arkouda.Int32DType", false]], "int32dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Int32DType", false]], "int64 (class in arkouda)": [[24, "arkouda.int64", false], [24, "id883", false]], "int64 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int64", false]], "int64 (class in arkouda.numpy)": [[35, "arkouda.numpy.int64", false]], "int64 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int64", false]], "int64() (arkouda.dtype method)": [[24, "arkouda.DType.INT64", false]], "int64() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT64", false]], "int64() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT64", false]], "int64() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT64", false]], "int64dtype (class in arkouda)": [[24, "arkouda.Int64DType", false]], "int64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Int64DType", false]], "int8 (class in arkouda)": [[24, "arkouda.int8", false]], "int8 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int8", false]], "int8 (class in arkouda.numpy)": [[35, "arkouda.numpy.int8", false]], "int8 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int8", false]], "int8() (arkouda.dtype method)": [[24, "arkouda.DType.INT8", false]], "int8() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT8", false]], "int8() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT8", false]], "int8() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT8", false]], "int8dtype (class in arkouda)": [[24, "arkouda.Int8DType", false]], "int8dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Int8DType", false]], "int_ (class in arkouda)": [[24, "arkouda.int_", false]], "int_ (class in arkouda.numpy)": [[35, "arkouda.numpy.int_", false]], "int_scalars (class in arkouda)": [[24, "arkouda.int_scalars", false], [24, "id903", false], [24, "id904", false]], "int_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int_scalars", false]], "int_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.int_scalars", false]], "int_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int_scalars", false]], "intc (class in arkouda)": [[24, "arkouda.intc", false]], "intc (class in arkouda.numpy)": [[35, "arkouda.numpy.intc", false]], "intdtype (class in arkouda)": [[24, "arkouda.IntDType", false]], "intdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.IntDType", false]], "integer (class in arkouda)": [[24, "arkouda.integer", false]], "integer (class in arkouda.numpy)": [[35, "arkouda.numpy.integer", false]], "integers() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.integers", false]], "integers() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.integers", false]], "integers() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.integers", false]], "intersect() (arkouda.segarray method)": [[24, "arkouda.SegArray.intersect", false]], "intersect() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.intersect", false]], "intersect() (in module arkouda)": [[24, "arkouda.intersect", false]], "intersect() (in module arkouda.dataframe)": [[20, "arkouda.dataframe.intersect", false]], "intersect() (in module arkouda.segarray)": [[96, "arkouda.SegArray.intersect", false]], "intersect1d() (in module arkouda)": [[24, "arkouda.intersect1d", false], [98, "arkouda.intersect1d", false]], "intersect1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.intersect1d", false]], "intersection() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.intersection", false]], "intersection() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.intersection", false]], "intersection() (arkouda.dtypes method)": [[24, "arkouda.DTypes.intersection", false]], "intersection() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.intersection", false]], "intersection() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.intersection", false]], "intersection() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.intersection", false]], "intersection() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.intersection", false]], "intersection() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.intersection", false]], "intersection() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.intersection", false]], "intersection() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.intersection", false]], "intersection() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.intersection", false]], "intersection() (arkouda.inttypes method)": [[24, "arkouda.intTypes.intersection", false], [24, "id888", false], [24, "id897", false]], "intersection() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.intersection", false]], "intersection() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.intersection", false]], "intersection() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.intersection", false]], "intersection() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.intersection", false]], "intersection() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.intersection", false]], "intersection() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.intersection", false]], "intersection() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.intersection", false]], "intersection() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.intersection", false]], "intersection() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.intersection", false]], "intersection() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.intersection", false]], "intersection() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.intersection", false]], "intersection() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.intersection", false]], "intersection() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.intersection", false]], "intersection() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.intersection", false]], "interval_lookup() (in module arkouda)": [[24, "arkouda.interval_lookup", false]], "interval_lookup() (in module arkouda.alignment)": [[3, "arkouda.alignment.interval_lookup", false]], "intp (class in arkouda)": [[24, "arkouda.intp", false]], "intp (class in arkouda.numpy)": [[35, "arkouda.numpy.intp", false]], "inttypes (class in arkouda)": [[24, "arkouda.intTypes", false], [24, "id885", false], [24, "id894", false]], "inttypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.intTypes", false]], "inttypes (class in arkouda.numpy)": [[35, "arkouda.numpy.intTypes", false]], "inttypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.intTypes", false]], "intx() (in module arkouda)": [[24, "arkouda.intx", false]], "intx() (in module arkouda.dataframe)": [[20, "arkouda.dataframe.intx", false]], "inverse_indices (arkouda.array_api.set_functions.uniqueallresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueAllResult.inverse_indices", false]], "inverse_indices (arkouda.array_api.set_functions.uniqueinverseresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueInverseResult.inverse_indices", false]], "invert_permutation() (in module arkouda)": [[24, "arkouda.invert_permutation", false]], "invert_permutation() (in module arkouda.dataframe)": [[20, "arkouda.dataframe.invert_permutation", false]], "invert_permutation() (in module arkouda.util)": [[56, "arkouda.util.invert_permutation", false]], "ip_address() (in module arkouda)": [[24, "arkouda.ip_address", false]], "ip_address() (in module arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.ip_address", false]], "ipv4 (class in arkouda)": [[24, "arkouda.IPv4", false]], "ipv4 (class in arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.IPv4", false]], "is_cosorted() (in module arkouda)": [[24, "arkouda.is_cosorted", false]], "is_cosorted() (in module arkouda.alignment)": [[3, "arkouda.alignment.is_cosorted", false]], "is_float() (in module arkouda.util)": [[56, "arkouda.util.is_float", false]], "is_int() (in module arkouda.util)": [[56, "arkouda.util.is_int", false]], "is_integer() (arkouda.akfloat64 method)": [[24, "arkouda.akfloat64.is_integer", false], [24, "id825", false]], "is_integer() (arkouda.double method)": [[24, "arkouda.double.is_integer", false]], "is_integer() (arkouda.dtypes.float16 method)": [[21, "arkouda.dtypes.float16.is_integer", false]], "is_integer() (arkouda.dtypes.float32 method)": [[21, "arkouda.dtypes.float32.is_integer", false]], "is_integer() (arkouda.dtypes.float64 method)": [[21, "arkouda.dtypes.float64.is_integer", false]], "is_integer() (arkouda.float16 method)": [[24, "arkouda.float16.is_integer", false]], "is_integer() (arkouda.float32 method)": [[24, "arkouda.float32.is_integer", false]], "is_integer() (arkouda.float64 method)": [[24, "arkouda.float64.is_integer", false]], "is_integer() (arkouda.float_ method)": [[24, "arkouda.float_.is_integer", false]], "is_integer() (arkouda.half method)": [[24, "arkouda.half.is_integer", false]], "is_integer() (arkouda.integer method)": [[24, "arkouda.integer.is_integer", false]], "is_integer() (arkouda.longdouble method)": [[24, "arkouda.longdouble.is_integer", false]], "is_integer() (arkouda.longfloat method)": [[24, "arkouda.longfloat.is_integer", false]], "is_integer() (arkouda.numpy.double method)": [[35, "arkouda.numpy.double.is_integer", false]], "is_integer() (arkouda.numpy.dtypes.float16 method)": [[34, "arkouda.numpy.dtypes.float16.is_integer", false]], "is_integer() (arkouda.numpy.dtypes.float32 method)": [[34, "arkouda.numpy.dtypes.float32.is_integer", false]], "is_integer() (arkouda.numpy.dtypes.float64 method)": [[34, "arkouda.numpy.dtypes.float64.is_integer", false]], "is_integer() (arkouda.numpy.float16 method)": [[35, "arkouda.numpy.float16.is_integer", false]], "is_integer() (arkouda.numpy.float32 method)": [[35, "arkouda.numpy.float32.is_integer", false]], "is_integer() (arkouda.numpy.float64 method)": [[35, "arkouda.numpy.float64.is_integer", false]], "is_integer() (arkouda.numpy.float_ method)": [[35, "arkouda.numpy.float_.is_integer", false]], "is_integer() (arkouda.numpy.half method)": [[35, "arkouda.numpy.half.is_integer", false]], "is_integer() (arkouda.numpy.integer method)": [[35, "arkouda.numpy.integer.is_integer", false]], "is_integer() (arkouda.numpy.longdouble method)": [[35, "arkouda.numpy.longdouble.is_integer", false]], "is_integer() (arkouda.numpy.longfloat method)": [[35, "arkouda.numpy.longfloat.is_integer", false]], "is_integer() (arkouda.numpy.single method)": [[35, "arkouda.numpy.single.is_integer", false]], "is_integer() (arkouda.single method)": [[24, "arkouda.single.is_integer", false]], "is_ipv4() (in module arkouda)": [[24, "arkouda.is_ipv4", false]], "is_ipv4() (in module arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.is_ipv4", false]], "is_ipv6() (in module arkouda)": [[24, "arkouda.is_ipv6", false]], "is_ipv6() (in module arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.is_ipv6", false]], "is_leap_year (arkouda.datetime property)": [[24, "arkouda.Datetime.is_leap_year", false], [24, "id186", false], [24, "id219", false]], "is_leap_year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.is_leap_year", false]], "is_numeric() (in module arkouda.util)": [[56, "arkouda.util.is_numeric", false]], "is_registered() (arkouda.categorical method)": [[24, "arkouda.Categorical.is_registered", false], [24, "id32", false], [24, "id90", false]], "is_registered() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.is_registered", false]], "is_registered() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.is_registered", false], [24, "id148", false]], "is_registered() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.is_registered", false]], "is_registered() (arkouda.datetime method)": [[24, "arkouda.Datetime.is_registered", false], [24, "id187", false], [24, "id220", false]], "is_registered() (arkouda.groupby method)": [[24, "arkouda.GroupBy.is_registered", false], [24, "id270", false], [24, "id317", false], [24, "id364", false], [24, "id411", false], [24, "id458", false], [91, "arkouda.GroupBy.is_registered", false]], "is_registered() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.is_registered", false]], "is_registered() (arkouda.index method)": [[24, "arkouda.Index.is_registered", false]], "is_registered() (arkouda.index.index method)": [[25, "arkouda.index.Index.is_registered", false]], "is_registered() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.is_registered", false]], "is_registered() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.is_registered", false]], "is_registered() (arkouda.pdarray method)": [[24, "arkouda.pdarray.is_registered", false], [24, "id1021", false], [24, "id1092", false], [24, "id1163", false], [24, "id1234", false], [24, "id950", false]], "is_registered() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.is_registered", false]], "is_registered() (arkouda.segarray method)": [[24, "arkouda.SegArray.is_registered", false]], "is_registered() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.is_registered", false]], "is_registered() (arkouda.series method)": [[24, "arkouda.Series.is_registered", false]], "is_registered() (arkouda.series.series method)": [[49, "arkouda.series.Series.is_registered", false]], "is_registered() (arkouda.strings method)": [[24, "arkouda.Strings.is_registered", false], [24, "id528", false], [24, "id604", false], [24, "id680", false], [24, "id756", false]], "is_registered() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.is_registered", false]], "is_registered() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.is_registered", false]], "is_registered() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.is_registered", false]], "is_registered() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.is_registered", false], [24, "id801", false]], "is_registered() (in module arkouda)": [[24, "arkouda.is_registered", false]], "is_registered() (in module arkouda.util)": [[56, "arkouda.util.is_registered", false]], "is_sorted() (arkouda.pdarray method)": [[24, "arkouda.pdarray.is_sorted", false], [24, "id1022", false], [24, "id1093", false], [24, "id1164", false], [24, "id1235", false], [24, "id951", false], [92, "arkouda.pdarray.is_sorted", false]], "is_sorted() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.is_sorted", false]], "is_sorted() (in module arkouda)": [[24, "arkouda.is_sorted", false], [24, "id908", false], [87, "arkouda.is_sorted", false]], "is_sorted() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.is_sorted", false]], "isalnum() (arkouda.strings method)": [[24, "arkouda.Strings.isalnum", false], [24, "id529", false], [24, "id605", false], [24, "id681", false], [24, "id757", false]], "isalnum() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isalnum", false]], "isalpha() (arkouda.strings method)": [[24, "arkouda.Strings.isalpha", false], [24, "id530", false], [24, "id606", false], [24, "id682", false], [24, "id758", false]], "isalpha() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isalpha", false]], "isdecimal() (arkouda.strings method)": [[24, "arkouda.Strings.isdecimal", false], [24, "id531", false], [24, "id607", false], [24, "id683", false], [24, "id759", false]], "isdecimal() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isdecimal", false]], "isdigit() (arkouda.strings method)": [[24, "arkouda.Strings.isdigit", false], [24, "id532", false], [24, "id608", false], [24, "id684", false], [24, "id760", false]], "isdigit() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isdigit", false]], "isdisjoint() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.isdisjoint", false]], "isdisjoint() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.isdisjoint", false]], "isdisjoint() (arkouda.dtypes method)": [[24, "arkouda.DTypes.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.isdisjoint", false]], "isdisjoint() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.isdisjoint", false]], "isdisjoint() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.isdisjoint", false]], "isdisjoint() (arkouda.inttypes method)": [[24, "arkouda.intTypes.isdisjoint", false], [24, "id889", false], [24, "id898", false]], "isdisjoint() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.isdisjoint", false]], "isdisjoint() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.isdisjoint", false]], "isdtype() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.isdtype", false]], "isempty() (arkouda.strings method)": [[24, "arkouda.Strings.isempty", false], [24, "id533", false], [24, "id609", false], [24, "id685", false], [24, "id761", false]], "isempty() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isempty", false]], "isfinite() (in module arkouda)": [[24, "arkouda.isfinite", false]], "isfinite() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.isfinite", false]], "isfinite() (in module arkouda.numpy)": [[35, "arkouda.numpy.isfinite", false]], "isin() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.isin", false], [24, "id149", false]], "isin() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.isin", false]], "isin() (arkouda.series method)": [[24, "arkouda.Series.isin", false]], "isin() (arkouda.series.series method)": [[49, "arkouda.series.Series.isin", false]], "isinf() (in module arkouda)": [[24, "arkouda.isinf", false]], "isinf() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.isinf", false]], "isinf() (in module arkouda.numpy)": [[35, "arkouda.numpy.isinf", false]], "islower() (arkouda.strings method)": [[24, "arkouda.Strings.islower", false], [24, "id534", false], [24, "id610", false], [24, "id686", false], [24, "id762", false]], "islower() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.islower", false]], "isna() (arkouda.categorical method)": [[24, "arkouda.Categorical.isna", false], [24, "id33", false], [24, "id91", false]], "isna() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.isna", false]], "isna() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.isna", false], [24, "id150", false]], "isna() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.isna", false]], "isna() (arkouda.series method)": [[24, "arkouda.Series.isna", false]], "isna() (arkouda.series.series method)": [[49, "arkouda.series.Series.isna", false]], "isnan() (in module arkouda)": [[24, "arkouda.isnan", false], [24, "id909", false]], "isnan() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.isnan", false]], "isnan() (in module arkouda.numpy)": [[35, "arkouda.numpy.isnan", false]], "isnull() (arkouda.series method)": [[24, "arkouda.Series.isnull", false]], "isnull() (arkouda.series.series method)": [[49, "arkouda.series.Series.isnull", false]], "isocalendar() (arkouda.datetime method)": [[24, "arkouda.Datetime.isocalendar", false], [24, "id188", false], [24, "id221", false]], "isocalendar() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.isocalendar", false]], "isscalar() (in module arkouda)": [[24, "arkouda.isscalar", false]], "isscalar() (in module arkouda.numpy)": [[35, "arkouda.numpy.isscalar", false]], "issctype() (in module arkouda)": [[24, "arkouda.issctype", false]], "issctype() (in module arkouda.numpy)": [[35, "arkouda.numpy.issctype", false]], "isspace() (arkouda.strings method)": [[24, "arkouda.Strings.isspace", false], [24, "id535", false], [24, "id611", false], [24, "id687", false], [24, "id763", false]], "isspace() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isspace", false]], "issubclass_() (in module arkouda)": [[24, "arkouda.issubclass_", false]], "issubclass_() (in module arkouda.numpy)": [[35, "arkouda.numpy.issubclass_", false]], "issubdtype() (in module arkouda)": [[24, "arkouda.issubdtype", false]], "issubdtype() (in module arkouda.numpy)": [[35, "arkouda.numpy.issubdtype", false]], "issubset() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.issubset", false]], "issubset() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.issubset", false]], "issubset() (arkouda.dtypes method)": [[24, "arkouda.DTypes.issubset", false]], "issubset() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.issubset", false]], "issubset() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.issubset", false]], "issubset() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.issubset", false]], "issubset() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.issubset", false]], "issubset() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.issubset", false]], "issubset() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.issubset", false]], "issubset() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.issubset", false]], "issubset() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.issubset", false]], "issubset() (arkouda.inttypes method)": [[24, "arkouda.intTypes.issubset", false], [24, "id890", false], [24, "id899", false]], "issubset() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.issubset", false]], "issubset() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.issubset", false]], "issubset() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.issubset", false]], "issubset() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.issubset", false]], "issubset() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.issubset", false]], "issubset() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.issubset", false]], "issubset() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.issubset", false]], "issubset() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.issubset", false]], "issubset() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.issubset", false]], "issubset() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.issubset", false]], "issubset() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.issubset", false]], "issubset() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.issubset", false]], "issubset() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.issubset", false]], "issubset() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.issubset", false]], "issuperset() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.issuperset", false]], "issuperset() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.issuperset", false]], "issuperset() (arkouda.dtypes method)": [[24, "arkouda.DTypes.issuperset", false]], "issuperset() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.issuperset", false]], "issuperset() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.issuperset", false]], "issuperset() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.issuperset", false]], "issuperset() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.issuperset", false]], "issuperset() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.issuperset", false]], "issuperset() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.issuperset", false]], "issuperset() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.issuperset", false]], "issuperset() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.issuperset", false]], "issuperset() (arkouda.inttypes method)": [[24, "arkouda.intTypes.issuperset", false], [24, "id891", false], [24, "id900", false]], "issuperset() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.issuperset", false]], "issuperset() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.issuperset", false]], "issuperset() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.issuperset", false]], "issuperset() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.issuperset", false]], "issuperset() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.issuperset", false]], "issuperset() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.issuperset", false]], "issuperset() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.issuperset", false]], "issuperset() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.issuperset", false]], "issupportedfloat() (in module arkouda)": [[24, "arkouda.isSupportedFloat", false]], "issupportedfloat() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.isSupportedFloat", false]], "issupportedfloat() (in module arkouda.numpy)": [[35, "arkouda.numpy.isSupportedFloat", false]], "issupportedfloat() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.isSupportedFloat", false]], "issupportedint() (in module arkouda)": [[24, "arkouda.isSupportedInt", false], [24, "id905", false], [24, "id906", false], [24, "id907", false]], "issupportedint() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.isSupportedInt", false]], "issupportedint() (in module arkouda.numpy)": [[35, "arkouda.numpy.isSupportedInt", false]], "issupportedint() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.isSupportedInt", false]], "issupportednumber() (in module arkouda)": [[24, "arkouda.isSupportedNumber", false]], "issupportednumber() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.isSupportedNumber", false]], "issupportednumber() (in module arkouda.numpy)": [[35, "arkouda.numpy.isSupportedNumber", false]], "issupportednumber() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.isSupportedNumber", false]], "istitle() (arkouda.strings method)": [[24, "arkouda.Strings.istitle", false], [24, "id536", false], [24, "id612", false], [24, "id688", false], [24, "id764", false]], "istitle() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.istitle", false]], "isupper() (arkouda.strings method)": [[24, "arkouda.Strings.isupper", false], [24, "id537", false], [24, "id613", false], [24, "id689", false], [24, "id765", false]], "isupper() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isupper", false]], "item() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.item", false]], "item() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.item", false]], "item() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.item", false]], "item() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.item", false]], "item() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.item", false]], "item() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.item", false]], "item() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.item", false]], "item() (arkouda.str_ method)": [[24, "arkouda.str_.item", false], [24, "id1316", false]], "items() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.items", false]], "items() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.items", false]], "items() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.items", false]], "items() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.items", false]], "items() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.items", false]], "items() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.items", false]], "items() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.items", false]], "items() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.items", false]], "items() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.items", false]], "items() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.items", false]], "items() (arkouda.sctypes method)": [[24, "arkouda.sctypes.items", false]], "items() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.items", false]], "itemset() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.itemset", false]], "itemset() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.itemset", false]], "itemset() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.itemset", false]], "itemset() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.itemset", false]], "itemset() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.itemset", false]], "itemset() (arkouda.str_ method)": [[24, "arkouda.str_.itemset", false], [24, "id1317", false]], "itemsize (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.itemsize", false], [24, "id1023", false], [24, "id1069", false], [24, "id1094", false], [24, "id1140", false], [24, "id1165", false], [24, "id1211", false], [24, "id1236", false], [24, "id914", false], [24, "id927", false], [24, "id952", false], [24, "id998", false], [94, "arkouda.pdarray.itemsize", false]], "itemsize (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.itemsize", false], [37, "id1", false]], "itemsize (arkouda.sparray attribute)": [[24, "arkouda.sparray.itemsize", false], [24, "id1281", false]], "itemsize (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.itemsize", false], [51, "id1", false]], "itemsize() (arkouda.bigint method)": [[24, "arkouda.bigint.itemsize", false], [24, "id845", false]], "itemsize() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.itemsize", false]], "itemsize() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.itemsize", false]], "itemsize() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.itemsize", false]], "itemsize() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.itemsize", false]], "itemsize() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.itemsize", false]], "itemsize() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.itemsize", false]], "itemsize() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.itemsize", false]], "itemsize() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.itemsize", false]], "itemsize() (arkouda.str_ method)": [[24, "arkouda.str_.itemsize", false], [24, "id1318", false]], "join_on_eq_with_dt() (in module arkouda)": [[24, "arkouda.join_on_eq_with_dt", false]], "join_on_eq_with_dt() (in module arkouda.join)": [[29, "arkouda.join.join_on_eq_with_dt", false]], "keys() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.keys", false]], "keys() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.keys", false]], "keys() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.keys", false]], "keys() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.keys", false]], "keys() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.keys", false]], "keys() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.keys", false]], "keys() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.keys", false]], "keys() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.keys", false]], "keys() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.keys", false]], "keys() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.keys", false]], "keys() (arkouda.sctypes method)": [[24, "arkouda.sctypes.keys", false]], "keys() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.keys", false]], "layout (arkouda.sparray attribute)": [[24, "arkouda.sparray.layout", false], [24, "id1282", false]], "layout (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.layout", false], [51, "id2", false]], "left_align() (in module arkouda)": [[24, "arkouda.left_align", false]], "left_align() (in module arkouda.alignment)": [[3, "arkouda.alignment.left_align", false]], "len_suffix (in module arkouda)": [[24, "arkouda.LEN_SUFFIX", false]], "len_suffix (in module arkouda.segarray)": [[48, "arkouda.segarray.LEN_SUFFIX", false]], "lengths (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.lengths", false]], "less() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.less", false]], "less_equal() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.less_equal", false]], "levels (arkouda.index.multiindex attribute)": [[25, "arkouda.index.MultiIndex.levels", false]], "levels (arkouda.multiindex attribute)": [[24, "arkouda.MultiIndex.levels", false]], "linspace() (in module arkouda)": [[24, "arkouda.linspace", false], [89, "arkouda.linspace", false]], "linspace() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.linspace", false]], "linspace() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.linspace", false]], "list_registry() (in module arkouda)": [[24, "arkouda.list_registry", false]], "list_registry() (in module arkouda.infoclass)": [[26, "arkouda.infoclass.list_registry", false]], "list_symbol_table() (in module arkouda)": [[24, "arkouda.list_symbol_table", false]], "list_symbol_table() (in module arkouda.infoclass)": [[26, "arkouda.infoclass.list_symbol_table", false]], "load() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.load", false], [24, "id151", false]], "load() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.load", false]], "load() (arkouda.segarray class method)": [[24, "arkouda.SegArray.load", false]], "load() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.load", false]], "load() (in module arkouda)": [[24, "arkouda.load", false]], "load() (in module arkouda.io)": [[27, "arkouda.io.load", false]], "load_all() (in module arkouda)": [[24, "arkouda.load_all", false]], "load_all() (in module arkouda.io)": [[27, "arkouda.io.load_all", false]], "loc (arkouda.series property)": [[24, "arkouda.Series.loc", false]], "loc (arkouda.series.series property)": [[49, "arkouda.series.Series.loc", false]], "locate() (arkouda.series method)": [[24, "arkouda.Series.locate", false]], "locate() (arkouda.series.series method)": [[49, "arkouda.series.Series.locate", false]], "locate() (in module arkouda.series)": [[97, "arkouda.Series.locate", false], [97, "id0", false]], "locationsinfo (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.LocationsInfo", false]], "log() (in module arkouda)": [[24, "arkouda.log", false], [87, "arkouda.log", false]], "log() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.log", false]], "log() (in module arkouda.numpy)": [[35, "arkouda.numpy.log", false]], "log10() (in module arkouda)": [[24, "arkouda.log10", false]], "log10() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.log10", false]], "log10() (in module arkouda.numpy)": [[35, "arkouda.numpy.log10", false]], "log1p() (in module arkouda)": [[24, "arkouda.log1p", false]], "log1p() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.log1p", false]], "log1p() (in module arkouda.numpy)": [[35, "arkouda.numpy.log1p", false]], "log2() (in module arkouda)": [[24, "arkouda.log2", false]], "log2() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.log2", false]], "log2() (in module arkouda.numpy)": [[35, "arkouda.numpy.log2", false]], "logaddexp() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logaddexp", false]], "logger (arkouda.categorical attribute)": [[24, "arkouda.Categorical.logger", false], [24, "id34", false], [24, "id92", false]], "logger (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.logger", false]], "logger (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.logger", false], [24, "id252", false], [24, "id299", false], [24, "id346", false], [24, "id393", false], [24, "id440", false], [91, "arkouda.GroupBy.logger", false]], "logger (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.logger", false]], "logger (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.logger", false]], "logger (arkouda.segarray attribute)": [[24, "arkouda.SegArray.logger", false]], "logger (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.logger", false]], "logger (arkouda.strings attribute)": [[24, "arkouda.Strings.logger", false], [24, "id492", false], [24, "id500", false], [24, "id538", false], [24, "id576", false], [24, "id614", false], [24, "id652", false], [24, "id690", false], [24, "id728", false], [24, "id766", false]], "logger (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.logger", false], [53, "id2", false]], "logical_and() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logical_and", false]], "logical_not() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logical_not", false]], "logical_or() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logical_or", false]], "logical_xor() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logical_xor", false]], "logistic() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.logistic", false]], "logistic() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.logistic", false]], "logistic() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.logistic", false]], "loglevel (class in arkouda)": [[24, "arkouda.LogLevel", false]], "loglevel (class in arkouda.logger)": [[30, "arkouda.logger.LogLevel", false]], "lognormal() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.lognormal", false]], "lognormal() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.lognormal", false]], "lognormal() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.lognormal", false]], "longdouble (class in arkouda)": [[24, "arkouda.longdouble", false]], "longdouble (class in arkouda.numpy)": [[35, "arkouda.numpy.longdouble", false]], "longdoubledtype (class in arkouda)": [[24, "arkouda.LongDoubleDType", false]], "longdoubledtype (class in arkouda.numpy)": [[35, "arkouda.numpy.LongDoubleDType", false]], "longdtype (class in arkouda)": [[24, "arkouda.LongDType", false]], "longdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.LongDType", false]], "longfloat (class in arkouda)": [[24, "arkouda.longfloat", false]], "longfloat (class in arkouda.numpy)": [[35, "arkouda.numpy.longfloat", false]], "longlong (class in arkouda)": [[24, "arkouda.longlong", false]], "longlong (class in arkouda.numpy)": [[35, "arkouda.numpy.longlong", false]], "longlongdtype (class in arkouda)": [[24, "arkouda.LongLongDType", false]], "longlongdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.LongLongDType", false]], "lookup() (arkouda.index method)": [[24, "arkouda.Index.lookup", false]], "lookup() (arkouda.index.index method)": [[25, "arkouda.index.Index.lookup", false]], "lookup() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.lookup", false]], "lookup() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.lookup", false]], "lookup() (in module arkouda)": [[24, "arkouda.lookup", false]], "lookup() (in module arkouda.alignment)": [[3, "arkouda.alignment.lookup", false]], "lookup() (in module arkouda.index)": [[85, "arkouda.Index.lookup", false]], "lookup() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.lookup", false]], "lower() (arkouda.strings method)": [[24, "arkouda.Strings.lower", false], [24, "id539", false], [24, "id615", false], [24, "id691", false], [24, "id767", false]], "lower() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.lower", false]], "ls() (in module arkouda)": [[24, "arkouda.ls", false]], "ls() (in module arkouda.io)": [[27, "arkouda.io.ls", false]], "ls_csv() (in module arkouda)": [[24, "arkouda.ls_csv", false]], "ls_csv() (in module arkouda.io)": [[27, "arkouda.io.ls_csv", false]], "lstick() (arkouda.strings method)": [[24, "arkouda.Strings.lstick", false], [24, "id540", false], [24, "id616", false], [24, "id692", false], [24, "id768", false], [100, "arkouda.Strings.lstick", false]], "lstick() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.lstick", false]], "machep (arkouda.finfo attribute)": [[24, "arkouda.finfo.machep", false]], "machep (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.machep", false]], "mandatory() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.mandatory", false]], "mandatory() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.mandatory", false]], "map() (arkouda.index method)": [[24, "arkouda.Index.map", false]], "map() (arkouda.index.index method)": [[25, "arkouda.index.Index.map", false]], "map() (arkouda.series method)": [[24, "arkouda.Series.map", false]], "map() (arkouda.series.series method)": [[49, "arkouda.series.Series.map", false]], "map() (in module arkouda.util)": [[56, "arkouda.util.map", false]], "match (class in arkouda.match)": [[31, "arkouda.match.Match", false]], "match() (arkouda.strings method)": [[24, "arkouda.Strings.match", false], [24, "id541", false], [24, "id617", false], [24, "id693", false], [24, "id769", false], [100, "arkouda.Strings.match", false]], "match() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.match", false]], "match_bool (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.match_bool", false]], "match_ind (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.match_ind", false]], "match_type() (arkouda.match.match method)": [[31, "arkouda.match.Match.match_type", false], [100, "arkouda.match.Match.match_type", false]], "matched() (arkouda.match.match method)": [[31, "arkouda.match.Match.matched", false], [100, "arkouda.match.Match.matched", false]], "matcher (class in arkouda.matcher)": [[32, "arkouda.matcher.Matcher", false]], "matmul() (in module arkouda)": [[24, "arkouda.matmul", false]], "matmul() (in module arkouda.array_api.linalg)": [[10, "arkouda.array_api.linalg.matmul", false]], "matmul() (in module arkouda.numpy)": [[35, "arkouda.numpy.matmul", false]], "matrix_transpose() (in module arkouda.array_api.linalg)": [[10, "arkouda.array_api.linalg.matrix_transpose", false]], "max (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.max", false]], "max (arkouda.array_api.data_type_functions.iinfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.iinfo_object.max", false]], "max (arkouda.finfo attribute)": [[24, "arkouda.finfo.max", false]], "max (arkouda.iinfo attribute)": [[24, "arkouda.iinfo.max", false]], "max (arkouda.iinfo property)": [[24, "id879", false]], "max (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.max", false]], "max (arkouda.numpy.iinfo attribute)": [[35, "arkouda.numpy.iinfo.max", false]], "max (arkouda.numpy.iinfo property)": [[35, "id12", false]], "max() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.max", false]], "max() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.max", false]], "max() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.max", false]], "max() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.max", false]], "max() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.max", false]], "max() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.max", false]], "max() (arkouda.groupby method)": [[24, "arkouda.GroupBy.max", false], [24, "id271", false], [24, "id318", false], [24, "id365", false], [24, "id412", false], [24, "id459", false], [91, "arkouda.GroupBy.max", false]], "max() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.max", false]], "max() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.max", false]], "max() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.max", false]], "max() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.max", false]], "max() (arkouda.pdarray method)": [[24, "arkouda.pdarray.max", false], [24, "id1024", false], [24, "id1095", false], [24, "id1166", false], [24, "id1237", false], [24, "id953", false], [92, "arkouda.pdarray.max", false]], "max() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.max", false]], "max() (arkouda.segarray method)": [[24, "arkouda.SegArray.max", false]], "max() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.max", false]], "max() (arkouda.series method)": [[24, "arkouda.Series.max", false]], "max() (arkouda.series.series method)": [[49, "arkouda.series.Series.max", false]], "max() (arkouda.str_ method)": [[24, "arkouda.str_.max", false], [24, "id1319", false]], "max() (in module arkouda)": [[24, "arkouda.max", false], [87, "arkouda.max", false]], "max() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.max", false]], "max() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.max", false]], "max_bits (arkouda.pdarray property)": [[24, "arkouda.pdarray.max_bits", false], [24, "id1025", false], [24, "id1096", false], [24, "id1167", false], [24, "id1238", false], [24, "id954", false]], "max_bits (arkouda.pdarrayclass.pdarray property)": [[37, "arkouda.pdarrayclass.pdarray.max_bits", false]], "max_list_size (arkouda.index attribute)": [[24, "arkouda.Index.max_list_size", false]], "max_list_size (arkouda.index.index attribute)": [[25, "arkouda.index.Index.max_list_size", false]], "maxexp (arkouda.finfo attribute)": [[24, "arkouda.finfo.maxexp", false]], "maxexp (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.maxexp", false]], "maximum_sctype() (in module arkouda)": [[24, "arkouda.maximum_sctype", false]], "maximum_sctype() (in module arkouda.numpy)": [[35, "arkouda.numpy.maximum_sctype", false]], "maxk() (arkouda.pdarray method)": [[24, "arkouda.pdarray.maxk", false], [24, "id1026", false], [24, "id1097", false], [24, "id1168", false], [24, "id1239", false], [24, "id955", false], [92, "arkouda.pdarray.maxk", false]], "maxk() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.maxk", false]], "maxk() (in module arkouda)": [[24, "arkouda.maxk", false], [87, "arkouda.maxk", false]], "maxk() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.maxk", false]], "mean() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.mean", false]], "mean() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.mean", false]], "mean() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.mean", false]], "mean() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.mean", false]], "mean() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.mean", false]], "mean() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.mean", false]], "mean() (arkouda.groupby method)": [[24, "arkouda.GroupBy.mean", false], [24, "id272", false], [24, "id319", false], [24, "id366", false], [24, "id413", false], [24, "id460", false], [91, "arkouda.GroupBy.mean", false]], "mean() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.mean", false]], "mean() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.mean", false]], "mean() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.mean", false]], "mean() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.mean", false]], "mean() (arkouda.pdarray method)": [[24, "arkouda.pdarray.mean", false], [24, "id1027", false], [24, "id1098", false], [24, "id1169", false], [24, "id1240", false], [24, "id956", false], [92, "arkouda.pdarray.mean", false]], "mean() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.mean", false]], "mean() (arkouda.segarray method)": [[24, "arkouda.SegArray.mean", false]], "mean() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.mean", false]], "mean() (arkouda.series method)": [[24, "arkouda.Series.mean", false]], "mean() (arkouda.series.series method)": [[49, "arkouda.series.Series.mean", false]], "mean() (arkouda.str_ method)": [[24, "arkouda.str_.mean", false], [24, "id1320", false]], "mean() (in module arkouda)": [[24, "arkouda.mean", false], [87, "arkouda.mean", false]], "mean() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.mean", false]], "mean() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.mean", false]], "mean_shim() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.mean_shim", false]], "median() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.median", false]], "median() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.median", false]], "median() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.median", false]], "median() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.median", false]], "median() (arkouda.groupby method)": [[24, "arkouda.GroupBy.median", false], [24, "id273", false], [24, "id320", false], [24, "id367", false], [24, "id414", false], [24, "id461", false], [91, "arkouda.GroupBy.median", false]], "median() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.median", false]], "median() (in module arkouda)": [[24, "arkouda.median", false]], "median() (in module arkouda.numpy)": [[35, "arkouda.numpy.median", false]], "memory_usage() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.memory_usage", false], [24, "id152", false]], "memory_usage() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.memory_usage", false]], "memory_usage() (arkouda.index method)": [[24, "arkouda.Index.memory_usage", false]], "memory_usage() (arkouda.index.index method)": [[25, "arkouda.index.Index.memory_usage", false]], "memory_usage() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.memory_usage", false]], "memory_usage() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.memory_usage", false]], "memory_usage() (arkouda.series method)": [[24, "arkouda.Series.memory_usage", false]], "memory_usage() (arkouda.series.series method)": [[49, "arkouda.series.Series.memory_usage", false]], "memory_usage_info() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.memory_usage_info", false], [24, "id153", false]], "memory_usage_info() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.memory_usage_info", false]], "merge() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.merge", false], [24, "id154", false]], "merge() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.merge", false]], "merge() (in module arkouda)": [[24, "arkouda.merge", false]], "merge() (in module arkouda.dataframe)": [[20, "arkouda.dataframe.merge", false]], "meshgrid() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.meshgrid", false]], "microsecond (arkouda.datetime property)": [[24, "arkouda.Datetime.microsecond", false], [24, "id189", false], [24, "id222", false]], "microsecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.microsecond", false]], "microseconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.microseconds", false]], "microseconds (arkouda.timedelta property)": [[24, "arkouda.Timedelta.microseconds", false], [24, "id802", false]], "millisecond (arkouda.datetime property)": [[24, "arkouda.Datetime.millisecond", false], [24, "id190", false], [24, "id223", false]], "millisecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.millisecond", false]], "min (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.min", false]], "min (arkouda.array_api.data_type_functions.iinfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.iinfo_object.min", false]], "min (arkouda.finfo attribute)": [[24, "arkouda.finfo.min", false]], "min (arkouda.iinfo attribute)": [[24, "arkouda.iinfo.min", false]], "min (arkouda.iinfo property)": [[24, "id880", false]], "min (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.min", false]], "min (arkouda.numpy.iinfo attribute)": [[35, "arkouda.numpy.iinfo.min", false]], "min (arkouda.numpy.iinfo property)": [[35, "id13", false]], "min() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.min", false]], "min() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.min", false]], "min() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.min", false]], "min() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.min", false]], "min() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.min", false]], "min() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.min", false]], "min() (arkouda.groupby method)": [[24, "arkouda.GroupBy.min", false], [24, "id274", false], [24, "id321", false], [24, "id368", false], [24, "id415", false], [24, "id462", false], [91, "arkouda.GroupBy.min", false]], "min() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.min", false]], "min() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.min", false]], "min() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.min", false]], "min() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.min", false]], "min() (arkouda.pdarray method)": [[24, "arkouda.pdarray.min", false], [24, "id1028", false], [24, "id1099", false], [24, "id1170", false], [24, "id1241", false], [24, "id957", false], [92, "arkouda.pdarray.min", false]], "min() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.min", false]], "min() (arkouda.segarray method)": [[24, "arkouda.SegArray.min", false]], "min() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.min", false]], "min() (arkouda.series method)": [[24, "arkouda.Series.min", false]], "min() (arkouda.series.series method)": [[49, "arkouda.series.Series.min", false]], "min() (arkouda.str_ method)": [[24, "arkouda.str_.min", false], [24, "id1321", false]], "min() (in module arkouda)": [[24, "arkouda.min", false], [87, "arkouda.min", false]], "min() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.min", false]], "min() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.min", false]], "minexp (arkouda.finfo attribute)": [[24, "arkouda.finfo.minexp", false]], "minexp (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.minexp", false]], "mink() (arkouda.pdarray method)": [[24, "arkouda.pdarray.mink", false], [24, "id1029", false], [24, "id1100", false], [24, "id1171", false], [24, "id1242", false], [24, "id958", false], [92, "arkouda.pdarray.mink", false]], "mink() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.mink", false]], "mink() (in module arkouda)": [[24, "arkouda.mink", false], [87, "arkouda.mink", false]], "mink() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.mink", false]], "minute (arkouda.datetime property)": [[24, "arkouda.Datetime.minute", false], [24, "id191", false], [24, "id224", false]], "minute (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.minute", false]], "mod() (in module arkouda)": [[24, "arkouda.mod", false]], "mod() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.mod", false]], "mode() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.mode", false]], "mode() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.mode", false]], "mode() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.mode", false]], "mode() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.mode", false]], "mode() (arkouda.groupby method)": [[24, "arkouda.GroupBy.mode", false], [24, "id275", false], [24, "id322", false], [24, "id369", false], [24, "id416", false], [24, "id463", false], [91, "arkouda.GroupBy.mode", false]], "mode() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.mode", false]], "module": [[2, "module-arkouda.accessor", false], [3, "module-arkouda.alignment", false], [4, "module-arkouda.array_api.array_object", false], [5, "module-arkouda.array_api.creation_functions", false], [6, "module-arkouda.array_api.data_type_functions", false], [7, "module-arkouda.array_api.elementwise_functions", false], [8, "module-arkouda.array_api", false], [9, "module-arkouda.array_api.indexing_functions", false], [10, "module-arkouda.array_api.linalg", false], [11, "module-arkouda.array_api.manipulation_functions", false], [12, "module-arkouda.array_api.searching_functions", false], [13, "module-arkouda.array_api.set_functions", false], [14, "module-arkouda.array_api.sorting_functions", false], [15, "module-arkouda.array_api.statistical_functions", false], [16, "module-arkouda.array_api.utility_functions", false], [17, "module-arkouda.categorical", false], [18, "module-arkouda.client", false], [19, "module-arkouda.client_dtypes", false], [20, "module-arkouda.dataframe", false], [21, "module-arkouda.dtypes", false], [22, "module-arkouda.groupbyclass", false], [23, "module-arkouda.history", false], [24, "module-arkouda", false], [25, "module-arkouda.index", false], [26, "module-arkouda.infoclass", false], [27, "module-arkouda.io", false], [28, "module-arkouda.io_util", false], [29, "module-arkouda.join", false], [30, "module-arkouda.logger", false], [31, "module-arkouda.match", false], [32, "module-arkouda.matcher", false], [33, "module-arkouda.numeric", false], [34, "module-arkouda.numpy.dtypes", false], [35, "module-arkouda.numpy", false], [36, "module-arkouda.numpy.random", false], [37, "module-arkouda.pdarrayclass", false], [38, "module-arkouda.pdarraycreation", false], [39, "module-arkouda.pdarraymanipulation", false], [40, "module-arkouda.pdarraysetops", false], [41, "module-arkouda.plotting", false], [42, "module-arkouda.random", false], [43, "module-arkouda.row", false], [44, "module-arkouda.scipy", false], [45, "module-arkouda.scipy.special", false], [46, "module-arkouda.scipy.stats", false], [47, "module-arkouda.security", false], [48, "module-arkouda.segarray", false], [49, "module-arkouda.series", false], [50, "module-arkouda.sorting", false], [51, "module-arkouda.sparrayclass", false], [52, "module-arkouda.sparsematrix", false], [53, "module-arkouda.strings", false], [54, "module-arkouda.testing", false], [55, "module-arkouda.timeclass", false], [56, "module-arkouda.util", false]], "moment_type() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.moment_type", false]], "month (arkouda.datetime property)": [[24, "arkouda.Datetime.month", false], [24, "id192", false], [24, "id225", false]], "month (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.month", false]], "most_common() (arkouda.groupby method)": [[24, "arkouda.GroupBy.most_common", false], [24, "id276", false], [24, "id323", false], [24, "id370", false], [24, "id417", false], [24, "id464", false], [91, "arkouda.GroupBy.most_common", false]], "most_common() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.most_common", false]], "most_common() (in module arkouda.util)": [[56, "arkouda.util.most_common", false]], "moveaxis() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.moveaxis", false]], "msb_left (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.MSB_left", false]], "msb_left (arkouda.fields attribute)": [[24, "arkouda.Fields.MSB_left", false]], "mt (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.mT", false]], "mt (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.mT", false]], "multiindex (class in arkouda)": [[24, "arkouda.MultiIndex", false]], "multiindex (class in arkouda.index)": [[25, "arkouda.index.MultiIndex", false]], "multiply() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.multiply", false]], "name (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.name", false]], "name (arkouda.fields attribute)": [[24, "arkouda.Fields.name", false]], "name (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.name", false]], "name (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.name", false]], "name (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.name", false], [24, "id1030", false], [24, "id1064", false], [24, "id1101", false], [24, "id1135", false], [24, "id1172", false], [24, "id1206", false], [24, "id1243", false], [24, "id915", false], [24, "id922", false], [24, "id959", false], [24, "id993", false], [94, "arkouda.pdarray.name", false]], "name (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.name", false], [37, "id2", false]], "name (arkouda.sparray attribute)": [[24, "arkouda.sparray.name", false], [24, "id1283", false]], "name (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.name", false], [51, "id3", false]], "name() (arkouda.bigint method)": [[24, "arkouda.bigint.name", false], [24, "id846", false]], "name() (arkouda.dtype method)": [[24, "arkouda.DType.name", false]], "name() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.name", false]], "name() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.name", false]], "name() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.name", false]], "name() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.name", false]], "name() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.name", false]], "name() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.name", false]], "name() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.name", false]], "name() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.name", false]], "name() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.name", false]], "names (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.names", false]], "names (arkouda.fields attribute)": [[24, "arkouda.Fields.names", false]], "names (arkouda.index property)": [[24, "arkouda.Index.names", false]], "names (arkouda.index.index property)": [[25, "arkouda.index.Index.names", false]], "names (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.names", false]], "names (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.names", false]], "namewidth (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.namewidth", false]], "namewidth (arkouda.fields attribute)": [[24, "arkouda.Fields.namewidth", false]], "nan (in module arkouda)": [[24, "arkouda.NAN", false], [24, "arkouda.NaN", false], [24, "arkouda.nan", false]], "nan (in module arkouda.numpy)": [[35, "arkouda.numpy.NAN", false], [35, "arkouda.numpy.NaN", false], [35, "arkouda.numpy.nan", false]], "nanosecond (arkouda.datetime property)": [[24, "arkouda.Datetime.nanosecond", false], [24, "id193", false], [24, "id226", false]], "nanosecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.nanosecond", false]], "nanoseconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.nanoseconds", false]], "nanoseconds (arkouda.timedelta property)": [[24, "arkouda.Timedelta.nanoseconds", false], [24, "id803", false]], "nbytes (arkouda.categorical property)": [[24, "arkouda.Categorical.nbytes", false], [24, "id35", false], [24, "id93", false]], "nbytes (arkouda.categorical.categorical property)": [[17, "arkouda.categorical.Categorical.nbytes", false]], "nbytes (arkouda.pdarray property)": [[24, "arkouda.pdarray.nbytes", false], [24, "id1031", false], [24, "id1102", false], [24, "id1173", false], [24, "id1244", false], [24, "id960", false]], "nbytes (arkouda.pdarrayclass.pdarray property)": [[37, "arkouda.pdarrayclass.pdarray.nbytes", false]], "nbytes (arkouda.segarray property)": [[24, "arkouda.SegArray.nbytes", false]], "nbytes (arkouda.segarray.segarray property)": [[48, "arkouda.segarray.SegArray.nbytes", false]], "nbytes (arkouda.strings attribute)": [[24, "arkouda.Strings.nbytes", false], [24, "id496", false], [24, "id572", false], [24, "id648", false], [24, "id724", false]], "nbytes (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.nbytes", false]], "nbytes() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.nbytes", false]], "nbytes() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.nbytes", false]], "nbytes() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.nbytes", false]], "nbytes() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.nbytes", false]], "nbytes() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.nbytes", false]], "nbytes() (arkouda.str_ method)": [[24, "arkouda.str_.nbytes", false], [24, "id1322", false]], "ndim (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.ndim", false]], "ndim (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.ndim", false]], "ndim (arkouda.categorical attribute)": [[24, "arkouda.Categorical.ndim", false], [24, "id0", false], [24, "id13", false], [24, "id36", false], [24, "id71", false], [24, "id94", false], [88, "arkouda.Categorical.ndim", false]], "ndim (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.ndim", false], [17, "id0", false]], "ndim (arkouda.index property)": [[24, "arkouda.Index.ndim", false]], "ndim (arkouda.index.index property)": [[25, "arkouda.index.Index.ndim", false]], "ndim (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.ndim", false]], "ndim (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.ndim", false]], "ndim (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.ndim", false], [24, "id1032", false], [24, "id1067", false], [24, "id1103", false], [24, "id1138", false], [24, "id1174", false], [24, "id1209", false], [24, "id1245", false], [24, "id916", false], [24, "id925", false], [24, "id961", false], [24, "id996", false], [94, "arkouda.pdarray.ndim", false]], "ndim (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.ndim", false], [37, "id3", false]], "ndim (arkouda.series property)": [[24, "arkouda.Series.ndim", false]], "ndim (arkouda.series.series property)": [[49, "arkouda.series.Series.ndim", false]], "ndim (arkouda.sparray attribute)": [[24, "arkouda.sparray.ndim", false], [24, "id1284", false]], "ndim (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.ndim", false], [51, "id4", false]], "ndim (arkouda.strings attribute)": [[24, "arkouda.Strings.ndim", false], [24, "id497", false], [24, "id573", false], [24, "id649", false], [24, "id725", false]], "ndim (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.ndim", false]], "ndim() (arkouda.bigint method)": [[24, "arkouda.bigint.ndim", false], [24, "id847", false]], "ndim() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.ndim", false]], "ndim() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.ndim", false]], "ndim() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.ndim", false]], "ndim() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.ndim", false]], "ndim() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.ndim", false]], "ndim() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.ndim", false]], "ndim() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.ndim", false]], "ndim() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.ndim", false]], "ndim() (arkouda.str_ method)": [[24, "arkouda.str_.ndim", false], [24, "id1323", false]], "negative() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.negative", false]], "negep (arkouda.finfo attribute)": [[24, "arkouda.finfo.negep", false]], "negep (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.negep", false]], "newbyteorder() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.newbyteorder", false]], "newbyteorder() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.newbyteorder", false]], "newbyteorder() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.newbyteorder", false]], "newbyteorder() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.newbyteorder", false]], "newbyteorder() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.newbyteorder", false]], "newbyteorder() (arkouda.str_ method)": [[24, "arkouda.str_.newbyteorder", false], [24, "id1324", false]], "nexp (arkouda.finfo attribute)": [[24, "arkouda.finfo.nexp", false]], "nexp (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.nexp", false]], "ngroups (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.ngroups", false], [24, "id250", false], [24, "id297", false], [24, "id344", false], [24, "id391", false], [24, "id438", false], [91, "arkouda.GroupBy.ngroups", false]], "ngroups (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.ngroups", false]], "ninf (in module arkouda)": [[24, "arkouda.NINF", false]], "ninf (in module arkouda.numpy)": [[35, "arkouda.numpy.NINF", false]], "nkeys (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.nkeys", false], [24, "id246", false], [24, "id293", false], [24, "id340", false], [24, "id387", false], [24, "id434", false], [91, "arkouda.GroupBy.nkeys", false]], "nkeys (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.nkeys", false]], "nlevels (arkouda.categorical attribute)": [[24, "arkouda.Categorical.nlevels", false], [24, "id1", false], [24, "id12", false], [24, "id37", false], [24, "id70", false], [24, "id95", false], [88, "arkouda.Categorical.nlevels", false]], "nlevels (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.nlevels", false], [17, "id1", false]], "nlevels (arkouda.index property)": [[24, "arkouda.Index.nlevels", false]], "nlevels (arkouda.index.index property)": [[25, "arkouda.index.Index.nlevels", false]], "nlevels (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.nlevels", false]], "nlevels (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.nlevels", false]], "nmant (arkouda.finfo attribute)": [[24, "arkouda.finfo.nmant", false]], "nmant (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.nmant", false]], "nnz (arkouda.sparray attribute)": [[24, "arkouda.sparray.nnz", false]], "nnz (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.nnz", false]], "non_empty (arkouda.segarray property)": [[24, "arkouda.SegArray.non_empty", false]], "non_empty (arkouda.segarray.segarray property)": [[48, "arkouda.segarray.SegArray.non_empty", false]], "nonuniqueerror": [[3, "arkouda.alignment.NonUniqueError", false], [24, "arkouda.NonUniqueError", false]], "nonzero() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.nonzero", false]], "nonzero() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.nonzero", false]], "nonzero() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.nonzero", false]], "nonzero() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.nonzero", false]], "nonzero() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.nonzero", false]], "nonzero() (arkouda.str_ method)": [[24, "arkouda.str_.nonzero", false], [24, "id1325", false]], "nonzero() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.nonzero", false]], "normal() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.normal", false]], "normal() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.normal", false]], "normal() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.normal", false]], "normalize() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.normalize", false]], "normalize() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.normalize", false]], "not_equal() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.not_equal", false]], "notebookhistoryretriever (class in arkouda.history)": [[23, "arkouda.history.NotebookHistoryRetriever", false]], "notna() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.notna", false], [24, "id155", false]], "notna() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.notna", false]], "notna() (arkouda.series method)": [[24, "arkouda.Series.notna", false]], "notna() (arkouda.series.series method)": [[49, "arkouda.series.Series.notna", false]], "notnull() (arkouda.series method)": [[24, "arkouda.Series.notnull", false]], "notnull() (arkouda.series.series method)": [[49, "arkouda.series.Series.notnull", false]], "num_matches (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.num_matches", false]], "numargs() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.numargs", false]], "number (class in arkouda)": [[24, "arkouda.number", false]], "number (class in arkouda.numpy)": [[35, "arkouda.numpy.number", false]], "number_format_strings (class in arkouda)": [[24, "arkouda.NUMBER_FORMAT_STRINGS", false]], "number_format_strings (class in arkouda.dtypes)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS", false]], "number_format_strings (class in arkouda.numpy)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS", false]], "number_format_strings (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS", false]], "numerator() (arkouda.integer method)": [[24, "arkouda.integer.numerator", false]], "numerator() (arkouda.numpy.integer method)": [[35, "arkouda.numpy.integer.numerator", false]], "numeric_and_bool_scalars (class in arkouda)": [[24, "arkouda.numeric_and_bool_scalars", false]], "numeric_and_bool_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.numeric_and_bool_scalars", false]], "numeric_and_bool_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.numeric_and_bool_scalars", false]], "numeric_and_bool_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.numeric_and_bool_scalars", false]], "numeric_scalars (class in arkouda)": [[24, "arkouda.numeric_scalars", false]], "numeric_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.numeric_scalars", false]], "numeric_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.numeric_scalars", false]], "numeric_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.numeric_scalars", false]], "numericdtypes (class in arkouda)": [[24, "arkouda.NumericDTypes", false]], "numericdtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.NumericDTypes", false]], "numericdtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.NumericDTypes", false]], "numericdtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.NumericDTypes", false]], "numpy_scalars (class in arkouda)": [[24, "arkouda.numpy_scalars", false]], "numpy_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.numpy_scalars", false]], "numpy_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.numpy_scalars", false]], "numpy_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.numpy_scalars", false]], "nunique() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.nunique", false]], "nunique() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.nunique", false]], "nunique() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.nunique", false]], "nunique() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.nunique", false]], "nunique() (arkouda.groupby method)": [[24, "arkouda.GroupBy.nunique", false], [24, "id277", false], [24, "id324", false], [24, "id371", false], [24, "id418", false], [24, "id465", false], [91, "arkouda.GroupBy.nunique", false]], "nunique() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.nunique", false]], "nunique() (arkouda.segarray method)": [[24, "arkouda.SegArray.nunique", false]], "nunique() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.nunique", false]], "nzero (in module arkouda)": [[24, "arkouda.NZERO", false]], "nzero (in module arkouda.numpy)": [[35, "arkouda.numpy.NZERO", false]], "object_ (class in arkouda)": [[24, "arkouda.object_", false]], "object_ (class in arkouda.numpy)": [[35, "arkouda.numpy.object_", false]], "objectdtype (class in arkouda)": [[24, "arkouda.ObjectDType", false]], "objectdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ObjectDType", false]], "objtype (arkouda.categorical attribute)": [[24, "arkouda.Categorical.objType", false], [24, "id38", false], [24, "id96", false]], "objtype (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.objType", false]], "objtype (arkouda.index attribute)": [[24, "arkouda.Index.objType", false]], "objtype (arkouda.index.index attribute)": [[25, "arkouda.index.Index.objType", false]], "objtype (arkouda.index.multiindex attribute)": [[25, "arkouda.index.MultiIndex.objType", false]], "objtype (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.objType", false]], "objtype (arkouda.multiindex attribute)": [[24, "arkouda.MultiIndex.objType", false]], "objtype (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.objType", false], [24, "id1033", false], [24, "id1104", false], [24, "id1175", false], [24, "id1246", false], [24, "id962", false]], "objtype (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.objType", false]], "objtype (arkouda.segarray attribute)": [[24, "arkouda.SegArray.objType", false]], "objtype (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.objType", false]], "objtype (arkouda.strings attribute)": [[24, "arkouda.Strings.objType", false], [24, "id542", false], [24, "id618", false], [24, "id694", false], [24, "id770", false]], "objtype (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.objType", false]], "objtype() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.objType", false], [24, "id156", false]], "objtype() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.objType", false]], "objtype() (arkouda.groupby method)": [[24, "arkouda.GroupBy.objType", false], [24, "id278", false], [24, "id325", false], [24, "id372", false], [24, "id419", false], [24, "id466", false]], "objtype() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.objType", false]], "objtype() (arkouda.series method)": [[24, "arkouda.Series.objType", false]], "objtype() (arkouda.series.series method)": [[49, "arkouda.series.Series.objType", false]], "ones() (in module arkouda)": [[24, "arkouda.ones", false], [24, "id910", false], [24, "id911", false], [24, "id912", false], [89, "arkouda.ones", false]], "ones() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.ones", false]], "ones() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.ones", false]], "ones_like() (in module arkouda)": [[24, "arkouda.ones_like", false], [89, "arkouda.ones_like", false]], "ones_like() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.ones_like", false]], "ones_like() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.ones_like", false]], "open() (arkouda.datasource method)": [[24, "arkouda.DataSource.open", false]], "open() (arkouda.numpy.datasource method)": [[35, "arkouda.numpy.DataSource.open", false]], "opeq() (arkouda.bitvector method)": [[24, "arkouda.BitVector.opeq", false]], "opeq() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.opeq", false]], "opeq() (arkouda.client_dtypes.fields method)": [[19, "arkouda.client_dtypes.Fields.opeq", false]], "opeq() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.opeq", false]], "opeq() (arkouda.fields method)": [[24, "arkouda.Fields.opeq", false]], "opeq() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.opeq", false]], "opeq() (arkouda.pdarray method)": [[24, "arkouda.pdarray.opeq", false], [24, "id1034", false], [24, "id1105", false], [24, "id1176", false], [24, "id1247", false], [24, "id963", false]], "opeq() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.opeq", false]], "opeqops (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.OpEqOps", false], [24, "id1000", false], [24, "id1071", false], [24, "id1142", false], [24, "id1213", false], [24, "id929", false]], "opeqops (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.OpEqOps", false]], "optional() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.optional", false]], "optional() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.optional", false]], "or() (arkouda.groupby method)": [[24, "arkouda.GroupBy.OR", false], [24, "id255", false], [24, "id302", false], [24, "id349", false], [24, "id396", false], [24, "id443", false], [91, "arkouda.GroupBy.OR", false]], "or() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.OR", false]], "or() (arkouda.segarray method)": [[24, "arkouda.SegArray.OR", false]], "or() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.OR", false]], "pad (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.pad", false]], "pad (arkouda.fields attribute)": [[24, "arkouda.Fields.pad", false]], "pad() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.pad", false]], "padchar (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.padchar", false]], "padchar (arkouda.fields attribute)": [[24, "arkouda.Fields.padchar", false]], "parent_entry_name (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.parent_entry_name", false]], "parity() (arkouda.pdarray method)": [[24, "arkouda.pdarray.parity", false], [24, "id1035", false], [24, "id1106", false], [24, "id1177", false], [24, "id1248", false], [24, "id964", false]], "parity() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.parity", false]], "parity() (in module arkouda)": [[24, "arkouda.parity", false]], "parity() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.parity", false]], "parse_hdf_categoricals() (arkouda.categorical static method)": [[24, "arkouda.Categorical.parse_hdf_categoricals", false], [24, "id39", false], [24, "id97", false]], "parse_hdf_categoricals() (arkouda.categorical.categorical static method)": [[17, "arkouda.categorical.Categorical.parse_hdf_categoricals", false]], "pdarray (class in arkouda)": [[24, "arkouda.pdarray", false], [24, "id1063", false], [24, "id1134", false], [24, "id1205", false], [24, "id921", false], [24, "id992", false], [94, "arkouda.pdarray", false]], "pdarray (class in arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.pdarray", false]], "pdconcat() (arkouda.series method)": [[24, "arkouda.Series.pdconcat", false]], "pdconcat() (arkouda.series.series method)": [[49, "arkouda.series.Series.pdconcat", false]], "pdconcat() (in module arkouda.series)": [[97, "arkouda.Series.pdconcat", false]], "peel() (arkouda.strings method)": [[24, "arkouda.Strings.peel", false], [24, "id543", false], [24, "id619", false], [24, "id695", false], [24, "id771", false], [100, "arkouda.Strings.peel", false]], "peel() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.peel", false]], "permutation (arkouda.categorical attribute)": [[24, "arkouda.Categorical.permutation", false], [24, "id2", false], [24, "id40", false], [24, "id67", false], [24, "id9", false], [24, "id98", false], [88, "arkouda.Categorical.permutation", false]], "permutation (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.permutation", false], [17, "id2", false]], "permutation (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.permutation", false], [24, "id248", false], [24, "id295", false], [24, "id342", false], [24, "id389", false], [24, "id436", false], [91, "arkouda.GroupBy.permutation", false]], "permutation (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.permutation", false]], "permutation() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.permutation", false]], "permutation() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.permutation", false]], "permutation() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.permutation", false]], "permute_dims() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.permute_dims", false]], "pi (in module arkouda)": [[24, "arkouda.pi", false]], "pi (in module arkouda.numpy)": [[35, "arkouda.numpy.pi", false]], "pinf (in module arkouda)": [[24, "arkouda.PINF", false]], "pinf (in module arkouda.numpy)": [[35, "arkouda.numpy.PINF", false]], "plot_dist() (in module arkouda)": [[24, "arkouda.plot_dist", false]], "plot_dist() (in module arkouda.plotting)": [[41, "arkouda.plotting.plot_dist", false]], "poisson() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.poisson", false]], "poisson() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.poisson", false]], "poisson() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.poisson", false]], "pop() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.pop", false]], "pop() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.pop", false]], "pop() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.pop", false]], "pop() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.pop", false]], "pop() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.pop", false]], "pop() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.pop", false]], "pop() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.pop", false]], "pop() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.pop", false]], "pop() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.pop", false]], "pop() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.pop", false]], "pop() (arkouda.sctypes method)": [[24, "arkouda.sctypes.pop", false]], "pop() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.pop", false]], "popcount() (arkouda.pdarray method)": [[24, "arkouda.pdarray.popcount", false], [24, "id1036", false], [24, "id1107", false], [24, "id1178", false], [24, "id1249", false], [24, "id965", false]], "popcount() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.popcount", false]], "popcount() (in module arkouda)": [[24, "arkouda.popcount", false]], "popcount() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.popcount", false]], "popitem() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.popitem", false]], "popitem() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.popitem", false]], "popitem() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.popitem", false]], "popitem() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.popitem", false]], "popitem() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.popitem", false]], "popitem() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.popitem", false]], "popitem() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.popitem", false]], "popitem() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.popitem", false]], "popitem() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.popitem", false]], "popitem() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.popitem", false]], "popitem() (arkouda.sctypes method)": [[24, "arkouda.sctypes.popitem", false]], "popitem() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.popitem", false]], "populated (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.populated", false]], "positive() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.positive", false]], "pow() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.pow", false]], "power() (in module arkouda)": [[24, "arkouda.power", false]], "power() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.power", false]], "power_divergence() (in module arkouda)": [[24, "arkouda.power_divergence", false]], "power_divergence() (in module arkouda.scipy)": [[44, "arkouda.scipy.power_divergence", false]], "power_divergenceresult (class in arkouda)": [[24, "arkouda.Power_divergenceResult", false]], "power_divergenceresult (class in arkouda.scipy)": [[44, "arkouda.scipy.Power_divergenceResult", false]], "precision (arkouda.finfo attribute)": [[24, "arkouda.finfo.precision", false]], "precision (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.precision", false]], "prepend_single() (arkouda.segarray method)": [[24, "arkouda.SegArray.prepend_single", false]], "prepend_single() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.prepend_single", false]], "prepend_single() (in module arkouda.segarray)": [[96, "arkouda.SegArray.prepend_single", false]], "pretty_print_info() (arkouda.categorical method)": [[24, "arkouda.Categorical.pretty_print_info", false], [24, "id41", false], [24, "id99", false]], "pretty_print_info() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.pretty_print_info", false]], "pretty_print_info() (arkouda.pdarray method)": [[24, "arkouda.pdarray.pretty_print_info", false], [24, "id1037", false], [24, "id1108", false], [24, "id1179", false], [24, "id1250", false], [24, "id966", false]], "pretty_print_info() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.pretty_print_info", false]], "pretty_print_info() (arkouda.strings method)": [[24, "arkouda.Strings.pretty_print_info", false], [24, "id544", false], [24, "id620", false], [24, "id696", false], [24, "id772", false]], "pretty_print_info() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.pretty_print_info", false]], "pretty_print_information() (in module arkouda)": [[24, "arkouda.pretty_print_information", false]], "pretty_print_information() (in module arkouda.infoclass)": [[26, "arkouda.infoclass.pretty_print_information", false]], "print_server_commands() (in module arkouda.client)": [[18, "arkouda.client.print_server_commands", false]], "prod() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.prod", false]], "prod() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.prod", false]], "prod() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.prod", false]], "prod() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.prod", false]], "prod() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.prod", false]], "prod() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.prod", false]], "prod() (arkouda.groupby method)": [[24, "arkouda.GroupBy.prod", false], [24, "id279", false], [24, "id326", false], [24, "id373", false], [24, "id420", false], [24, "id467", false], [91, "arkouda.GroupBy.prod", false]], "prod() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.prod", false]], "prod() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.prod", false]], "prod() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.prod", false]], "prod() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.prod", false]], "prod() (arkouda.pdarray method)": [[24, "arkouda.pdarray.prod", false], [24, "id1038", false], [24, "id1109", false], [24, "id1180", false], [24, "id1251", false], [24, "id967", false], [92, "arkouda.pdarray.prod", false]], "prod() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.prod", false]], "prod() (arkouda.segarray method)": [[24, "arkouda.SegArray.prod", false]], "prod() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.prod", false]], "prod() (arkouda.series method)": [[24, "arkouda.Series.prod", false]], "prod() (arkouda.series.series method)": [[49, "arkouda.series.Series.prod", false]], "prod() (arkouda.str_ method)": [[24, "arkouda.str_.prod", false], [24, "id1326", false]], "prod() (in module arkouda)": [[24, "arkouda.prod", false], [87, "arkouda.prod", false]], "prod() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.prod", false]], "prod() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.prod", false]], "promote_to_common_dtype() (in module arkouda)": [[24, "arkouda.promote_to_common_dtype", false]], "promote_to_common_dtype() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.promote_to_common_dtype", false]], "properties (class in arkouda)": [[24, "arkouda.Properties", false]], "properties (class in arkouda.accessor)": [[2, "arkouda.accessor.Properties", false]], "ptp() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.ptp", false]], "ptp() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.ptp", false]], "ptp() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.ptp", false]], "ptp() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.ptp", false]], "ptp() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.ptp", false]], "ptp() (arkouda.str_ method)": [[24, "arkouda.str_.ptp", false], [24, "id1327", false]], "purge_cached_regex_patterns() (arkouda.strings method)": [[24, "arkouda.Strings.purge_cached_regex_patterns", false], [24, "id545", false], [24, "id621", false], [24, "id697", false], [24, "id773", false]], "purge_cached_regex_patterns() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.purge_cached_regex_patterns", false]], "put() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.put", false]], "put() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.put", false]], "put() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.put", false]], "put() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.put", false]], "put() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.put", false]], "put() (arkouda.str_ method)": [[24, "arkouda.str_.put", false], [24, "id1328", false]], "putmask() (in module arkouda)": [[24, "arkouda.putmask", false]], "putmask() (in module arkouda.numpy)": [[35, "arkouda.numpy.putmask", false]], "pvalue (arkouda.power_divergenceresult attribute)": [[24, "arkouda.Power_divergenceResult.pvalue", false]], "pvalue (arkouda.scipy.power_divergenceresult attribute)": [[44, "arkouda.scipy.Power_divergenceResult.pvalue", false]], "pzero (in module arkouda)": [[24, "arkouda.PZERO", false]], "pzero (in module arkouda.numpy)": [[35, "arkouda.numpy.PZERO", false]], "rad2deg() (in module arkouda)": [[24, "arkouda.rad2deg", false]], "rad2deg() (in module arkouda.numpy)": [[35, "arkouda.numpy.rad2deg", false]], "randint() (in module arkouda)": [[24, "arkouda.randint", false], [89, "arkouda.randint", false]], "randint() (in module arkouda.numpy.random)": [[36, "arkouda.numpy.random.randint", false]], "randint() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.randint", false]], "randint() (in module arkouda.random)": [[42, "arkouda.random.randint", false]], "random() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.random", false]], "random() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.random", false]], "random() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.random", false]], "random_sparse_matrix() (in module arkouda.sparsematrix)": [[52, "arkouda.sparsematrix.random_sparse_matrix", false]], "random_strings_lognormal() (in module arkouda)": [[24, "arkouda.random_strings_lognormal", false]], "random_strings_lognormal() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.random_strings_lognormal", false]], "random_strings_uniform() (in module arkouda)": [[24, "arkouda.random_strings_uniform", false]], "random_strings_uniform() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.random_strings_uniform", false]], "rankwarning (class in arkouda)": [[24, "arkouda.RankWarning", false]], "rankwarning (class in arkouda.numpy)": [[35, "arkouda.numpy.RankWarning", false]], "ravel() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.ravel", false]], "ravel() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.ravel", false]], "ravel() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.ravel", false]], "ravel() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.ravel", false]], "ravel() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.ravel", false]], "ravel() (arkouda.str_ method)": [[24, "arkouda.str_.ravel", false], [24, "id1329", false]], "re (arkouda.match.match attribute)": [[31, "arkouda.match.Match.re", false]], "read() (in module arkouda)": [[24, "arkouda.read", false], [84, "arkouda.read", false]], "read() (in module arkouda.io)": [[27, "arkouda.io.read", false]], "read_csv() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.read_csv", false], [24, "id157", false]], "read_csv() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.read_csv", false]], "read_csv() (in module arkouda)": [[24, "arkouda.read_csv", false]], "read_csv() (in module arkouda.io)": [[27, "arkouda.io.read_csv", false]], "read_hdf() (arkouda.segarray class method)": [[24, "arkouda.SegArray.read_hdf", false]], "read_hdf() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.read_hdf", false]], "read_hdf() (in module arkouda)": [[24, "arkouda.read_hdf", false]], "read_hdf() (in module arkouda.io)": [[27, "arkouda.io.read_hdf", false]], "read_parquet() (in module arkouda)": [[24, "arkouda.read_parquet", false]], "read_parquet() (in module arkouda.io)": [[27, "arkouda.io.read_parquet", false]], "read_tagged_data() (in module arkouda)": [[24, "arkouda.read_tagged_data", false]], "read_tagged_data() (in module arkouda.io)": [[27, "arkouda.io.read_tagged_data", false]], "read_zarr() (in module arkouda)": [[24, "arkouda.read_zarr", false]], "read_zarr() (in module arkouda.io)": [[27, "arkouda.io.read_zarr", false]], "real() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.real", false]], "real() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.real", false]], "real() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.real", false]], "real() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.real", false]], "real() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.real", false]], "real() (arkouda.str_ method)": [[24, "arkouda.str_.real", false], [24, "id1330", false]], "real() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.real", false]], "receive() (in module arkouda)": [[24, "arkouda.receive", false]], "receive() (in module arkouda.io)": [[27, "arkouda.io.receive", false]], "receive_dataframe() (in module arkouda)": [[24, "arkouda.receive_dataframe", false]], "receive_dataframe() (in module arkouda.io)": [[27, "arkouda.io.receive_dataframe", false]], "reductions() (arkouda.groupby method)": [[24, "arkouda.GroupBy.Reductions", false], [24, "id256", false], [24, "id303", false], [24, "id350", false], [24, "id397", false], [24, "id444", false]], "reductions() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.Reductions", false]], "regex_split() (arkouda.strings method)": [[24, "arkouda.Strings.regex_split", false], [24, "id546", false], [24, "id622", false], [24, "id698", false], [24, "id774", false]], "regex_split() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.regex_split", false]], "register() (arkouda.bitvector method)": [[24, "arkouda.BitVector.register", false]], "register() (arkouda.categorical method)": [[24, "arkouda.Categorical.register", false], [24, "id100", false], [24, "id42", false]], "register() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.register", false]], "register() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.register", false]], "register() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.register", false]], "register() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.register", false], [24, "id158", false]], "register() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.register", false]], "register() (arkouda.datetime method)": [[24, "arkouda.Datetime.register", false], [24, "id194", false], [24, "id227", false]], "register() (arkouda.groupby method)": [[24, "arkouda.GroupBy.register", false], [24, "id280", false], [24, "id327", false], [24, "id374", false], [24, "id421", false], [24, "id468", false], [91, "arkouda.GroupBy.register", false]], "register() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.register", false]], "register() (arkouda.index method)": [[24, "arkouda.Index.register", false]], "register() (arkouda.index.index method)": [[25, "arkouda.index.Index.register", false]], "register() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.register", false]], "register() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.register", false]], "register() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.register", false]], "register() (arkouda.pdarray method)": [[24, "arkouda.pdarray.register", false], [24, "id1039", false], [24, "id1110", false], [24, "id1181", false], [24, "id1252", false], [24, "id968", false]], "register() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.register", false]], "register() (arkouda.segarray method)": [[24, "arkouda.SegArray.register", false]], "register() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.register", false]], "register() (arkouda.series method)": [[24, "arkouda.Series.register", false]], "register() (arkouda.series.series method)": [[49, "arkouda.series.Series.register", false]], "register() (arkouda.strings method)": [[24, "arkouda.Strings.register", false], [24, "id547", false], [24, "id623", false], [24, "id699", false], [24, "id775", false]], "register() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.register", false]], "register() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.register", false]], "register() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.register", false]], "register() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.register", false], [24, "id804", false]], "register() (in module arkouda.util)": [[56, "arkouda.util.register", false]], "register_all() (in module arkouda)": [[24, "arkouda.register_all", false]], "register_all() (in module arkouda.util)": [[56, "arkouda.util.register_all", false]], "registerablepieces (arkouda.categorical attribute)": [[24, "arkouda.Categorical.RegisterablePieces", false], [24, "id16", false], [24, "id74", false]], "registerablepieces (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.RegisterablePieces", false]], "registered_name (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.registered_name", false]], "registered_name (arkouda.categorical attribute)": [[24, "arkouda.Categorical.registered_name", false], [24, "id101", false], [24, "id43", false]], "registered_name (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.registered_name", false]], "registered_name (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.registered_name", false]], "registered_name (arkouda.index attribute)": [[24, "arkouda.Index.registered_name", false]], "registered_name (arkouda.index.index attribute)": [[25, "arkouda.index.Index.registered_name", false]], "registered_name (arkouda.index.multiindex attribute)": [[25, "arkouda.index.MultiIndex.registered_name", false]], "registered_name (arkouda.multiindex attribute)": [[24, "arkouda.MultiIndex.registered_name", false]], "registered_name (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.registered_name", false], [24, "id1040", false], [24, "id1111", false], [24, "id1182", false], [24, "id1253", false], [24, "id969", false]], "registered_name (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.registered_name", false]], "registered_name (arkouda.segarray attribute)": [[24, "arkouda.SegArray.registered_name", false]], "registered_name (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.registered_name", false]], "registered_name (arkouda.strings attribute)": [[24, "arkouda.Strings.registered_name", false], [24, "id548", false], [24, "id624", false], [24, "id700", false], [24, "id776", false]], "registered_name (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.registered_name", false]], "registeredsymbols (in module arkouda)": [[24, "arkouda.RegisteredSymbols", false]], "registeredsymbols (in module arkouda.infoclass)": [[26, "arkouda.infoclass.RegisteredSymbols", false]], "registrationerror": [[24, "arkouda.RegistrationError", false], [24, "id484", false], [24, "id485", false], [24, "id486", false], [24, "id487", false], [37, "arkouda.pdarrayclass.RegistrationError", false]], "remainder() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.remainder", false]], "remove_repeats() (arkouda.segarray method)": [[24, "arkouda.SegArray.remove_repeats", false]], "remove_repeats() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.remove_repeats", false]], "remove_repeats() (in module arkouda.segarray)": [[96, "arkouda.SegArray.remove_repeats", false]], "rename() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.rename", false], [24, "id159", false]], "rename() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.rename", false]], "rename() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.rename", false]], "repeat() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.repeat", false]], "repeat() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.repeat", false]], "repeat() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.repeat", false]], "repeat() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.repeat", false]], "repeat() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.repeat", false]], "repeat() (arkouda.str_ method)": [[24, "arkouda.str_.repeat", false], [24, "id1331", false]], "repeat() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.repeat", false]], "report_mem() (in module arkouda.util)": [[56, "arkouda.util.report_mem", false]], "requiredpieces (arkouda.categorical attribute)": [[24, "arkouda.Categorical.RequiredPieces", false], [24, "id17", false], [24, "id75", false]], "requiredpieces (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.RequiredPieces", false]], "reset_categories() (arkouda.categorical method)": [[24, "arkouda.Categorical.reset_categories", false], [24, "id102", false], [24, "id44", false]], "reset_categories() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.reset_categories", false]], "reset_index() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.reset_index", false], [24, "id160", false]], "reset_index() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.reset_index", false]], "reset_index() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.reset_index", false]], "reshape() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.reshape", false]], "reshape() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.reshape", false]], "reshape() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.reshape", false]], "reshape() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.reshape", false]], "reshape() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.reshape", false]], "reshape() (arkouda.pdarray method)": [[24, "arkouda.pdarray.reshape", false], [24, "id1041", false], [24, "id1112", false], [24, "id1183", false], [24, "id1254", false], [24, "id970", false]], "reshape() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.reshape", false]], "reshape() (arkouda.str_ method)": [[24, "arkouda.str_.reshape", false], [24, "id1332", false]], "reshape() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.reshape", false]], "resize() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.resize", false]], "resize() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.resize", false]], "resize() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.resize", false]], "resize() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.resize", false]], "resize() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.resize", false]], "resize() (arkouda.str_ method)": [[24, "arkouda.str_.resize", false], [24, "id1333", false]], "resolution (arkouda.finfo attribute)": [[24, "arkouda.finfo.resolution", false]], "resolution (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.resolution", false]], "resolve_scalar_dtype() (in module arkouda)": [[24, "arkouda.resolve_scalar_dtype", false]], "resolve_scalar_dtype() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.resolve_scalar_dtype", false]], "resolve_scalar_dtype() (in module arkouda.numpy)": [[35, "arkouda.numpy.resolve_scalar_dtype", false]], "resolve_scalar_dtype() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.resolve_scalar_dtype", false]], "restore() (in module arkouda)": [[24, "arkouda.restore", false]], "restore() (in module arkouda.io)": [[27, "arkouda.io.restore", false]], "result_type() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.result_type", false]], "retrieve() (arkouda.history.historyretriever method)": [[23, "arkouda.history.HistoryRetriever.retrieve", false]], "retrieve() (arkouda.history.notebookhistoryretriever method)": [[23, "arkouda.history.NotebookHistoryRetriever.retrieve", false]], "retrieve() (arkouda.history.shellhistoryretriever method)": [[23, "arkouda.history.ShellHistoryRetriever.retrieve", false]], "return_validity() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.return_validity", false]], "return_validity() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.return_validity", false]], "reverse (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.reverse", false]], "reverse (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.reverse", false]], "right_align() (in module arkouda)": [[24, "arkouda.right_align", false]], "right_align() (in module arkouda.alignment)": [[3, "arkouda.alignment.right_align", false]], "roll() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.roll", false]], "rotl() (arkouda.pdarray method)": [[24, "arkouda.pdarray.rotl", false], [24, "id1042", false], [24, "id1113", false], [24, "id1184", false], [24, "id1255", false], [24, "id971", false]], "rotl() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.rotl", false]], "rotl() (in module arkouda)": [[24, "arkouda.rotl", false]], "rotl() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.rotl", false]], "rotr() (arkouda.pdarray method)": [[24, "arkouda.pdarray.rotr", false], [24, "id1043", false], [24, "id1114", false], [24, "id1185", false], [24, "id1256", false], [24, "id972", false]], "rotr() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.rotr", false]], "rotr() (in module arkouda)": [[24, "arkouda.rotr", false]], "rotr() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.rotr", false]], "round() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.round", false]], "round() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.round", false]], "round() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.round", false]], "round() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.round", false]], "round() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.round", false]], "round() (arkouda.str_ method)": [[24, "arkouda.str_.round", false], [24, "id1334", false]], "round() (in module arkouda)": [[24, "arkouda.round", false]], "round() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.round", false]], "round() (in module arkouda.numpy)": [[35, "arkouda.numpy.round", false]], "row (class in arkouda)": [[24, "arkouda.Row", false]], "row (class in arkouda.row)": [[43, "arkouda.row.Row", false]], "rpeel() (arkouda.strings method)": [[24, "arkouda.Strings.rpeel", false], [24, "id549", false], [24, "id625", false], [24, "id701", false], [24, "id777", false], [100, "arkouda.Strings.rpeel", false]], "rpeel() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.rpeel", false]], "ruok() (in module arkouda.client)": [[18, "arkouda.client.ruok", false]], "sample() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.sample", false], [24, "id161", false]], "sample() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.sample", false]], "sample() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.sample", false]], "sample() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.sample", false]], "sample() (arkouda.groupby method)": [[24, "arkouda.GroupBy.sample", false], [24, "id281", false], [24, "id328", false], [24, "id375", false], [24, "id422", false], [24, "id469", false], [91, "arkouda.GroupBy.sample", false]], "sample() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.sample", false]], "save() (arkouda.categorical method)": [[24, "arkouda.Categorical.save", false], [24, "id103", false], [24, "id45", false]], "save() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.save", false]], "save() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.save", false], [24, "id162", false]], "save() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.save", false]], "save() (arkouda.index method)": [[24, "arkouda.Index.save", false]], "save() (arkouda.index.index method)": [[25, "arkouda.index.Index.save", false]], "save() (arkouda.pdarray method)": [[24, "arkouda.pdarray.save", false], [24, "id1044", false], [24, "id1115", false], [24, "id1186", false], [24, "id1257", false], [24, "id973", false]], "save() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.save", false]], "save() (arkouda.segarray method)": [[24, "arkouda.SegArray.save", false]], "save() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.save", false]], "save() (arkouda.strings method)": [[24, "arkouda.Strings.save", false], [24, "id550", false], [24, "id626", false], [24, "id702", false], [24, "id778", false]], "save() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.save", false]], "save_all() (in module arkouda)": [[24, "arkouda.save_all", false]], "save_all() (in module arkouda.io)": [[27, "arkouda.io.save_all", false]], "scalar_array() (in module arkouda)": [[24, "arkouda.scalar_array", false]], "scalar_array() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.scalar_array", false]], "scalardtypes (class in arkouda)": [[24, "arkouda.ScalarDTypes", false]], "scalardtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ScalarDTypes", false]], "scalardtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.ScalarDTypes", false]], "scalardtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ScalarDTypes", false]], "scalartype (class in arkouda)": [[24, "arkouda.ScalarType", false]], "scalartype (class in arkouda.numpy)": [[35, "arkouda.numpy.ScalarType", false]], "sctypedict (class in arkouda)": [[24, "arkouda.sctypeDict", false]], "sctypedict (class in arkouda.numpy)": [[35, "arkouda.numpy.sctypeDict", false]], "sctypes (class in arkouda)": [[24, "arkouda.sctypes", false]], "sctypes (class in arkouda.numpy)": [[35, "arkouda.numpy.sctypes", false]], "search() (arkouda.strings method)": [[24, "arkouda.Strings.search", false], [24, "id551", false], [24, "id627", false], [24, "id703", false], [24, "id779", false], [100, "arkouda.Strings.search", false]], "search() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.search", false]], "search_bool (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.search_bool", false]], "search_ind (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.search_ind", false]], "search_intervals() (in module arkouda)": [[24, "arkouda.search_intervals", false]], "search_intervals() (in module arkouda.alignment)": [[3, "arkouda.alignment.search_intervals", false]], "searchsorted() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.searchsorted", false]], "searchsorted() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.searchsorted", false]], "searchsorted() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.searchsorted", false]], "searchsorted() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.searchsorted", false]], "searchsorted() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.searchsorted", false]], "searchsorted() (arkouda.str_ method)": [[24, "arkouda.str_.searchsorted", false], [24, "id1335", false]], "searchsorted() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.searchsorted", false]], "second (arkouda.datetime property)": [[24, "arkouda.Datetime.second", false], [24, "id195", false], [24, "id228", false]], "second (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.second", false]], "seconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.seconds", false]], "seconds (arkouda.timedelta property)": [[24, "arkouda.Timedelta.seconds", false], [24, "id805", false]], "seg_suffix (in module arkouda)": [[24, "arkouda.SEG_SUFFIX", false]], "seg_suffix (in module arkouda.segarray)": [[48, "arkouda.segarray.SEG_SUFFIX", false]], "segarray (class in arkouda)": [[24, "arkouda.SegArray", false]], "segarray (class in arkouda.segarray)": [[48, "arkouda.segarray.SegArray", false]], "segarray() (in module arkouda)": [[24, "arkouda.segarray", false]], "segarray() (in module arkouda.segarray)": [[48, "arkouda.segarray.segarray", false]], "segments (arkouda.categorical attribute)": [[24, "arkouda.Categorical.segments", false], [24, "id10", false], [24, "id104", false], [24, "id3", false], [24, "id46", false], [24, "id68", false], [88, "arkouda.Categorical.segments", false]], "segments (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.segments", false], [17, "id3", false]], "segments (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.segments", false], [24, "id251", false], [24, "id298", false], [24, "id345", false], [24, "id392", false], [24, "id439", false], [91, "arkouda.GroupBy.segments", false]], "segments (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.segments", false]], "segments (arkouda.segarray attribute)": [[24, "arkouda.SegArray.segments", false]], "segments (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.segments", false]], "separator (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.separator", false]], "separator (arkouda.fields attribute)": [[24, "arkouda.Fields.separator", false]], "series (arkouda.accessor.datetimeaccessor attribute)": [[2, "arkouda.accessor.DatetimeAccessor.series", false]], "series (arkouda.accessor.stringaccessor attribute)": [[2, "arkouda.accessor.StringAccessor.series", false]], "series (arkouda.datetimeaccessor attribute)": [[24, "arkouda.DatetimeAccessor.series", false]], "series (arkouda.stringaccessor attribute)": [[24, "arkouda.StringAccessor.series", false]], "series (class in arkouda)": [[24, "arkouda.Series", false], [97, "arkouda.Series", false]], "series (class in arkouda.series)": [[49, "arkouda.series.Series", false]], "seriesdtypes (class in arkouda)": [[24, "arkouda.SeriesDTypes", false]], "seriesdtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.SeriesDTypes", false]], "seriesdtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.SeriesDTypes", false]], "seriesdtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.SeriesDTypes", false]], "set_categories() (arkouda.categorical method)": [[24, "arkouda.Categorical.set_categories", false], [24, "id105", false], [24, "id47", false]], "set_categories() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.set_categories", false]], "set_dtype() (arkouda.index method)": [[24, "arkouda.Index.set_dtype", false]], "set_dtype() (arkouda.index.index method)": [[25, "arkouda.index.Index.set_dtype", false]], "set_dtype() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.set_dtype", false]], "set_dtype() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.set_dtype", false]], "set_dtype() (in module arkouda.index)": [[85, "arkouda.Index.set_dtype", false]], "set_dtype() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.set_dtype", false]], "set_jth() (arkouda.segarray method)": [[24, "arkouda.SegArray.set_jth", false]], "set_jth() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.set_jth", false]], "set_jth() (in module arkouda.segarray)": [[96, "arkouda.SegArray.set_jth", false]], "setdefault() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.setdefault", false]], "setdefault() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.setdefault", false]], "setdefault() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.setdefault", false]], "setdefault() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.setdefault", false]], "setdefault() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.setdefault", false]], "setdefault() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.setdefault", false]], "setdefault() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.setdefault", false]], "setdefault() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.setdefault", false]], "setdefault() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.setdefault", false]], "setdefault() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.setdefault", false]], "setdefault() (arkouda.sctypes method)": [[24, "arkouda.sctypes.setdefault", false]], "setdefault() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.setdefault", false]], "setdiff() (arkouda.segarray method)": [[24, "arkouda.SegArray.setdiff", false]], "setdiff() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.setdiff", false]], "setdiff() (in module arkouda.segarray)": [[96, "arkouda.SegArray.setdiff", false]], "setdiff1d() (in module arkouda)": [[24, "arkouda.setdiff1d", false], [98, "arkouda.setdiff1d", false]], "setdiff1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.setdiff1d", false]], "setfield() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.setfield", false]], "setfield() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.setfield", false]], "setfield() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.setfield", false]], "setfield() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.setfield", false]], "setfield() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.setfield", false]], "setfield() (arkouda.str_ method)": [[24, "arkouda.str_.setfield", false], [24, "id1336", false]], "setflags() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.setflags", false]], "setflags() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.setflags", false]], "setflags() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.setflags", false]], "setflags() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.setflags", false]], "setflags() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.setflags", false]], "setflags() (arkouda.str_ method)": [[24, "arkouda.str_.setflags", false], [24, "id1337", false]], "setxor() (arkouda.segarray method)": [[24, "arkouda.SegArray.setxor", false]], "setxor() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.setxor", false]], "setxor() (in module arkouda.segarray)": [[96, "arkouda.SegArray.setxor", false]], "setxor1d() (in module arkouda)": [[24, "arkouda.setxor1d", false], [98, "arkouda.setxor1d", false]], "setxor1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.setxor1d", false]], "shape (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.shape", false]], "shape (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.shape", false]], "shape (arkouda.categorical attribute)": [[24, "arkouda.Categorical.shape", false], [24, "id106", false], [24, "id14", false], [24, "id4", false], [24, "id48", false], [24, "id72", false], [88, "arkouda.Categorical.shape", false]], "shape (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.shape", false], [17, "id4", false]], "shape (arkouda.dataframe property)": [[24, "arkouda.DataFrame.shape", false], [24, "id163", false]], "shape (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.shape", false]], "shape (arkouda.index property)": [[24, "arkouda.Index.shape", false]], "shape (arkouda.index.index property)": [[25, "arkouda.index.Index.shape", false]], "shape (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.shape", false], [24, "id1068", false], [24, "id1139", false], [24, "id1210", false], [24, "id926", false], [24, "id997", false], [94, "arkouda.pdarray.shape", false]], "shape (arkouda.pdarray property)": [[24, "id1045", false], [24, "id1116", false], [24, "id1187", false], [24, "id1258", false], [24, "id917", false], [24, "id974", false]], "shape (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.shape", false]], "shape (arkouda.pdarrayclass.pdarray property)": [[37, "id4", false]], "shape (arkouda.series property)": [[24, "arkouda.Series.shape", false]], "shape (arkouda.series.series property)": [[49, "arkouda.series.Series.shape", false]], "shape (arkouda.sparray attribute)": [[24, "arkouda.sparray.shape", false], [24, "id1285", false]], "shape (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.shape", false], [51, "id5", false]], "shape (arkouda.strings attribute)": [[24, "arkouda.Strings.shape", false], [24, "id498", false], [24, "id574", false], [24, "id650", false], [24, "id726", false]], "shape (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.shape", false]], "shape() (arkouda.bigint method)": [[24, "arkouda.bigint.shape", false], [24, "id848", false]], "shape() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.shape", false]], "shape() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.shape", false]], "shape() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.shape", false]], "shape() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.shape", false]], "shape() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.shape", false]], "shape() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.shape", false]], "shape() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.shape", false]], "shape() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.shape", false]], "shape() (arkouda.str_ method)": [[24, "arkouda.str_.shape", false], [24, "id1338", false]], "shapes() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.shapes", false]], "shellhistoryretriever (class in arkouda.history)": [[23, "arkouda.history.ShellHistoryRetriever", false]], "short (class in arkouda)": [[24, "arkouda.short", false]], "short (class in arkouda.numpy)": [[35, "arkouda.numpy.short", false]], "shortdtype (class in arkouda)": [[24, "arkouda.ShortDType", false]], "shortdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ShortDType", false]], "show_int (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.show_int", false]], "show_int (arkouda.fields attribute)": [[24, "arkouda.Fields.show_int", false]], "shuffle() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.shuffle", false]], "shuffle() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.shuffle", false]], "shuffle() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.shuffle", false]], "shutdown() (in module arkouda.client)": [[18, "arkouda.client.shutdown", false]], "sign() (in module arkouda)": [[24, "arkouda.sign", false]], "sign() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.sign", false]], "sign() (in module arkouda.numpy)": [[35, "arkouda.numpy.sign", false]], "signedinteger (class in arkouda)": [[24, "arkouda.signedinteger", false]], "signedinteger (class in arkouda.numpy)": [[35, "arkouda.numpy.signedinteger", false]], "sin() (in module arkouda)": [[24, "arkouda.sin", false], [87, "arkouda.sin", false]], "sin() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.sin", false]], "sin() (in module arkouda.numpy)": [[35, "arkouda.numpy.sin", false]], "single (class in arkouda)": [[24, "arkouda.single", false]], "single (class in arkouda.numpy)": [[35, "arkouda.numpy.single", false]], "sinh() (in module arkouda)": [[24, "arkouda.sinh", false]], "sinh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.sinh", false]], "sinh() (in module arkouda.numpy)": [[35, "arkouda.numpy.sinh", false]], "size (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.size", false]], "size (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.size", false]], "size (arkouda.categorical attribute)": [[24, "arkouda.Categorical.size", false], [24, "id107", false], [24, "id11", false], [24, "id49", false], [24, "id5", false], [24, "id69", false], [88, "arkouda.Categorical.size", false]], "size (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.size", false], [17, "id5", false]], "size (arkouda.dataframe property)": [[24, "arkouda.DataFrame.size", false], [24, "id164", false]], "size (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.size", false]], "size (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.size", false], [24, "id247", false], [24, "id294", false], [24, "id341", false], [24, "id388", false], [24, "id435", false], [91, "arkouda.GroupBy.size", false]], "size (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.size", false]], "size (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.size", false], [24, "id1046", false], [24, "id1066", false], [24, "id1117", false], [24, "id1137", false], [24, "id1188", false], [24, "id1208", false], [24, "id1259", false], [24, "id918", false], [24, "id924", false], [24, "id975", false], [24, "id995", false], [94, "arkouda.pdarray.size", false]], "size (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.size", false], [37, "id5", false]], "size (arkouda.segarray attribute)": [[24, "arkouda.SegArray.size", false]], "size (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.size", false]], "size (arkouda.sparray attribute)": [[24, "arkouda.sparray.size", false], [24, "id1286", false]], "size (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.size", false], [51, "id6", false]], "size (arkouda.strings attribute)": [[24, "arkouda.Strings.size", false], [24, "id495", false], [24, "id571", false], [24, "id647", false], [24, "id723", false]], "size (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.size", false]], "size() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.size", false]], "size() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.size", false]], "size() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.size", false]], "size() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.size", false]], "size() (arkouda.groupby method)": [[24, "id244", false], [24, "id282", false], [24, "id329", false], [24, "id376", false], [24, "id423", false], [24, "id470", false], [91, "id0", false]], "size() (arkouda.groupbyclass.groupby method)": [[22, "id0", false]], "size() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.size", false]], "size() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.size", false]], "size() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.size", false]], "size() (arkouda.str_ method)": [[24, "arkouda.str_.size", false], [24, "id1339", false]], "skew() (in module arkouda)": [[24, "arkouda.skew", false]], "slice_bits() (arkouda.pdarray method)": [[24, "arkouda.pdarray.slice_bits", false], [24, "id1047", false], [24, "id1118", false], [24, "id1189", false], [24, "id1260", false], [24, "id976", false]], "slice_bits() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.slice_bits", false]], "smallest_normal (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.smallest_normal", false]], "smallest_normal (arkouda.finfo attribute)": [[24, "arkouda.finfo.smallest_normal", false]], "smallest_normal (arkouda.finfo property)": [[24, "id873", false]], "smallest_normal (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.smallest_normal", false]], "smallest_normal (arkouda.numpy.finfo property)": [[35, "id0", false]], "smallest_subnormal (arkouda.finfo attribute)": [[24, "arkouda.finfo.smallest_subnormal", false]], "smallest_subnormal (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.smallest_subnormal", false]], "snapshot() (in module arkouda)": [[24, "arkouda.snapshot", false]], "snapshot() (in module arkouda.io)": [[27, "arkouda.io.snapshot", false]], "sort() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.sort", false]], "sort() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.sort", false]], "sort() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.sort", false]], "sort() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.sort", false]], "sort() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.sort", false]], "sort() (arkouda.str_ method)": [[24, "arkouda.str_.sort", false], [24, "id1340", false]], "sort() (in module arkouda)": [[24, "arkouda.sort", false]], "sort() (in module arkouda.array_api.sorting_functions)": [[14, "arkouda.array_api.sorting_functions.sort", false]], "sort() (in module arkouda.sorting)": [[50, "arkouda.sorting.sort", false]], "sort_index() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.sort_index", false], [24, "id165", false]], "sort_index() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.sort_index", false]], "sort_index() (arkouda.series method)": [[24, "arkouda.Series.sort_index", false]], "sort_index() (arkouda.series.series method)": [[49, "arkouda.series.Series.sort_index", false]], "sort_index() (in module arkouda.series)": [[97, "arkouda.Series.sort_index", false]], "sort_values() (arkouda.categorical method)": [[24, "arkouda.Categorical.sort_values", false], [24, "id108", false], [24, "id50", false]], "sort_values() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.sort_values", false]], "sort_values() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.sort_values", false], [24, "id166", false]], "sort_values() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.sort_values", false]], "sort_values() (arkouda.series method)": [[24, "arkouda.Series.sort_values", false]], "sort_values() (arkouda.series.series method)": [[49, "arkouda.series.Series.sort_values", false]], "sort_values() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.sort_values", false]], "sort_values() (in module arkouda.series)": [[97, "arkouda.Series.sort_values", false]], "sparray (class in arkouda)": [[24, "arkouda.sparray", false]], "sparray (class in arkouda.sparrayclass)": [[51, "arkouda.sparrayclass.sparray", false]], "sparse_matrix_matrix_mult() (in module arkouda.sparsematrix)": [[52, "arkouda.sparsematrix.sparse_matrix_matrix_mult", false]], "sparse_sum_help() (in module arkouda.util)": [[56, "arkouda.util.sparse_sum_help", false]], "special_objtype (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.special_objType", false]], "special_objtype (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.special_objType", false]], "special_objtype (arkouda.client_dtypes.ipv4 attribute)": [[19, "arkouda.client_dtypes.IPv4.special_objType", false]], "special_objtype (arkouda.datetime attribute)": [[24, "arkouda.Datetime.special_objType", false], [24, "id196", false], [24, "id229", false]], "special_objtype (arkouda.ipv4 attribute)": [[24, "arkouda.IPv4.special_objType", false]], "special_objtype (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.special_objType", false]], "special_objtype (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.special_objType", false]], "special_objtype (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.special_objType", false], [24, "id806", false]], "split() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.split", false]], "split() (arkouda.strings method)": [[24, "arkouda.Strings.split", false], [24, "id552", false], [24, "id628", false], [24, "id704", false], [24, "id780", false], [100, "arkouda.Strings.split", false]], "split() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.split", false]], "sqrt() (in module arkouda)": [[24, "arkouda.sqrt", false]], "sqrt() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.sqrt", false]], "sqrt() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.sqrt", false]], "square() (in module arkouda)": [[24, "arkouda.square", false]], "square() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.square", false]], "square() (in module arkouda.numpy)": [[35, "arkouda.numpy.square", false]], "squeeze() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.squeeze", false]], "squeeze() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.squeeze", false]], "squeeze() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.squeeze", false]], "squeeze() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.squeeze", false]], "squeeze() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.squeeze", false]], "squeeze() (arkouda.str_ method)": [[24, "arkouda.str_.squeeze", false], [24, "id1341", false]], "squeeze() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.squeeze", false]], "stack() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.stack", false]], "standard_exponential() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.standard_exponential", false]], "standard_exponential() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.standard_exponential", false]], "standard_exponential() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.standard_exponential", false]], "standard_normal() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.standard_normal", false]], "standard_normal() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.standard_normal", false]], "standard_normal() (in module arkouda)": [[24, "arkouda.standard_normal", false]], "standard_normal() (in module arkouda.numpy.random)": [[36, "arkouda.numpy.random.standard_normal", false]], "standard_normal() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.standard_normal", false]], "standard_normal() (in module arkouda.random)": [[42, "arkouda.random.standard_normal", false]], "standard_normal() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.standard_normal", false]], "standardize_categories() (arkouda.categorical class method)": [[24, "arkouda.Categorical.standardize_categories", false], [24, "id109", false], [24, "id51", false]], "standardize_categories() (arkouda.categorical.categorical class method)": [[17, "arkouda.categorical.Categorical.standardize_categories", false]], "start() (arkouda.match.match method)": [[31, "arkouda.match.Match.start", false], [100, "arkouda.match.Match.start", false]], "starts (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.starts", false]], "startswith() (arkouda.categorical method)": [[24, "arkouda.Categorical.startswith", false], [24, "id110", false], [24, "id52", false], [88, "arkouda.Categorical.startswith", false]], "startswith() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.startswith", false]], "startswith() (arkouda.strings method)": [[24, "arkouda.Strings.startswith", false], [24, "id553", false], [24, "id629", false], [24, "id705", false], [24, "id781", false], [100, "arkouda.Strings.startswith", false]], "startswith() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.startswith", false]], "statistic (arkouda.power_divergenceresult attribute)": [[24, "arkouda.Power_divergenceResult.statistic", false]], "statistic (arkouda.scipy.power_divergenceresult attribute)": [[44, "arkouda.scipy.Power_divergenceResult.statistic", false]], "std() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.std", false]], "std() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.std", false]], "std() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.std", false]], "std() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.std", false]], "std() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.std", false]], "std() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.std", false]], "std() (arkouda.groupby method)": [[24, "arkouda.GroupBy.std", false], [24, "id283", false], [24, "id330", false], [24, "id377", false], [24, "id424", false], [24, "id471", false], [91, "arkouda.GroupBy.std", false]], "std() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.std", false]], "std() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.std", false]], "std() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.std", false]], "std() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.std", false]], "std() (arkouda.pdarray method)": [[24, "arkouda.pdarray.std", false], [24, "id1048", false], [24, "id1119", false], [24, "id1190", false], [24, "id1261", false], [24, "id977", false], [92, "arkouda.pdarray.std", false]], "std() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.std", false]], "std() (arkouda.series method)": [[24, "arkouda.Series.std", false]], "std() (arkouda.series.series method)": [[49, "arkouda.series.Series.std", false]], "std() (arkouda.str_ method)": [[24, "arkouda.str_.std", false], [24, "id1342", false]], "std() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.std", false]], "std() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.std", false], [24, "id807", false]], "std() (in module arkouda)": [[24, "arkouda.std", false], [87, "arkouda.std", false]], "std() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.std", false]], "std() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.std", false]], "stick() (arkouda.strings method)": [[24, "arkouda.Strings.stick", false], [24, "id554", false], [24, "id630", false], [24, "id706", false], [24, "id782", false], [100, "arkouda.Strings.stick", false]], "stick() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.stick", false]], "str() (arkouda.dtype method)": [[24, "arkouda.DType.STR", false]], "str() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.STR", false]], "str() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.STR", false]], "str() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.STR", false]], "str_ (class in arkouda)": [[24, "arkouda.str_", false], [24, "id1287", false]], "str_ (class in arkouda.dtypes)": [[21, "arkouda.dtypes.str_", false]], "str_ (class in arkouda.numpy)": [[35, "arkouda.numpy.str_", false]], "str_ (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.str_", false]], "str_acc() (arkouda.series method)": [[24, "arkouda.Series.str_acc", false]], "str_acc() (arkouda.series.series method)": [[49, "arkouda.series.Series.str_acc", false]], "str_scalars (class in arkouda)": [[24, "arkouda.str_scalars", false]], "str_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.str_scalars", false]], "str_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.str_scalars", false]], "str_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.str_scalars", false]], "strdtype (class in arkouda)": [[24, "arkouda.StrDType", false]], "strdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.StrDType", false]], "strict() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.strict", false]], "strict() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.strict", false]], "strides() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.strides", false]], "strides() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.strides", false]], "strides() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.strides", false]], "strides() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.strides", false]], "strides() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.strides", false]], "strides() (arkouda.str_ method)": [[24, "arkouda.str_.strides", false], [24, "id1343", false]], "string_operators() (in module arkouda)": [[24, "arkouda.string_operators", false]], "string_operators() (in module arkouda.accessor)": [[2, "arkouda.accessor.string_operators", false]], "stringaccessor (class in arkouda)": [[24, "arkouda.StringAccessor", false]], "stringaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.StringAccessor", false]], "strings (class in arkouda)": [[24, "arkouda.Strings", false], [24, "id493", false], [24, "id569", false], [24, "id645", false], [24, "id721", false]], "strings (class in arkouda.strings)": [[53, "arkouda.strings.Strings", false]], "strip() (arkouda.strings method)": [[24, "arkouda.Strings.strip", false], [24, "id555", false], [24, "id631", false], [24, "id707", false], [24, "id783", false]], "strip() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.strip", false]], "sub() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.sub", false]], "sub() (arkouda.strings method)": [[24, "arkouda.Strings.sub", false], [24, "id556", false], [24, "id632", false], [24, "id708", false], [24, "id784", false], [100, "arkouda.Strings.sub", false]], "sub() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.sub", false]], "subn() (arkouda.strings method)": [[24, "arkouda.Strings.subn", false], [24, "id557", false], [24, "id633", false], [24, "id709", false], [24, "id785", false], [100, "arkouda.Strings.subn", false]], "subn() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.subn", false]], "subtract() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.subtract", false]], "sum() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.sum", false]], "sum() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.sum", false]], "sum() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.sum", false]], "sum() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.sum", false]], "sum() (arkouda.datetime method)": [[24, "arkouda.Datetime.sum", false], [24, "id197", false], [24, "id230", false]], "sum() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.sum", false]], "sum() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.sum", false]], "sum() (arkouda.groupby method)": [[24, "arkouda.GroupBy.sum", false], [24, "id284", false], [24, "id331", false], [24, "id378", false], [24, "id425", false], [24, "id472", false], [91, "arkouda.GroupBy.sum", false]], "sum() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.sum", false]], "sum() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.sum", false]], "sum() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.sum", false]], "sum() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.sum", false]], "sum() (arkouda.pdarray method)": [[24, "arkouda.pdarray.sum", false], [24, "id1049", false], [24, "id1120", false], [24, "id1191", false], [24, "id1262", false], [24, "id978", false], [92, "arkouda.pdarray.sum", false]], "sum() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.sum", false]], "sum() (arkouda.segarray method)": [[24, "arkouda.SegArray.sum", false]], "sum() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.sum", false]], "sum() (arkouda.series method)": [[24, "arkouda.Series.sum", false]], "sum() (arkouda.series.series method)": [[49, "arkouda.series.Series.sum", false]], "sum() (arkouda.str_ method)": [[24, "arkouda.str_.sum", false], [24, "id1344", false]], "sum() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.sum", false]], "sum() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.sum", false]], "sum() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.sum", false], [24, "id808", false]], "sum() (in module arkouda)": [[24, "arkouda.sum", false], [87, "arkouda.sum", false]], "sum() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.sum", false]], "sum() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.sum", false]], "supported_opeq (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_opeq", false], [24, "id198", false], [24, "id231", false]], "supported_opeq (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_opeq", false]], "supported_opeq (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_opeq", false]], "supported_opeq (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_opeq", false], [24, "id809", false]], "supported_with_datetime (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_datetime", false], [24, "id199", false], [24, "id232", false]], "supported_with_datetime (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_datetime", false]], "supported_with_datetime (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_datetime", false]], "supported_with_datetime (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_datetime", false], [24, "id810", false]], "supported_with_pdarray (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_pdarray", false], [24, "id200", false], [24, "id233", false]], "supported_with_pdarray (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_pdarray", false]], "supported_with_pdarray (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_pdarray", false]], "supported_with_pdarray (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_pdarray", false], [24, "id811", false]], "supported_with_r_datetime (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_r_datetime", false], [24, "id201", false], [24, "id234", false]], "supported_with_r_datetime (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_datetime", false]], "supported_with_r_datetime (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_datetime", false]], "supported_with_r_datetime (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_r_datetime", false], [24, "id812", false]], "supported_with_r_pdarray (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_r_pdarray", false], [24, "id202", false], [24, "id235", false]], "supported_with_r_pdarray (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_pdarray", false]], "supported_with_r_pdarray (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_pdarray", false]], "supported_with_r_pdarray (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_r_pdarray", false], [24, "id813", false]], "supported_with_r_timedelta (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_r_timedelta", false], [24, "id203", false], [24, "id236", false]], "supported_with_r_timedelta (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_timedelta", false]], "supported_with_r_timedelta (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_timedelta", false]], "supported_with_r_timedelta (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_r_timedelta", false], [24, "id814", false]], "supported_with_timedelta (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_timedelta", false], [24, "id204", false], [24, "id237", false]], "supported_with_timedelta (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_timedelta", false]], "supported_with_timedelta (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_timedelta", false]], "supported_with_timedelta (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_timedelta", false], [24, "id815", false]], "swapaxes() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.swapaxes", false]], "swapaxes() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.swapaxes", false]], "swapaxes() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.swapaxes", false]], "swapaxes() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.swapaxes", false]], "swapaxes() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.swapaxes", false]], "swapaxes() (arkouda.str_ method)": [[24, "arkouda.str_.swapaxes", false], [24, "id1345", false]], "symmetric_difference() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes method)": [[24, "arkouda.DTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.inttypes method)": [[24, "arkouda.intTypes.symmetric_difference", false], [24, "id892", false], [24, "id901", false]], "symmetric_difference() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.symmetric_difference", false]], "t (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.T", false]], "t (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.T", false]], "t() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.T", false]], "t() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.T", false]], "t() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.T", false]], "t() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.T", false]], "t() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.T", false]], "t() (arkouda.str_ method)": [[24, "arkouda.str_.T", false], [24, "id1288", false]], "tail() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.tail", false], [24, "id167", false]], "tail() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.tail", false]], "tail() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.tail", false]], "tail() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.tail", false]], "tail() (arkouda.groupby method)": [[24, "arkouda.GroupBy.tail", false], [24, "id285", false], [24, "id332", false], [24, "id379", false], [24, "id426", false], [24, "id473", false], [91, "arkouda.GroupBy.tail", false]], "tail() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.tail", false]], "tail() (arkouda.series method)": [[24, "arkouda.Series.tail", false]], "tail() (arkouda.series.series method)": [[49, "arkouda.series.Series.tail", false]], "tail() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.tail", false]], "tail() (in module arkouda.series)": [[97, "arkouda.Series.tail", false]], "take() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.take", false]], "take() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.take", false]], "take() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.take", false]], "take() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.take", false]], "take() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.take", false]], "take() (arkouda.str_ method)": [[24, "arkouda.str_.take", false], [24, "id1346", false]], "take() (in module arkouda.array_api.indexing_functions)": [[9, "arkouda.array_api.indexing_functions.take", false]], "tan() (in module arkouda)": [[24, "arkouda.tan", false]], "tan() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.tan", false]], "tan() (in module arkouda.numpy)": [[35, "arkouda.numpy.tan", false]], "tanh() (in module arkouda)": [[24, "arkouda.tanh", false]], "tanh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.tanh", false]], "tanh() (in module arkouda.numpy)": [[35, "arkouda.numpy.tanh", false]], "tensordot() (in module arkouda.array_api.linalg)": [[10, "arkouda.array_api.linalg.tensordot", false]], "tile() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.tile", false]], "timedelta (class in arkouda)": [[24, "arkouda.Timedelta", false], [24, "id797", false]], "timedelta (class in arkouda.timeclass)": [[55, "arkouda.timeclass.Timedelta", false]], "timedelta64 (class in arkouda)": [[24, "arkouda.timedelta64", false]], "timedelta64 (class in arkouda.numpy)": [[35, "arkouda.numpy.timedelta64", false]], "timedelta64dtype (class in arkouda)": [[24, "arkouda.TimeDelta64DType", false]], "timedelta64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.TimeDelta64DType", false]], "timedelta_range() (in module arkouda)": [[24, "arkouda.timedelta_range", false], [24, "id1355", false]], "timedelta_range() (in module arkouda.timeclass)": [[55, "arkouda.timeclass.timedelta_range", false]], "tiny (arkouda.finfo attribute)": [[24, "arkouda.finfo.tiny", false]], "tiny (arkouda.finfo property)": [[24, "id874", false]], "tiny (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.tiny", false]], "tiny (arkouda.numpy.finfo property)": [[35, "id11", false]], "title() (arkouda.strings method)": [[24, "arkouda.Strings.title", false], [24, "id558", false], [24, "id634", false], [24, "id710", false], [24, "id786", false]], "title() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.title", false]], "to_csv() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_csv", false], [24, "id168", false]], "to_csv() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_csv", false]], "to_csv() (arkouda.index method)": [[24, "arkouda.Index.to_csv", false]], "to_csv() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_csv", false]], "to_csv() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_csv", false], [24, "id1050", false], [24, "id1121", false], [24, "id1192", false], [24, "id1263", false], [24, "id979", false]], "to_csv() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_csv", false]], "to_csv() (arkouda.strings method)": [[24, "arkouda.Strings.to_csv", false], [24, "id559", false], [24, "id635", false], [24, "id711", false], [24, "id787", false]], "to_csv() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_csv", false]], "to_csv() (in module arkouda)": [[24, "arkouda.to_csv", false]], "to_csv() (in module arkouda.io)": [[27, "arkouda.io.to_csv", false]], "to_cuda() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_cuda", false], [24, "id1053", false], [24, "id1124", false], [24, "id1195", false], [24, "id1266", false], [24, "id982", false]], "to_cuda() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_cuda", false]], "to_dataframe() (arkouda.series method)": [[24, "arkouda.Series.to_dataframe", false]], "to_dataframe() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_dataframe", false]], "to_device() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.to_device", false]], "to_device() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.to_device", false]], "to_dict() (arkouda.index method)": [[24, "arkouda.Index.to_dict", false]], "to_dict() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_dict", false]], "to_dict() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_dict", false]], "to_dict() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_dict", false]], "to_hdf() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_hdf", false], [24, "id111", false], [24, "id53", false]], "to_hdf() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_hdf", false]], "to_hdf() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.to_hdf", false]], "to_hdf() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_hdf", false], [24, "id169", false]], "to_hdf() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_hdf", false]], "to_hdf() (arkouda.groupby method)": [[24, "arkouda.GroupBy.to_hdf", false], [24, "id286", false], [24, "id333", false], [24, "id380", false], [24, "id427", false], [24, "id474", false], [91, "arkouda.GroupBy.to_hdf", false]], "to_hdf() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.to_hdf", false]], "to_hdf() (arkouda.index method)": [[24, "arkouda.Index.to_hdf", false]], "to_hdf() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_hdf", false]], "to_hdf() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_hdf", false]], "to_hdf() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.to_hdf", false]], "to_hdf() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_hdf", false]], "to_hdf() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_hdf", false], [24, "id1054", false], [24, "id1125", false], [24, "id1196", false], [24, "id1267", false], [24, "id983", false]], "to_hdf() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_hdf", false]], "to_hdf() (arkouda.segarray method)": [[24, "arkouda.SegArray.to_hdf", false]], "to_hdf() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.to_hdf", false]], "to_hdf() (arkouda.strings method)": [[24, "arkouda.Strings.to_hdf", false], [24, "id560", false], [24, "id636", false], [24, "id712", false], [24, "id788", false]], "to_hdf() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_hdf", false]], "to_hdf() (in module arkouda)": [[24, "arkouda.to_hdf", false]], "to_hdf() (in module arkouda.io)": [[27, "arkouda.io.to_hdf", false]], "to_list() (arkouda.bitvector method)": [[24, "arkouda.BitVector.to_list", false]], "to_list() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_list", false], [24, "id112", false], [24, "id54", false]], "to_list() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_list", false]], "to_list() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.to_list", false]], "to_list() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.to_list", false]], "to_list() (arkouda.index method)": [[24, "arkouda.Index.to_list", false]], "to_list() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_list", false]], "to_list() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_list", false]], "to_list() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.to_list", false]], "to_list() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_list", false]], "to_list() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_list", false], [24, "id1055", false], [24, "id1126", false], [24, "id1197", false], [24, "id1268", false], [24, "id984", false]], "to_list() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_list", false]], "to_list() (arkouda.segarray method)": [[24, "arkouda.SegArray.to_list", false]], "to_list() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.to_list", false]], "to_list() (arkouda.series method)": [[24, "arkouda.Series.to_list", false]], "to_list() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_list", false]], "to_list() (arkouda.strings method)": [[24, "arkouda.Strings.to_list", false], [24, "id561", false], [24, "id637", false], [24, "id713", false], [24, "id789", false]], "to_list() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_list", false]], "to_markdown() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_markdown", false], [24, "id170", false]], "to_markdown() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_markdown", false]], "to_markdown() (arkouda.series method)": [[24, "arkouda.Series.to_markdown", false]], "to_markdown() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_markdown", false]], "to_ndarray() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.to_ndarray", false]], "to_ndarray() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.to_ndarray", false]], "to_ndarray() (arkouda.bitvector method)": [[24, "arkouda.BitVector.to_ndarray", false]], "to_ndarray() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_ndarray", false], [24, "id113", false], [24, "id55", false]], "to_ndarray() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_ndarray", false]], "to_ndarray() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.to_ndarray", false]], "to_ndarray() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.to_ndarray", false]], "to_ndarray() (arkouda.index method)": [[24, "arkouda.Index.to_ndarray", false]], "to_ndarray() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_ndarray", false]], "to_ndarray() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_ndarray", false]], "to_ndarray() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.to_ndarray", false]], "to_ndarray() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_ndarray", false]], "to_ndarray() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_ndarray", false], [24, "id1056", false], [24, "id1127", false], [24, "id1198", false], [24, "id1269", false], [24, "id985", false]], "to_ndarray() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_ndarray", false]], "to_ndarray() (arkouda.segarray method)": [[24, "arkouda.SegArray.to_ndarray", false]], "to_ndarray() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.to_ndarray", false]], "to_ndarray() (arkouda.series method)": [[24, "arkouda.Series.to_ndarray", false]], "to_ndarray() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_ndarray", false]], "to_ndarray() (arkouda.strings method)": [[24, "arkouda.Strings.to_ndarray", false], [24, "id562", false], [24, "id638", false], [24, "id714", false], [24, "id790", false]], "to_ndarray() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_ndarray", false]], "to_ndarray() (in module arkouda.categorical)": [[88, "arkouda.Categorical.to_ndarray", false]], "to_ndarray() (in module arkouda.pdarray)": [[84, "arkouda.pdarray.to_ndarray", false], [94, "arkouda.pdarray.to_ndarray", false]], "to_ndarray() (in module arkouda.segarray)": [[96, "arkouda.SegArray.to_ndarray", false]], "to_ndarray() (in module arkouda.strings)": [[84, "arkouda.Strings.to_ndarray", false], [100, "arkouda.Strings.to_ndarray", false]], "to_pandas() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_pandas", false], [24, "id114", false], [24, "id56", false]], "to_pandas() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_pandas", false]], "to_pandas() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_pandas", false], [24, "id171", false]], "to_pandas() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_pandas", false]], "to_pandas() (arkouda.datetime method)": [[24, "arkouda.Datetime.to_pandas", false], [24, "id205", false], [24, "id238", false]], "to_pandas() (arkouda.index method)": [[24, "arkouda.Index.to_pandas", false]], "to_pandas() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_pandas", false]], "to_pandas() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_pandas", false]], "to_pandas() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_pandas", false]], "to_pandas() (arkouda.series method)": [[24, "arkouda.Series.to_pandas", false]], "to_pandas() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_pandas", false]], "to_pandas() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.to_pandas", false]], "to_pandas() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.to_pandas", false]], "to_pandas() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.to_pandas", false], [24, "id816", false]], "to_pandas() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.to_pandas", false]], "to_pandas() (in module arkouda.series)": [[97, "arkouda.Series.to_pandas", false]], "to_parquet() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_parquet", false], [24, "id115", false], [24, "id57", false]], "to_parquet() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_parquet", false]], "to_parquet() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_parquet", false], [24, "id172", false]], "to_parquet() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_parquet", false]], "to_parquet() (arkouda.index method)": [[24, "arkouda.Index.to_parquet", false]], "to_parquet() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_parquet", false]], "to_parquet() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_parquet", false], [24, "id1057", false], [24, "id1128", false], [24, "id1199", false], [24, "id1270", false], [24, "id986", false]], "to_parquet() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_parquet", false]], "to_parquet() (arkouda.segarray method)": [[24, "arkouda.SegArray.to_parquet", false]], "to_parquet() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.to_parquet", false]], "to_parquet() (arkouda.strings method)": [[24, "arkouda.Strings.to_parquet", false], [24, "id563", false], [24, "id639", false], [24, "id715", false], [24, "id791", false]], "to_parquet() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_parquet", false]], "to_parquet() (in module arkouda)": [[24, "arkouda.to_parquet", false]], "to_parquet() (in module arkouda.io)": [[27, "arkouda.io.to_parquet", false]], "to_pdarray() (arkouda.sparray method)": [[24, "arkouda.sparray.to_pdarray", false]], "to_pdarray() (arkouda.sparrayclass.sparray method)": [[51, "arkouda.sparrayclass.sparray.to_pdarray", false]], "to_strings() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_strings", false], [24, "id116", false], [24, "id58", false]], "to_strings() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_strings", false]], "to_zarr() (in module arkouda)": [[24, "arkouda.to_zarr", false]], "to_zarr() (in module arkouda.io)": [[27, "arkouda.io.to_zarr", false]], "tobytes() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.tobytes", false]], "tobytes() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.tobytes", false]], "tobytes() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.tobytes", false]], "tobytes() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.tobytes", false]], "tobytes() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.tobytes", false]], "tobytes() (arkouda.str_ method)": [[24, "arkouda.str_.tobytes", false], [24, "id1347", false]], "tofile() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.tofile", false]], "tofile() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.tofile", false]], "tofile() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.tofile", false]], "tofile() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.tofile", false]], "tofile() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.tofile", false]], "tofile() (arkouda.str_ method)": [[24, "arkouda.str_.tofile", false], [24, "id1348", false]], "tolist() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.tolist", false]], "tolist() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.tolist", false]], "tolist() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.tolist", false]], "tolist() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.tolist", false]], "tolist() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.tolist", false]], "tolist() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.tolist", false]], "tolist() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.tolist", false]], "tolist() (arkouda.str_ method)": [[24, "arkouda.str_.tolist", false], [24, "id1349", false]], "tooharderror (class in arkouda)": [[24, "arkouda.TooHardError", false]], "tooharderror (class in arkouda.numpy)": [[35, "arkouda.numpy.TooHardError", false]], "topn() (arkouda.series method)": [[24, "arkouda.Series.topn", false]], "topn() (arkouda.series.series method)": [[49, "arkouda.series.Series.topn", false]], "topn() (in module arkouda.series)": [[97, "arkouda.Series.topn", false]], "tostring() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.tostring", false]], "tostring() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.tostring", false]], "tostring() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.tostring", false]], "tostring() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.tostring", false]], "tostring() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.tostring", false]], "tostring() (arkouda.str_ method)": [[24, "arkouda.str_.tostring", false], [24, "id1350", false]], "total_seconds() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.total_seconds", false]], "total_seconds() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.total_seconds", false], [24, "id817", false]], "trace() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.trace", false]], "trace() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.trace", false]], "trace() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.trace", false]], "trace() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.trace", false]], "trace() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.trace", false]], "trace() (arkouda.str_ method)": [[24, "arkouda.str_.trace", false], [24, "id1351", false]], "transfer() (arkouda.categorical method)": [[24, "arkouda.Categorical.transfer", false], [24, "id117", false], [24, "id59", false]], "transfer() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.transfer", false]], "transfer() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.transfer", false], [24, "id173", false]], "transfer() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.transfer", false]], "transfer() (arkouda.pdarray method)": [[24, "arkouda.pdarray.transfer", false], [24, "id1058", false], [24, "id1129", false], [24, "id1200", false], [24, "id1271", false], [24, "id987", false]], "transfer() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.transfer", false]], "transfer() (arkouda.segarray method)": [[24, "arkouda.SegArray.transfer", false]], "transfer() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.transfer", false]], "transfer() (arkouda.strings method)": [[24, "arkouda.Strings.transfer", false], [24, "id564", false], [24, "id640", false], [24, "id716", false], [24, "id792", false]], "transfer() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.transfer", false]], "transpose() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.transpose", false]], "transpose() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.transpose", false]], "transpose() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.transpose", false]], "transpose() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.transpose", false]], "transpose() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.transpose", false]], "transpose() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.transpose", false]], "transpose() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.transpose", false]], "transpose() (arkouda.str_ method)": [[24, "arkouda.str_.transpose", false], [24, "id1352", false]], "transpose() (in module arkouda)": [[24, "arkouda.transpose", false]], "transpose() (in module arkouda.numpy)": [[35, "arkouda.numpy.transpose", false]], "tril() (in module arkouda)": [[24, "arkouda.tril", false]], "tril() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.tril", false]], "tril() (in module arkouda.numpy)": [[35, "arkouda.numpy.tril", false]], "triu() (in module arkouda)": [[24, "arkouda.triu", false]], "triu() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.triu", false]], "triu() (in module arkouda.numpy)": [[35, "arkouda.numpy.triu", false]], "true_ (class in arkouda)": [[24, "arkouda.True_", false]], "true_ (class in arkouda.numpy)": [[35, "arkouda.numpy.True_", false]], "trunc() (in module arkouda)": [[24, "arkouda.trunc", false]], "trunc() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.trunc", false]], "trunc() (in module arkouda.numpy)": [[35, "arkouda.numpy.trunc", false]], "type() (arkouda.bigint method)": [[24, "arkouda.bigint.type", false], [24, "id849", false]], "type() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.type", false]], "type() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.type", false]], "type() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.type", false]], "typename() (in module arkouda)": [[24, "arkouda.typename", false]], "typename() (in module arkouda.numpy)": [[35, "arkouda.numpy.typename", false]], "ubyte (class in arkouda)": [[24, "arkouda.ubyte", false]], "ubyte (class in arkouda.numpy)": [[35, "arkouda.numpy.ubyte", false]], "ubytedtype (class in arkouda)": [[24, "arkouda.UByteDType", false]], "ubytedtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UByteDType", false]], "uint (class in arkouda)": [[24, "arkouda.uint", false]], "uint (class in arkouda.numpy)": [[35, "arkouda.numpy.uint", false]], "uint() (arkouda.dtype method)": [[24, "arkouda.DType.UINT", false]], "uint() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT", false]], "uint() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT", false]], "uint() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT", false]], "uint16 (class in arkouda)": [[24, "arkouda.uint16", false]], "uint16 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.uint16", false]], "uint16 (class in arkouda.numpy)": [[35, "arkouda.numpy.uint16", false]], "uint16 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.uint16", false]], "uint16() (arkouda.dtype method)": [[24, "arkouda.DType.UINT16", false]], "uint16() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT16", false]], "uint16() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT16", false]], "uint16() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT16", false]], "uint16dtype (class in arkouda)": [[24, "arkouda.UInt16DType", false]], "uint16dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UInt16DType", false]], "uint32 (class in arkouda)": [[24, "arkouda.uint32", false]], "uint32 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.uint32", false]], "uint32 (class in arkouda.numpy)": [[35, "arkouda.numpy.uint32", false]], "uint32 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.uint32", false]], "uint32() (arkouda.dtype method)": [[24, "arkouda.DType.UINT32", false]], "uint32() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT32", false]], "uint32() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT32", false]], "uint32() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT32", false]], "uint32dtype (class in arkouda)": [[24, "arkouda.UInt32DType", false]], "uint32dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UInt32DType", false]], "uint64 (class in arkouda)": [[24, "arkouda.uint64", false]], "uint64 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.uint64", false]], "uint64 (class in arkouda.numpy)": [[35, "arkouda.numpy.uint64", false]], "uint64 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.uint64", false]], "uint64() (arkouda.dtype method)": [[24, "arkouda.DType.UINT64", false]], "uint64() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT64", false]], "uint64() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT64", false]], "uint64() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT64", false]], "uint64dtype (class in arkouda)": [[24, "arkouda.UInt64DType", false]], "uint64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UInt64DType", false]], "uint8 (class in arkouda)": [[24, "arkouda.uint8", false]], "uint8 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.uint8", false]], "uint8 (class in arkouda.numpy)": [[35, "arkouda.numpy.uint8", false]], "uint8 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.uint8", false]], "uint8() (arkouda.dtype method)": [[24, "arkouda.DType.UINT8", false]], "uint8() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT8", false]], "uint8() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT8", false]], "uint8() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT8", false]], "uint8dtype (class in arkouda)": [[24, "arkouda.UInt8DType", false]], "uint8dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UInt8DType", false]], "uintc (class in arkouda)": [[24, "arkouda.uintc", false]], "uintc (class in arkouda.numpy)": [[35, "arkouda.numpy.uintc", false]], "uintdtype (class in arkouda)": [[24, "arkouda.UIntDType", false]], "uintdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UIntDType", false]], "uintp (class in arkouda)": [[24, "arkouda.uintp", false]], "uintp (class in arkouda.numpy)": [[35, "arkouda.numpy.uintp", false]], "ulongdtype (class in arkouda)": [[24, "arkouda.ULongDType", false]], "ulongdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ULongDType", false]], "ulonglong (class in arkouda)": [[24, "arkouda.ulonglong", false]], "ulonglong (class in arkouda.numpy)": [[35, "arkouda.numpy.ulonglong", false]], "ulonglongdtype (class in arkouda)": [[24, "arkouda.ULongLongDType", false]], "ulonglongdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ULongLongDType", false]], "uniform() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.uniform", false]], "uniform() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.uniform", false]], "uniform() (in module arkouda)": [[24, "arkouda.uniform", false]], "uniform() (in module arkouda.numpy.random)": [[36, "arkouda.numpy.random.uniform", false]], "uniform() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.uniform", false]], "uniform() (in module arkouda.random)": [[42, "arkouda.random.uniform", false]], "uniform() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.uniform", false]], "union (class in arkouda.dtypes)": [[21, "arkouda.dtypes.Union", false]], "union (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.Union", false]], "union() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.union", false]], "union() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.union", false]], "union() (arkouda.dtypes method)": [[24, "arkouda.DTypes.union", false]], "union() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.union", false]], "union() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.union", false]], "union() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.union", false]], "union() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.union", false]], "union() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.union", false]], "union() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.union", false]], "union() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.union", false]], "union() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.union", false]], "union() (arkouda.inttypes method)": [[24, "arkouda.intTypes.union", false], [24, "id893", false], [24, "id902", false]], "union() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.union", false]], "union() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.union", false]], "union() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.union", false]], "union() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.union", false]], "union() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.union", false]], "union() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.union", false]], "union() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.union", false]], "union() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.union", false]], "union() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.union", false]], "union() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.union", false]], "union() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.union", false]], "union() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.union", false]], "union() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.union", false]], "union() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.union", false]], "union() (arkouda.segarray method)": [[24, "arkouda.SegArray.union", false]], "union() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.union", false]], "union() (in module arkouda.segarray)": [[96, "arkouda.SegArray.union", false]], "union1d() (in module arkouda)": [[24, "arkouda.union1d", false], [98, "arkouda.union1d", false]], "union1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.union1d", false]], "unique() (arkouda.categorical method)": [[24, "arkouda.Categorical.unique", false], [24, "id118", false], [24, "id60", false]], "unique() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.unique", false]], "unique() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.unique", false]], "unique() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.unique", false]], "unique() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.unique", false]], "unique() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.unique", false]], "unique() (arkouda.groupby method)": [[24, "arkouda.GroupBy.unique", false], [24, "id287", false], [24, "id334", false], [24, "id381", false], [24, "id428", false], [24, "id475", false], [91, "arkouda.GroupBy.unique", false]], "unique() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.unique", false]], "unique() (arkouda.segarray method)": [[24, "arkouda.SegArray.unique", false]], "unique() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.unique", false]], "unique() (in module arkouda)": [[24, "arkouda.unique", false], [24, "id1356", false], [24, "id1357", false], [98, "arkouda.unique", false]], "unique() (in module arkouda.groupbyclass)": [[22, "arkouda.groupbyclass.unique", false]], "unique_all() (in module arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.unique_all", false]], "unique_counts() (in module arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.unique_counts", false]], "unique_inverse() (in module arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.unique_inverse", false]], "unique_keys (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.unique_keys", false], [24, "id249", false], [24, "id296", false], [24, "id343", false], [24, "id390", false], [24, "id437", false], [91, "arkouda.GroupBy.unique_keys", false]], "unique_keys (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.unique_keys", false]], "unique_values() (in module arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.unique_values", false]], "uniqueallresult (class in arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.UniqueAllResult", false]], "uniquecountsresult (class in arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.UniqueCountsResult", false]], "uniqueinverseresult (class in arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.UniqueInverseResult", false]], "unregister() (arkouda.categorical method)": [[24, "arkouda.Categorical.unregister", false], [24, "id119", false], [24, "id61", false]], "unregister() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.unregister", false]], "unregister() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.unregister", false], [24, "id174", false]], "unregister() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.unregister", false]], "unregister() (arkouda.datetime method)": [[24, "arkouda.Datetime.unregister", false], [24, "id206", false], [24, "id239", false]], "unregister() (arkouda.groupby method)": [[24, "arkouda.GroupBy.unregister", false], [24, "id288", false], [24, "id335", false], [24, "id382", false], [24, "id429", false], [24, "id476", false], [91, "arkouda.GroupBy.unregister", false]], "unregister() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.unregister", false]], "unregister() (arkouda.index method)": [[24, "arkouda.Index.unregister", false]], "unregister() (arkouda.index.index method)": [[25, "arkouda.index.Index.unregister", false]], "unregister() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.unregister", false]], "unregister() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.unregister", false]], "unregister() (arkouda.pdarray method)": [[24, "arkouda.pdarray.unregister", false], [24, "id1059", false], [24, "id1130", false], [24, "id1201", false], [24, "id1272", false], [24, "id988", false]], "unregister() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.unregister", false]], "unregister() (arkouda.segarray method)": [[24, "arkouda.SegArray.unregister", false]], "unregister() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.unregister", false]], "unregister() (arkouda.series method)": [[24, "arkouda.Series.unregister", false]], "unregister() (arkouda.series.series method)": [[49, "arkouda.series.Series.unregister", false]], "unregister() (arkouda.strings method)": [[24, "arkouda.Strings.unregister", false], [24, "id565", false], [24, "id641", false], [24, "id717", false], [24, "id793", false]], "unregister() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.unregister", false]], "unregister() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.unregister", false]], "unregister() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.unregister", false]], "unregister() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.unregister", false], [24, "id818", false]], "unregister() (in module arkouda)": [[24, "arkouda.unregister", false]], "unregister() (in module arkouda.util)": [[56, "arkouda.util.unregister", false]], "unregister_all() (in module arkouda)": [[24, "arkouda.unregister_all", false]], "unregister_all() (in module arkouda.util)": [[56, "arkouda.util.unregister_all", false]], "unregister_categorical_by_name() (arkouda.categorical static method)": [[24, "arkouda.Categorical.unregister_categorical_by_name", false], [24, "id120", false], [24, "id62", false]], "unregister_categorical_by_name() (arkouda.categorical.categorical static method)": [[17, "arkouda.categorical.Categorical.unregister_categorical_by_name", false]], "unregister_dataframe_by_name() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.unregister_dataframe_by_name", false], [24, "id175", false]], "unregister_dataframe_by_name() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.unregister_dataframe_by_name", false]], "unregister_groupby_by_name() (arkouda.groupby method)": [[24, "arkouda.GroupBy.unregister_groupby_by_name", false], [24, "id289", false], [24, "id336", false], [24, "id383", false], [24, "id430", false], [24, "id477", false]], "unregister_groupby_by_name() (arkouda.groupby static method)": [[91, "arkouda.GroupBy.unregister_groupby_by_name", false]], "unregister_groupby_by_name() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.unregister_groupby_by_name", false]], "unregister_pdarray_by_name() (in module arkouda)": [[24, "arkouda.unregister_pdarray_by_name", false]], "unregister_pdarray_by_name() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.unregister_pdarray_by_name", false]], "unregister_segarray_by_name() (arkouda.segarray static method)": [[24, "arkouda.SegArray.unregister_segarray_by_name", false]], "unregister_segarray_by_name() (arkouda.segarray.segarray static method)": [[48, "arkouda.segarray.SegArray.unregister_segarray_by_name", false]], "unregister_strings_by_name() (arkouda.strings static method)": [[24, "arkouda.Strings.unregister_strings_by_name", false], [24, "id566", false], [24, "id642", false], [24, "id718", false], [24, "id794", false]], "unregister_strings_by_name() (arkouda.strings.strings static method)": [[53, "arkouda.strings.Strings.unregister_strings_by_name", false]], "unsignedinteger (class in arkouda)": [[24, "arkouda.unsignedinteger", false]], "unsignedinteger (class in arkouda.numpy)": [[35, "arkouda.numpy.unsignedinteger", false]], "unsqueeze() (in module arkouda)": [[24, "arkouda.unsqueeze", false]], "unsqueeze() (in module arkouda.alignment)": [[3, "arkouda.alignment.unsqueeze", false]], "unstack() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.unstack", false]], "update() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.update", false]], "update() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.update", false]], "update() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.update", false]], "update() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.update", false]], "update() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.update", false]], "update() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.update", false]], "update() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.update", false]], "update() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.update", false]], "update() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.update", false]], "update() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.update", false]], "update() (arkouda.sctypes method)": [[24, "arkouda.sctypes.update", false]], "update() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.update", false]], "update_hdf() (arkouda.categorical method)": [[24, "arkouda.Categorical.update_hdf", false], [24, "id121", false], [24, "id63", false]], "update_hdf() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.update_hdf", false]], "update_hdf() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.update_hdf", false]], "update_hdf() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.update_hdf", false], [24, "id176", false]], "update_hdf() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.update_hdf", false]], "update_hdf() (arkouda.groupby method)": [[24, "arkouda.GroupBy.update_hdf", false], [24, "id290", false], [24, "id337", false], [24, "id384", false], [24, "id431", false], [24, "id478", false]], "update_hdf() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.update_hdf", false]], "update_hdf() (arkouda.index method)": [[24, "arkouda.Index.update_hdf", false]], "update_hdf() (arkouda.index.index method)": [[25, "arkouda.index.Index.update_hdf", false]], "update_hdf() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.update_hdf", false]], "update_hdf() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.update_hdf", false]], "update_hdf() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.update_hdf", false]], "update_hdf() (arkouda.pdarray method)": [[24, "arkouda.pdarray.update_hdf", false], [24, "id1060", false], [24, "id1131", false], [24, "id1202", false], [24, "id1273", false], [24, "id989", false]], "update_hdf() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.update_hdf", false]], "update_hdf() (arkouda.segarray method)": [[24, "arkouda.SegArray.update_hdf", false]], "update_hdf() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.update_hdf", false]], "update_hdf() (arkouda.strings method)": [[24, "arkouda.Strings.update_hdf", false], [24, "id567", false], [24, "id643", false], [24, "id719", false], [24, "id795", false]], "update_hdf() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.update_hdf", false]], "update_hdf() (in module arkouda)": [[24, "arkouda.update_hdf", false]], "update_hdf() (in module arkouda.io)": [[27, "arkouda.io.update_hdf", false]], "update_nrows() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.update_nrows", false], [24, "id177", false]], "update_nrows() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.update_nrows", false]], "upper() (arkouda.strings method)": [[24, "arkouda.Strings.upper", false], [24, "id568", false], [24, "id644", false], [24, "id720", false], [24, "id796", false]], "upper() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.upper", false]], "username_tokenizer (in module arkouda.security)": [[47, "arkouda.security.username_tokenizer", false]], "ushort (class in arkouda)": [[24, "arkouda.ushort", false]], "ushort (class in arkouda.numpy)": [[35, "arkouda.numpy.ushort", false]], "ushortdtype (class in arkouda)": [[24, "arkouda.UShortDType", false]], "ushortdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UShortDType", false]], "val_suffix (in module arkouda)": [[24, "arkouda.VAL_SUFFIX", false]], "val_suffix (in module arkouda.segarray)": [[48, "arkouda.segarray.VAL_SUFFIX", false]], "validate_key() (arkouda.series method)": [[24, "arkouda.Series.validate_key", false]], "validate_key() (arkouda.series.series method)": [[49, "arkouda.series.Series.validate_key", false]], "validate_val() (arkouda.series method)": [[24, "arkouda.Series.validate_val", false]], "validate_val() (arkouda.series.series method)": [[49, "arkouda.series.Series.validate_val", false]], "valsize (arkouda.segarray attribute)": [[24, "arkouda.SegArray.valsize", false]], "valsize (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.valsize", false]], "value() (arkouda.dtype method)": [[24, "arkouda.DType.value", false]], "value() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.value", false]], "value() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.value", false]], "value() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.value", false]], "value() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.value", false]], "value() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.value", false]], "value_counts() (arkouda.pdarray method)": [[24, "arkouda.pdarray.value_counts", false], [24, "id1061", false], [24, "id1132", false], [24, "id1203", false], [24, "id1274", false], [24, "id990", false]], "value_counts() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.value_counts", false]], "value_counts() (arkouda.series method)": [[24, "arkouda.Series.value_counts", false]], "value_counts() (arkouda.series.series method)": [[49, "arkouda.series.Series.value_counts", false]], "value_counts() (in module arkouda)": [[24, "arkouda.value_counts", false], [92, "arkouda.value_counts", false]], "value_counts() (in module arkouda.numpy)": [[35, "arkouda.numpy.value_counts", false]], "value_counts() (in module arkouda.series)": [[97, "arkouda.Series.value_counts", false]], "values (arkouda.array_api.set_functions.uniqueallresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueAllResult.values", false]], "values (arkouda.array_api.set_functions.uniquecountsresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueCountsResult.values", false]], "values (arkouda.array_api.set_functions.uniqueinverseresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueInverseResult.values", false]], "values (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.values", false]], "values (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.values", false]], "values (arkouda.client_dtypes.ipv4 attribute)": [[19, "arkouda.client_dtypes.IPv4.values", false]], "values (arkouda.dataframe.diffaggregate attribute)": [[20, "arkouda.dataframe.DiffAggregate.values", false]], "values (arkouda.diffaggregate attribute)": [[24, "arkouda.DiffAggregate.values", false]], "values (arkouda.ipv4 attribute)": [[24, "arkouda.IPv4.values", false]], "values (arkouda.segarray attribute)": [[24, "arkouda.SegArray.values", false]], "values (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.values", false]], "values() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.values", false]], "values() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.values", false]], "values() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.values", false]], "values() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.values", false]], "values() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.values", false]], "values() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.values", false]], "values() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.values", false]], "values() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.values", false]], "values() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.values", false]], "values() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.values", false]], "values() (arkouda.sctypes method)": [[24, "arkouda.sctypes.values", false]], "values() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.values", false]], "var() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.var", false]], "var() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.var", false]], "var() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.var", false]], "var() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.var", false]], "var() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.var", false]], "var() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.var", false]], "var() (arkouda.groupby method)": [[24, "arkouda.GroupBy.var", false], [24, "id291", false], [24, "id338", false], [24, "id385", false], [24, "id432", false], [24, "id479", false], [91, "arkouda.GroupBy.var", false]], "var() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.var", false]], "var() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.var", false]], "var() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.var", false]], "var() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.var", false]], "var() (arkouda.pdarray method)": [[24, "arkouda.pdarray.var", false], [24, "id1062", false], [24, "id1133", false], [24, "id1204", false], [24, "id1275", false], [24, "id991", false], [92, "arkouda.pdarray.var", false]], "var() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.var", false]], "var() (arkouda.series method)": [[24, "arkouda.Series.var", false]], "var() (arkouda.series.series method)": [[49, "arkouda.series.Series.var", false]], "var() (arkouda.str_ method)": [[24, "arkouda.str_.var", false], [24, "id1353", false]], "var() (in module arkouda)": [[24, "arkouda.var", false], [87, "arkouda.var", false]], "var() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.var", false]], "var() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.var", false]], "vecdot() (in module arkouda)": [[24, "arkouda.vecdot", false]], "vecdot() (in module arkouda.array_api.linalg)": [[10, "arkouda.array_api.linalg.vecdot", false]], "vecdot() (in module arkouda.numpy)": [[35, "arkouda.numpy.vecdot", false]], "vecentropy() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.vecentropy", false]], "view() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.view", false]], "view() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.view", false]], "view() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.view", false]], "view() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.view", false]], "view() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.view", false]], "view() (arkouda.str_ method)": [[24, "arkouda.str_.view", false], [24, "id1354", false]], "void (class in arkouda)": [[24, "arkouda.void", false]], "void (class in arkouda.numpy)": [[35, "arkouda.numpy.void", false]], "voiddtype (class in arkouda)": [[24, "arkouda.VoidDType", false]], "voiddtype (class in arkouda.numpy)": [[35, "arkouda.numpy.VoidDType", false]], "vstack() (in module arkouda)": [[24, "arkouda.vstack", false]], "vstack() (in module arkouda.pdarraymanipulation)": [[39, "arkouda.pdarraymanipulation.vstack", false]], "warn (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.WARN", false]], "warn (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.WARN", false]], "week (arkouda.datetime property)": [[24, "arkouda.Datetime.week", false], [24, "id207", false], [24, "id240", false]], "week (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.week", false]], "weekday (arkouda.datetime property)": [[24, "arkouda.Datetime.weekday", false], [24, "id208", false], [24, "id241", false]], "weekday (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.weekday", false]], "weekofyear (arkouda.datetime property)": [[24, "arkouda.Datetime.weekofyear", false], [24, "id209", false], [24, "id242", false]], "weekofyear (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.weekofyear", false]], "where() (in module arkouda)": [[24, "arkouda.where", false], [24, "id1358", false], [24, "id1359", false], [87, "arkouda.where", false]], "where() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.where", false]], "where() (in module arkouda.numpy)": [[35, "arkouda.numpy.where", false]], "width (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.width", false]], "width (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.width", false]], "width (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.width", false]], "width (arkouda.fields attribute)": [[24, "arkouda.Fields.width", false]], "write_line_to_file() (in module arkouda.io_util)": [[28, "arkouda.io_util.write_line_to_file", false]], "write_log() (in module arkouda)": [[24, "arkouda.write_log", false]], "write_log() (in module arkouda.logger)": [[30, "arkouda.logger.write_log", false]], "xlogy() (in module arkouda)": [[24, "arkouda.xlogy", false]], "xlogy() (in module arkouda.scipy.special)": [[45, "arkouda.scipy.special.xlogy", false]], "xor() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.xor", false]], "xor() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.xor", false]], "xor() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.xor", false]], "xor() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.xor", false]], "xor() (arkouda.groupby method)": [[24, "arkouda.GroupBy.XOR", false], [24, "id257", false], [24, "id304", false], [24, "id351", false], [24, "id398", false], [24, "id445", false], [91, "arkouda.GroupBy.XOR", false]], "xor() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.XOR", false]], "xor() (arkouda.segarray method)": [[24, "arkouda.SegArray.XOR", false]], "xor() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.XOR", false]], "xtol() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.xtol", false]], "year (arkouda.datetime property)": [[24, "arkouda.Datetime.year", false], [24, "id210", false], [24, "id243", false]], "year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.year", false]], "zero_up() (in module arkouda)": [[24, "arkouda.zero_up", false]], "zero_up() (in module arkouda.alignment)": [[3, "arkouda.alignment.zero_up", false]], "zeros() (in module arkouda)": [[24, "arkouda.zeros", false], [24, "id1360", false], [24, "id1361", false], [24, "id1362", false], [89, "arkouda.zeros", false]], "zeros() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.zeros", false]], "zeros() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.zeros", false]], "zeros_like() (in module arkouda)": [[24, "arkouda.zeros_like", false], [89, "arkouda.zeros_like", false]], "zeros_like() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.zeros_like", false]], "zeros_like() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.zeros_like", false]]}, "objects": {"": [[24, 0, 0, "-", "arkouda"]], "arkouda": [[24, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [24, 3, 1, "", "AllSymbols"], [24, 1, 1, "", "BitVector"], [24, 5, 1, "", "BitVectorizer"], [24, 1, 1, "", "BoolDType"], [24, 1, 1, "", "ByteDType"], [24, 1, 1, "", "BytesDType"], [24, 1, 1, "", "CLongDoubleDType"], [24, 1, 1, "", "CachedAccessor"], [88, 1, 1, "", "Categorical"], [24, 1, 1, "", "Complex128DType"], [24, 1, 1, "", "Complex64DType"], [24, 1, 1, "", "DType"], [24, 1, 1, "", "DTypeObjects"], [24, 1, 1, "", "DTypes"], [90, 1, 1, "", "DataFrame"], [24, 1, 1, "", "DataFrameGroupBy"], [24, 1, 1, "", "DataSource"], [24, 1, 1, "", "DateTime64DType"], [24, 1, 1, "id211", "Datetime"], [24, 1, 1, "", "DatetimeAccessor"], [24, 1, 1, "", "DiffAggregate"], [24, 1, 1, "", "ErrorMode"], [24, 1, 1, "", "False_"], [24, 1, 1, "", "Fields"], [24, 1, 1, "", "Float16DType"], [24, 1, 1, "", "Float32DType"], [24, 1, 1, "", "Float64DType"], [24, 1, 1, "", "GROUPBY_REDUCTION_TYPES"], [91, 1, 1, "", "GroupBy"], [24, 1, 1, "", "IPv4"], [85, 1, 1, "", "Index"], [24, 3, 1, "", "Inf"], [24, 3, 1, "", "Infinity"], [24, 1, 1, "", "Int16DType"], [24, 1, 1, "", "Int32DType"], [24, 1, 1, "", "Int64DType"], [24, 1, 1, "", "Int8DType"], [24, 1, 1, "", "IntDType"], [24, 3, 1, "", "LEN_SUFFIX"], [24, 1, 1, "", "LogLevel"], [24, 1, 1, "", "LongDType"], [24, 1, 1, "", "LongDoubleDType"], [24, 1, 1, "", "LongLongDType"], [24, 1, 1, "", "MultiIndex"], [24, 3, 1, "", "NAN"], [24, 3, 1, "", "NINF"], [24, 1, 1, "", "NUMBER_FORMAT_STRINGS"], [24, 3, 1, "", "NZERO"], [24, 3, 1, "", "NaN"], [24, 7, 1, "", "NonUniqueError"], [24, 1, 1, "", "NumericDTypes"], [24, 1, 1, "", "ObjectDType"], [24, 3, 1, "", "PINF"], [24, 3, 1, "", "PZERO"], [24, 1, 1, "", "Power_divergenceResult"], [24, 1, 1, "", "Properties"], [24, 1, 1, "", "RankWarning"], [24, 3, 1, "", "RegisteredSymbols"], [24, 7, 1, "id487", "RegistrationError"], [24, 1, 1, "", "Row"], [24, 3, 1, "", "SEG_SUFFIX"], [24, 1, 1, "", "ScalarDTypes"], [24, 1, 1, "", "ScalarType"], [24, 1, 1, "", "SegArray"], [97, 1, 1, "", "Series"], [24, 1, 1, "", "SeriesDTypes"], [24, 1, 1, "", "ShortDType"], [24, 1, 1, "", "StrDType"], [24, 1, 1, "", "StringAccessor"], [24, 1, 1, "id721", "Strings"], [24, 1, 1, "", "TimeDelta64DType"], [24, 1, 1, "id797", "Timedelta"], [24, 1, 1, "", "TooHardError"], [24, 1, 1, "", "True_"], [24, 1, 1, "", "UByteDType"], [24, 1, 1, "", "UInt16DType"], [24, 1, 1, "", "UInt32DType"], [24, 1, 1, "", "UInt64DType"], [24, 1, 1, "", "UInt8DType"], [24, 1, 1, "", "UIntDType"], [24, 1, 1, "", "ULongDType"], [24, 1, 1, "", "ULongLongDType"], [24, 1, 1, "", "UShortDType"], [24, 3, 1, "", "VAL_SUFFIX"], [24, 1, 1, "", "VoidDType"], [87, 5, 1, "", "abs"], [2, 0, 0, "-", "accessor"], [24, 5, 1, "", "add_newdoc"], [24, 5, 1, "", "akabs"], [24, 1, 1, "id819", "akbool"], [24, 5, 1, "id820", "akcast"], [24, 1, 1, "id821", "akfloat64"], [24, 1, 1, "id828", "akint64"], [24, 1, 1, "id832", "akuint64"], [24, 5, 1, "", "align"], [3, 0, 0, "-", "alignment"], [87, 5, 1, "", "all"], [24, 1, 1, "", "all_scalars"], [87, 5, 1, "", "any"], [89, 5, 1, "", "arange"], [24, 5, 1, "", "arccos"], [24, 5, 1, "", "arccosh"], [24, 5, 1, "", "arcsin"], [24, 5, 1, "", "arcsinh"], [24, 5, 1, "", "arctan"], [24, 5, 1, "", "arctan2"], [24, 5, 1, "", "arctanh"], [87, 5, 1, "", "argmax"], [87, 5, 1, "", "argmaxk"], [87, 5, 1, "", "argmin"], [87, 5, 1, "", "argmink"], [86, 5, 1, "", "argsort"], [84, 5, 1, "", "array"], [8, 0, 0, "-", "array_api"], [24, 5, 1, "", "array_equal"], [24, 5, 1, "", "assert_almost_equal"], [24, 5, 1, "", "assert_almost_equivalent"], [24, 5, 1, "", "assert_arkouda_array_equal"], [24, 5, 1, "", "assert_arkouda_array_equivalent"], [24, 5, 1, "", "assert_arkouda_pdarray_equal"], [24, 5, 1, "", "assert_arkouda_segarray_equal"], [24, 5, 1, "", "assert_arkouda_strings_equal"], [24, 5, 1, "", "assert_attr_equal"], [24, 5, 1, "", "assert_categorical_equal"], [24, 5, 1, "", "assert_class_equal"], [24, 5, 1, "", "assert_contains_all"], [24, 5, 1, "", "assert_copy"], [24, 5, 1, "", "assert_dict_equal"], [24, 5, 1, "", "assert_equal"], [24, 5, 1, "", "assert_equivalent"], [24, 5, 1, "", "assert_frame_equal"], [24, 5, 1, "", "assert_frame_equivalent"], [24, 5, 1, "", "assert_index_equal"], [24, 5, 1, "", "assert_index_equivalent"], [24, 5, 1, "", "assert_is_sorted"], [24, 5, 1, "", "assert_series_equal"], [24, 5, 1, "", "assert_series_equivalent"], [24, 5, 1, "", "attach"], [24, 5, 1, "", "attach_all"], [24, 5, 1, "", "attach_pdarray"], [24, 5, 1, "", "base_repr"], [24, 1, 1, "id844", "bigint"], [24, 5, 1, "", "bigint_from_uint_arrays"], [24, 5, 1, "", "binary_repr"], [24, 1, 1, "id852", "bitType"], [24, 1, 1, "", "bool_"], [24, 1, 1, "", "bool_scalars"], [24, 5, 1, "id856", "broadcast"], [24, 5, 1, "", "broadcast_dims"], [24, 5, 1, "", "broadcast_to_shape"], [24, 1, 1, "", "byte"], [24, 1, 1, "", "bytes_"], [94, 5, 1, "", "cast"], [17, 0, 0, "-", "categorical"], [24, 1, 1, "", "cdouble"], [24, 5, 1, "", "ceil"], [24, 1, 1, "", "cfloat"], [24, 1, 1, "", "character"], [24, 5, 1, "", "chisquare"], [24, 5, 1, "", "clear"], [18, 0, 0, "-", "client"], [19, 0, 0, "-", "client_dtypes"], [24, 5, 1, "", "clip"], [24, 1, 1, "", "clongdouble"], [24, 1, 1, "", "clongfloat"], [24, 5, 1, "", "clz"], [86, 5, 1, "", "coargsort"], [24, 1, 1, "", "complex128"], [24, 1, 1, "", "complex64"], [24, 5, 1, "", "compute_join_size"], [89, 5, 1, "", "concatenate"], [99, 5, 1, "", "connect"], [24, 5, 1, "", "convert_if_categorical"], [24, 5, 1, "", "corr"], [87, 5, 1, "", "cos"], [24, 5, 1, "", "cosh"], [24, 5, 1, "", "count_nonzero"], [24, 5, 1, "", "cov"], [24, 5, 1, "id865", "create_pdarray"], [24, 5, 1, "", "create_sparray"], [24, 1, 1, "", "csingle"], [24, 5, 1, "", "ctz"], [87, 5, 1, "", "cumprod"], [87, 5, 1, "", "cumsum"], [20, 0, 0, "-", "dataframe"], [24, 5, 1, "", "date_operators"], [24, 5, 1, "id868", "date_range"], [24, 1, 1, "", "datetime64"], [24, 5, 1, "", "deg2rad"], [24, 5, 1, "", "delete"], [24, 5, 1, "", "deprecate"], [24, 5, 1, "", "deprecate_with_doc"], [24, 5, 1, "", "disableVerbose"], [24, 5, 1, "", "disp"], [24, 5, 1, "", "divmod"], [24, 5, 1, "", "dot"], [24, 1, 1, "", "double"], [24, 5, 1, "", "dtype"], [21, 0, 0, "-", "dtypes"], [24, 3, 1, "", "e"], [24, 5, 1, "", "enableVerbose"], [24, 3, 1, "", "euler_gamma"], [87, 5, 1, "", "exp"], [24, 5, 1, "", "expm1"], [84, 5, 1, "", "export"], [24, 5, 1, "", "eye"], [24, 5, 1, "", "find"], [24, 1, 1, "", "finfo"], [24, 1, 1, "", "flexible"], [24, 5, 1, "", "flip"], [24, 1, 1, "", "float16"], [24, 1, 1, "", "float32"], [24, 1, 1, "", "float64"], [24, 1, 1, "", "float_"], [24, 1, 1, "", "float_scalars"], [24, 1, 1, "", "floating"], [24, 5, 1, "", "floor"], [24, 5, 1, "", "fmod"], [24, 5, 1, "", "format_float_positional"], [24, 5, 1, "", "format_float_scientific"], [24, 1, 1, "", "format_parser"], [24, 5, 1, "id875", "from_series"], [24, 5, 1, "id876", "full"], [24, 5, 1, "", "full_like"], [24, 5, 1, "id877", "gen_ranges"], [24, 5, 1, "", "generic_concat"], [24, 5, 1, "", "getArkoudaLogger"], [24, 5, 1, "", "get_byteorder"], [24, 5, 1, "", "get_callback"], [24, 5, 1, "", "get_columns"], [84, 5, 1, "", "get_datasets"], [24, 5, 1, "", "get_filetype"], [24, 5, 1, "", "get_null_indices"], [24, 5, 1, "", "get_server_byteorder"], [22, 0, 0, "-", "groupbyclass"], [24, 1, 1, "", "half"], [24, 5, 1, "", "hash"], [24, 5, 1, "", "hist_all"], [92, 5, 1, "", "histogram"], [24, 5, 1, "", "histogram2d"], [24, 5, 1, "", "histogramdd"], [23, 0, 0, "-", "history"], [24, 1, 1, "", "iinfo"], [84, 5, 1, "", "import_data"], [98, 5, 1, "", "in1d"], [24, 5, 1, "", "in1d_intervals"], [25, 0, 0, "-", "index"], [24, 5, 1, "", "indexof1d"], [24, 1, 1, "", "inexact"], [24, 3, 1, "", "inf"], [26, 0, 0, "-", "infoclass"], [24, 5, 1, "", "information"], [24, 3, 1, "", "infty"], [24, 1, 1, "", "int16"], [24, 1, 1, "", "int32"], [24, 1, 1, "id883", "int64"], [24, 1, 1, "", "int8"], [24, 1, 1, "id894", "intTypes"], [24, 1, 1, "", "int_"], [24, 1, 1, "id904", "int_scalars"], [24, 1, 1, "", "intc"], [24, 1, 1, "", "integer"], [24, 5, 1, "", "intersect"], [98, 5, 1, "", "intersect1d"], [24, 5, 1, "", "interval_lookup"], [24, 1, 1, "", "intp"], [24, 5, 1, "", "intx"], [24, 5, 1, "", "invert_permutation"], [27, 0, 0, "-", "io"], [28, 0, 0, "-", "io_util"], [24, 5, 1, "", "ip_address"], [24, 5, 1, "", "isSupportedFloat"], [24, 5, 1, "id907", "isSupportedInt"], [24, 5, 1, "", "isSupportedNumber"], [24, 5, 1, "", "is_cosorted"], [24, 5, 1, "", "is_ipv4"], [24, 5, 1, "", "is_ipv6"], [24, 5, 1, "", "is_registered"], [87, 5, 1, "", "is_sorted"], [24, 5, 1, "", "isfinite"], [24, 5, 1, "", "isinf"], [24, 5, 1, "id909", "isnan"], [24, 5, 1, "", "isscalar"], [24, 5, 1, "", "issctype"], [24, 5, 1, "", "issubclass_"], [24, 5, 1, "", "issubdtype"], [29, 0, 0, "-", "join"], [24, 5, 1, "", "join_on_eq_with_dt"], [24, 5, 1, "", "left_align"], [89, 5, 1, "", "linspace"], [24, 5, 1, "", "list_registry"], [24, 5, 1, "", "list_symbol_table"], [24, 5, 1, "", "load"], [24, 5, 1, "", "load_all"], [87, 5, 1, "", "log"], [24, 5, 1, "", "log10"], [24, 5, 1, "", "log1p"], [24, 5, 1, "", "log2"], [30, 0, 0, "-", "logger"], [24, 1, 1, "", "longdouble"], [24, 1, 1, "", "longfloat"], [24, 1, 1, "", "longlong"], [24, 5, 1, "", "lookup"], [24, 5, 1, "", "ls"], [24, 5, 1, "", "ls_csv"], [31, 0, 0, "-", "match"], [32, 0, 0, "-", "matcher"], [24, 5, 1, "", "matmul"], [87, 5, 1, "", "max"], [24, 5, 1, "", "maximum_sctype"], [87, 5, 1, "", "maxk"], [87, 5, 1, "", "mean"], [24, 5, 1, "", "median"], [24, 5, 1, "", "merge"], [87, 5, 1, "", "min"], [87, 5, 1, "", "mink"], [24, 5, 1, "", "mod"], [24, 3, 1, "", "nan"], [24, 1, 1, "", "number"], [33, 0, 0, "-", "numeric"], [24, 1, 1, "", "numeric_and_bool_scalars"], [24, 1, 1, "", "numeric_scalars"], [35, 0, 0, "-", "numpy"], [24, 1, 1, "", "numpy_scalars"], [24, 1, 1, "", "object_"], [89, 5, 1, "", "ones"], [89, 5, 1, "", "ones_like"], [24, 5, 1, "", "parity"], [94, 1, 1, "", "pdarray"], [37, 0, 0, "-", "pdarrayclass"], [38, 0, 0, "-", "pdarraycreation"], [39, 0, 0, "-", "pdarraymanipulation"], [40, 0, 0, "-", "pdarraysetops"], [24, 3, 1, "", "pi"], [24, 5, 1, "", "plot_dist"], [41, 0, 0, "-", "plotting"], [24, 5, 1, "", "popcount"], [24, 5, 1, "", "power"], [24, 5, 1, "", "power_divergence"], [24, 5, 1, "", "pretty_print_information"], [87, 5, 1, "", "prod"], [24, 5, 1, "", "promote_to_common_dtype"], [24, 5, 1, "", "putmask"], [24, 5, 1, "", "rad2deg"], [89, 5, 1, "", "randint"], [42, 0, 0, "-", "random"], [24, 5, 1, "", "random_strings_lognormal"], [24, 5, 1, "", "random_strings_uniform"], [84, 5, 1, "", "read"], [24, 5, 1, "", "read_csv"], [24, 5, 1, "", "read_hdf"], [24, 5, 1, "", "read_parquet"], [24, 5, 1, "", "read_tagged_data"], [24, 5, 1, "", "read_zarr"], [24, 5, 1, "", "receive"], [24, 5, 1, "", "receive_dataframe"], [24, 5, 1, "", "register_all"], [24, 5, 1, "", "resolve_scalar_dtype"], [24, 5, 1, "", "restore"], [24, 5, 1, "", "right_align"], [24, 5, 1, "", "rotl"], [24, 5, 1, "", "rotr"], [24, 5, 1, "", "round"], [43, 0, 0, "-", "row"], [24, 5, 1, "", "save_all"], [24, 5, 1, "", "scalar_array"], [44, 0, 0, "-", "scipy"], [24, 1, 1, "", "sctypeDict"], [24, 1, 1, "", "sctypes"], [24, 5, 1, "", "search_intervals"], [47, 0, 0, "-", "security"], [48, 0, 0, "-", "segarray"], [49, 0, 0, "-", "series"], [98, 5, 1, "", "setdiff1d"], [98, 5, 1, "", "setxor1d"], [24, 1, 1, "", "short"], [24, 5, 1, "", "sign"], [24, 1, 1, "", "signedinteger"], [87, 5, 1, "", "sin"], [24, 1, 1, "", "single"], [24, 5, 1, "", "sinh"], [24, 5, 1, "", "skew"], [24, 5, 1, "", "snapshot"], [24, 5, 1, "", "sort"], [50, 0, 0, "-", "sorting"], [24, 1, 1, "", "sparray"], [51, 0, 0, "-", "sparrayclass"], [52, 0, 0, "-", "sparsematrix"], [24, 5, 1, "", "sqrt"], [24, 5, 1, "", "square"], [24, 5, 1, "", "standard_normal"], [87, 5, 1, "", "std"], [24, 1, 1, "id1287", "str_"], [24, 1, 1, "", "str_scalars"], [24, 5, 1, "", "string_operators"], [53, 0, 0, "-", "strings"], [87, 5, 1, "", "sum"], [24, 5, 1, "", "tan"], [24, 5, 1, "", "tanh"], [54, 0, 0, "-", "testing"], [55, 0, 0, "-", "timeclass"], [24, 1, 1, "", "timedelta64"], [24, 5, 1, "id1355", "timedelta_range"], [24, 5, 1, "", "to_csv"], [24, 5, 1, "", "to_hdf"], [24, 5, 1, "", "to_parquet"], [24, 5, 1, "", "to_zarr"], [24, 5, 1, "", "transpose"], [24, 5, 1, "", "tril"], [24, 5, 1, "", "triu"], [24, 5, 1, "", "trunc"], [24, 5, 1, "", "typename"], [24, 1, 1, "", "ubyte"], [24, 1, 1, "", "uint"], [24, 1, 1, "", "uint16"], [24, 1, 1, "", "uint32"], [24, 1, 1, "", "uint64"], [24, 1, 1, "", "uint8"], [24, 1, 1, "", "uintc"], [24, 1, 1, "", "uintp"], [24, 1, 1, "", "ulonglong"], [24, 5, 1, "", "uniform"], [98, 5, 1, "", "union1d"], [98, 5, 1, "", "unique"], [24, 5, 1, "", "unregister"], [24, 5, 1, "", "unregister_all"], [24, 5, 1, "", "unregister_pdarray_by_name"], [24, 1, 1, "", "unsignedinteger"], [24, 5, 1, "", "unsqueeze"], [24, 5, 1, "", "update_hdf"], [24, 1, 1, "", "ushort"], [56, 0, 0, "-", "util"], [92, 5, 1, "", "value_counts"], [87, 5, 1, "", "var"], [24, 5, 1, "", "vecdot"], [24, 1, 1, "", "void"], [24, 5, 1, "", "vstack"], [87, 5, 1, "", "where"], [24, 5, 1, "", "write_log"], [24, 5, 1, "", "xlogy"], [24, 5, 1, "", "zero_up"], [89, 5, 1, "", "zeros"], [89, 5, 1, "", "zeros_like"]], "arkouda.ARKOUDA_SUPPORTED_DTYPES": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.BitVector": [[24, 4, 1, "", "conserves"], [24, 2, 1, "", "format"], [24, 2, 1, "", "from_return_msg"], [24, 2, 1, "", "opeq"], [24, 2, 1, "", "register"], [24, 4, 1, "", "registered_name"], [24, 4, 1, "", "reverse"], [24, 4, 1, "", "special_objType"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_ndarray"], [24, 4, 1, "", "values"], [24, 4, 1, "", "width"]], "arkouda.Categorical": [[24, 4, 1, "id73", "BinOps"], [24, 4, 1, "id74", "RegisterablePieces"], [24, 4, 1, "id75", "RequiredPieces"], [24, 2, 1, "id76", "argsort"], [24, 2, 1, "id77", "attach"], [88, 4, 1, "", "categories"], [88, 4, 1, "", "codes"], [24, 2, 1, "id78", "concatenate"], [88, 2, 1, "", "contains"], [24, 4, 1, "id80", "dtype"], [88, 2, 1, "", "endswith"], [24, 2, 1, "id82", "equals"], [88, 2, 1, "", "from_codes"], [24, 2, 1, "id84", "from_return_msg"], [24, 2, 1, "id85", "group"], [24, 2, 1, "id86", "hash"], [24, 2, 1, "id87", "in1d"], [24, 6, 1, "id88", "inferred_type"], [24, 2, 1, "id89", "info"], [24, 2, 1, "id90", "is_registered"], [24, 2, 1, "id91", "isna"], [24, 4, 1, "id92", "logger"], [24, 6, 1, "id93", "nbytes"], [88, 4, 1, "", "ndim"], [88, 4, 1, "", "nlevels"], [24, 4, 1, "id96", "objType"], [24, 2, 1, "id97", "parse_hdf_categoricals"], [88, 4, 1, "", "permutation"], [24, 2, 1, "id99", "pretty_print_info"], [24, 2, 1, "id100", "register"], [24, 4, 1, "id101", "registered_name"], [24, 2, 1, "id102", "reset_categories"], [24, 2, 1, "id103", "save"], [88, 4, 1, "", "segments"], [24, 2, 1, "id105", "set_categories"], [88, 4, 1, "", "shape"], [88, 4, 1, "", "size"], [24, 2, 1, "id108", "sort_values"], [24, 2, 1, "id109", "standardize_categories"], [88, 2, 1, "", "startswith"], [24, 2, 1, "id111", "to_hdf"], [24, 2, 1, "id112", "to_list"], [88, 5, 1, "", "to_ndarray"], [24, 2, 1, "id114", "to_pandas"], [24, 2, 1, "id115", "to_parquet"], [24, 2, 1, "id116", "to_strings"], [24, 2, 1, "id117", "transfer"], [24, 2, 1, "id118", "unique"], [24, 2, 1, "id119", "unregister"], [24, 2, 1, "id120", "unregister_categorical_by_name"], [24, 2, 1, "id121", "update_hdf"]], "arkouda.DType": [[24, 2, 1, "", "BIGINT"], [24, 2, 1, "", "BOOL"], [24, 2, 1, "", "COMPLEX128"], [24, 2, 1, "", "COMPLEX64"], [24, 2, 1, "", "FLOAT"], [24, 2, 1, "", "FLOAT32"], [24, 2, 1, "", "FLOAT64"], [24, 2, 1, "", "INT"], [24, 2, 1, "", "INT16"], [24, 2, 1, "", "INT32"], [24, 2, 1, "", "INT64"], [24, 2, 1, "", "INT8"], [24, 2, 1, "", "STR"], [24, 2, 1, "", "UINT"], [24, 2, 1, "", "UINT16"], [24, 2, 1, "", "UINT32"], [24, 2, 1, "", "UINT64"], [24, 2, 1, "", "UINT8"], [24, 2, 1, "", "name"], [24, 2, 1, "", "value"]], "arkouda.DTypeObjects": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.DTypes": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.DataFrame": [[24, 2, 1, "id123", "GroupBy"], [24, 2, 1, "id124", "all"], [24, 2, 1, "id125", "any"], [24, 2, 1, "id126", "append"], [90, 5, 1, "", "apply_permutation"], [90, 5, 1, "", "argsort"], [24, 2, 1, "id129", "assign"], [24, 2, 1, "id130", "attach"], [90, 5, 1, "", "coargsort"], [24, 6, 1, "id132", "columns"], [90, 5, 1, "", "concat"], [90, 5, 1, "", "copy"], [24, 2, 1, "id134", "corr"], [24, 2, 1, "id135", "count"], [90, 5, 1, "", "drop"], [90, 5, 1, "", "drop_duplicates"], [24, 2, 1, "id138", "dropna"], [24, 6, 1, "id139", "dtypes"], [24, 6, 1, "id140", "empty"], [24, 2, 1, "id141", "filter_by_range"], [24, 2, 1, "id142", "from_pandas"], [24, 2, 1, "id143", "from_return_msg"], [90, 5, 1, "", "groupby"], [90, 5, 1, "", "head"], [24, 6, 1, "id146", "index"], [24, 6, 1, "id147", "info"], [24, 2, 1, "id148", "is_registered"], [24, 2, 1, "id149", "isin"], [24, 2, 1, "id150", "isna"], [24, 2, 1, "id151", "load"], [24, 2, 1, "id152", "memory_usage"], [24, 2, 1, "id153", "memory_usage_info"], [24, 2, 1, "id154", "merge"], [24, 2, 1, "id155", "notna"], [24, 2, 1, "id156", "objType"], [24, 2, 1, "id157", "read_csv"], [24, 2, 1, "id158", "register"], [90, 5, 1, "", "rename"], [90, 5, 1, "", "reset_index"], [24, 2, 1, "id161", "sample"], [24, 2, 1, "id162", "save"], [24, 6, 1, "id163", "shape"], [24, 6, 1, "id164", "size"], [24, 2, 1, "id165", "sort_index"], [90, 5, 1, "", "sort_values"], [90, 5, 1, "", "tail"], [24, 2, 1, "id168", "to_csv"], [24, 2, 1, "id169", "to_hdf"], [24, 2, 1, "id170", "to_markdown"], [90, 5, 1, "", "to_pandas"], [24, 2, 1, "id172", "to_parquet"], [24, 2, 1, "id173", "transfer"], [24, 2, 1, "id174", "unregister"], [24, 2, 1, "id175", "unregister_dataframe_by_name"], [24, 2, 1, "id176", "update_hdf"], [24, 2, 1, "id177", "update_nrows"]], "arkouda.DataFrameGroupBy": [[24, 2, 1, "", "all"], [24, 2, 1, "", "any"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 4, 1, "", "as_index"], [24, 2, 1, "", "broadcast"], [24, 2, 1, "", "count"], [24, 4, 1, "", "df"], [24, 2, 1, "", "diff"], [24, 2, 1, "", "first"], [24, 4, 1, "", "gb"], [24, 4, 1, "", "gb_key_names"], [24, 2, 1, "", "head"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "median"], [24, 2, 1, "", "min"], [24, 2, 1, "", "mode"], [24, 2, 1, "", "nunique"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "sample"], [24, 2, 1, "", "size"], [24, 2, 1, "", "std"], [24, 2, 1, "", "sum"], [24, 2, 1, "", "tail"], [24, 2, 1, "", "unique"], [24, 2, 1, "", "var"], [24, 2, 1, "", "xor"]], "arkouda.DataSource": [[24, 2, 1, "", "abspath"], [24, 2, 1, "", "exists"], [24, 2, 1, "", "open"]], "arkouda.Datetime": [[24, 6, 1, "id212", "date"], [24, 6, 1, "id213", "day"], [24, 6, 1, "id214", "day_of_week"], [24, 6, 1, "id215", "day_of_year"], [24, 6, 1, "id216", "dayofweek"], [24, 6, 1, "id217", "dayofyear"], [24, 6, 1, "id218", "hour"], [24, 6, 1, "id219", "is_leap_year"], [24, 2, 1, "id220", "is_registered"], [24, 2, 1, "id221", "isocalendar"], [24, 6, 1, "id222", "microsecond"], [24, 6, 1, "id223", "millisecond"], [24, 6, 1, "id224", "minute"], [24, 6, 1, "id225", "month"], [24, 6, 1, "id226", "nanosecond"], [24, 2, 1, "id227", "register"], [24, 6, 1, "id228", "second"], [24, 4, 1, "id229", "special_objType"], [24, 2, 1, "id230", "sum"], [24, 4, 1, "id231", "supported_opeq"], [24, 4, 1, "id232", "supported_with_datetime"], [24, 4, 1, "id233", "supported_with_pdarray"], [24, 4, 1, "id234", "supported_with_r_datetime"], [24, 4, 1, "id235", "supported_with_r_pdarray"], [24, 4, 1, "id236", "supported_with_r_timedelta"], [24, 4, 1, "id237", "supported_with_timedelta"], [24, 2, 1, "id238", "to_pandas"], [24, 2, 1, "id239", "unregister"], [24, 6, 1, "id240", "week"], [24, 6, 1, "id241", "weekday"], [24, 6, 1, "id242", "weekofyear"], [24, 6, 1, "id243", "year"]], "arkouda.DatetimeAccessor": [[24, 4, 1, "", "data"], [24, 4, 1, "", "series"]], "arkouda.DiffAggregate": [[24, 2, 1, "", "all"], [24, 2, 1, "", "any"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 2, 1, "", "count"], [24, 2, 1, "", "first"], [24, 4, 1, "", "gb"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "median"], [24, 2, 1, "", "min"], [24, 2, 1, "", "mode"], [24, 2, 1, "", "nunique"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "std"], [24, 2, 1, "", "sum"], [24, 2, 1, "", "unique"], [24, 4, 1, "", "values"], [24, 2, 1, "", "var"], [24, 2, 1, "", "xor"]], "arkouda.ErrorMode": [[24, 2, 1, "", "ignore"], [24, 2, 1, "", "name"], [24, 2, 1, "", "return_validity"], [24, 2, 1, "", "strict"], [24, 2, 1, "", "value"]], "arkouda.Fields": [[24, 4, 1, "", "MSB_left"], [24, 2, 1, "", "format"], [24, 4, 1, "", "name"], [24, 4, 1, "", "names"], [24, 4, 1, "", "namewidth"], [24, 2, 1, "", "opeq"], [24, 4, 1, "", "pad"], [24, 4, 1, "", "padchar"], [24, 4, 1, "", "separator"], [24, 4, 1, "", "show_int"], [24, 4, 1, "", "width"]], "arkouda.GROUPBY_REDUCTION_TYPES": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.GroupBy": [[91, 2, 1, "", "AND"], [91, 2, 1, "", "OR"], [24, 2, 1, "id444", "Reductions"], [91, 2, 1, "", "XOR"], [91, 2, 1, "", "aggregate"], [91, 2, 1, "", "all"], [91, 2, 1, "", "any"], [91, 2, 1, "", "argmax"], [91, 2, 1, "", "argmin"], [91, 2, 1, "", "attach"], [91, 2, 1, "", "broadcast"], [91, 2, 1, "", "build_from_components"], [91, 2, 1, "", "count"], [91, 4, 1, "", "dropna"], [91, 2, 1, "", "first"], [24, 2, 1, "id456", "from_return_msg"], [91, 2, 1, "", "head"], [91, 2, 1, "", "is_registered"], [91, 4, 1, "", "logger"], [91, 2, 1, "", "max"], [91, 2, 1, "", "mean"], [91, 2, 1, "", "median"], [91, 2, 1, "", "min"], [91, 2, 1, "", "mode"], [91, 2, 1, "", "most_common"], [91, 4, 1, "", "ngroups"], [91, 4, 1, "", "nkeys"], [91, 2, 1, "", "nunique"], [24, 2, 1, "id466", "objType"], [91, 4, 1, "", "permutation"], [91, 2, 1, "", "prod"], [91, 2, 1, "", "register"], [91, 2, 1, "", "sample"], [91, 4, 1, "", "segments"], [91, 2, 1, "id0", "size"], [91, 2, 1, "", "std"], [91, 2, 1, "", "sum"], [91, 2, 1, "", "tail"], [91, 2, 1, "", "to_hdf"], [91, 2, 1, "", "unique"], [91, 4, 1, "", "unique_keys"], [91, 2, 1, "", "unregister"], [91, 2, 1, "", "unregister_groupby_by_name"], [24, 2, 1, "id478", "update_hdf"], [91, 2, 1, "", "var"]], "arkouda.IPv4": [[24, 2, 1, "", "export_uint"], [24, 2, 1, "", "format"], [24, 2, 1, "", "normalize"], [24, 2, 1, "", "opeq"], [24, 2, 1, "", "register"], [24, 4, 1, "", "special_objType"], [24, 2, 1, "", "to_hdf"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_ndarray"], [24, 2, 1, "", "update_hdf"], [24, 4, 1, "", "values"]], "arkouda.Index": [[85, 5, 1, "", "argsort"], [85, 5, 1, "", "concat"], [24, 2, 1, "", "equals"], [24, 2, 1, "", "factory"], [24, 2, 1, "", "from_return_msg"], [24, 6, 1, "", "index"], [24, 6, 1, "", "inferred_type"], [24, 2, 1, "", "is_registered"], [85, 5, 1, "", "lookup"], [24, 2, 1, "", "map"], [24, 4, 1, "", "max_list_size"], [24, 2, 1, "", "memory_usage"], [24, 6, 1, "", "names"], [24, 6, 1, "", "ndim"], [24, 6, 1, "", "nlevels"], [24, 4, 1, "", "objType"], [24, 2, 1, "", "register"], [24, 4, 1, "", "registered_name"], [24, 2, 1, "", "save"], [85, 5, 1, "", "set_dtype"], [24, 6, 1, "", "shape"], [24, 2, 1, "", "to_csv"], [24, 2, 1, "", "to_dict"], [24, 2, 1, "", "to_hdf"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_ndarray"], [24, 2, 1, "", "to_pandas"], [24, 2, 1, "", "to_parquet"], [24, 2, 1, "", "unregister"], [24, 2, 1, "", "update_hdf"]], "arkouda.LogLevel": [[24, 4, 1, "", "CRITICAL"], [24, 4, 1, "", "DEBUG"], [24, 4, 1, "", "ERROR"], [24, 4, 1, "", "INFO"], [24, 4, 1, "", "WARN"]], "arkouda.MultiIndex": [[85, 5, 1, "", "argsort"], [85, 5, 1, "", "concat"], [24, 6, 1, "", "dtype"], [24, 2, 1, "", "equal_levels"], [24, 4, 1, "", "first"], [24, 2, 1, "", "get_level_values"], [24, 6, 1, "", "index"], [24, 6, 1, "", "inferred_type"], [24, 2, 1, "", "is_registered"], [24, 4, 1, "", "levels"], [85, 5, 1, "", "lookup"], [24, 2, 1, "", "memory_usage"], [24, 6, 1, "", "name"], [24, 6, 1, "", "names"], [24, 6, 1, "", "ndim"], [24, 6, 1, "", "nlevels"], [24, 4, 1, "", "objType"], [24, 2, 1, "", "register"], [24, 4, 1, "", "registered_name"], [85, 5, 1, "", "set_dtype"], [24, 2, 1, "", "to_dict"], [24, 2, 1, "", "to_hdf"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_ndarray"], [24, 2, 1, "", "to_pandas"], [24, 2, 1, "", "unregister"], [24, 2, 1, "", "update_hdf"]], "arkouda.NUMBER_FORMAT_STRINGS": [[24, 2, 1, "", "clear"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "fromkeys"], [24, 2, 1, "", "get"], [24, 2, 1, "", "items"], [24, 2, 1, "", "keys"], [24, 2, 1, "", "pop"], [24, 2, 1, "", "popitem"], [24, 2, 1, "", "setdefault"], [24, 2, 1, "", "update"], [24, 2, 1, "", "values"]], "arkouda.NumericDTypes": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.Power_divergenceResult": [[24, 4, 1, "", "pvalue"], [24, 4, 1, "", "statistic"]], "arkouda.ScalarDTypes": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.ScalarType": [[24, 2, 1, "", "count"], [24, 2, 1, "", "index"]], "arkouda.SegArray": [[24, 2, 1, "", "AND"], [24, 2, 1, "", "OR"], [24, 2, 1, "", "XOR"], [24, 2, 1, "", "aggregate"], [24, 2, 1, "", "all"], [24, 2, 1, "", "any"], [96, 5, 1, "", "append"], [96, 5, 1, "", "append_single"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 2, 1, "", "attach"], [24, 2, 1, "", "concat"], [24, 2, 1, "", "copy"], [24, 4, 1, "", "dtype"], [24, 2, 1, "", "filter"], [24, 2, 1, "", "from_multi_array"], [24, 2, 1, "", "from_parts"], [24, 2, 1, "", "from_return_msg"], [96, 5, 1, "", "get_jth"], [96, 5, 1, "", "get_length_n"], [96, 5, 1, "", "get_ngrams"], [96, 5, 1, "", "get_prefixes"], [96, 5, 1, "", "get_suffixes"], [24, 6, 1, "", "grouping"], [24, 2, 1, "", "hash"], [96, 5, 1, "", "intersect"], [24, 2, 1, "", "is_registered"], [24, 2, 1, "", "load"], [24, 4, 1, "", "logger"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "min"], [24, 6, 1, "", "nbytes"], [24, 6, 1, "", "non_empty"], [24, 2, 1, "", "nunique"], [24, 4, 1, "", "objType"], [96, 5, 1, "", "prepend_single"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "read_hdf"], [24, 2, 1, "", "register"], [24, 4, 1, "", "registered_name"], [96, 5, 1, "", "remove_repeats"], [24, 2, 1, "", "save"], [24, 4, 1, "", "segments"], [96, 5, 1, "", "set_jth"], [96, 5, 1, "", "setdiff"], [96, 5, 1, "", "setxor"], [24, 4, 1, "", "size"], [24, 2, 1, "", "sum"], [24, 2, 1, "", "to_hdf"], [24, 2, 1, "", "to_list"], [96, 5, 1, "", "to_ndarray"], [24, 2, 1, "", "to_parquet"], [24, 2, 1, "", "transfer"], [96, 5, 1, "", "union"], [24, 2, 1, "", "unique"], [24, 2, 1, "", "unregister"], [24, 2, 1, "", "unregister_segarray_by_name"], [24, 2, 1, "", "update_hdf"], [24, 4, 1, "", "valsize"], [24, 4, 1, "", "values"]], "arkouda.Series": [[24, 2, 1, "", "add"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 6, 1, "", "at"], [24, 2, 1, "", "attach"], [24, 2, 1, "", "concat"], [24, 2, 1, "", "diff"], [24, 2, 1, "", "dt"], [24, 6, 1, "", "dtype"], [24, 2, 1, "", "fillna"], [24, 2, 1, "", "from_return_msg"], [24, 2, 1, "", "has_repeat_labels"], [24, 2, 1, "", "hasnans"], [97, 5, 1, "", "head"], [24, 6, 1, "", "iat"], [24, 6, 1, "", "iloc"], [24, 2, 1, "", "is_registered"], [24, 2, 1, "", "isin"], [24, 2, 1, "", "isna"], [24, 2, 1, "", "isnull"], [24, 6, 1, "", "loc"], [97, 5, 1, "id0", "locate"], [24, 2, 1, "", "map"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "memory_usage"], [24, 2, 1, "", "min"], [24, 6, 1, "", "ndim"], [24, 2, 1, "", "notna"], [24, 2, 1, "", "notnull"], [24, 2, 1, "", "objType"], [97, 5, 1, "", "pdconcat"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "register"], [24, 6, 1, "", "shape"], [97, 5, 1, "", "sort_index"], [97, 5, 1, "", "sort_values"], [24, 2, 1, "", "std"], [24, 2, 1, "", "str_acc"], [24, 2, 1, "", "sum"], [97, 5, 1, "", "tail"], [24, 2, 1, "", "to_dataframe"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_markdown"], [24, 2, 1, "", "to_ndarray"], [97, 5, 1, "", "to_pandas"], [97, 5, 1, "", "topn"], [24, 2, 1, "", "unregister"], [24, 2, 1, "", "validate_key"], [24, 2, 1, "", "validate_val"], [97, 5, 1, "", "value_counts"], [24, 2, 1, "", "var"]], "arkouda.SeriesDTypes": [[24, 2, 1, "", "clear"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "fromkeys"], [24, 2, 1, "", "get"], [24, 2, 1, "", "items"], [24, 2, 1, "", "keys"], [24, 2, 1, "", "pop"], [24, 2, 1, "", "popitem"], [24, 2, 1, "", "setdefault"], [24, 2, 1, "", "update"], [24, 2, 1, "", "values"]], "arkouda.StringAccessor": [[24, 4, 1, "", "data"], [24, 4, 1, "", "series"]], "arkouda.Strings": [[24, 4, 1, "id729", "BinOps"], [24, 2, 1, "id730", "astype"], [24, 2, 1, "id731", "attach"], [24, 2, 1, "id732", "cached_regex_patterns"], [24, 2, 1, "id733", "capitalize"], [100, 2, 1, "", "contains"], [24, 2, 1, "id735", "decode"], [24, 4, 1, "id736", "dtype"], [24, 2, 1, "id737", "encode"], [100, 2, 1, "", "endswith"], [24, 4, 1, "id739", "entry"], [24, 2, 1, "id740", "equals"], [100, 2, 1, "", "find_locations"], [100, 2, 1, "", "findall"], [100, 2, 1, "", "flatten"], [24, 2, 1, "id744", "from_parts"], [24, 2, 1, "id745", "from_return_msg"], [100, 2, 1, "", "fullmatch"], [24, 2, 1, "id747", "get_bytes"], [24, 2, 1, "id748", "get_lengths"], [24, 2, 1, "id749", "get_offsets"], [24, 2, 1, "id750", "get_prefixes"], [24, 2, 1, "id751", "get_suffixes"], [24, 2, 1, "id752", "group"], [24, 2, 1, "id753", "hash"], [24, 6, 1, "id754", "inferred_type"], [24, 2, 1, "id755", "info"], [24, 2, 1, "id756", "is_registered"], [24, 2, 1, "id757", "isalnum"], [24, 2, 1, "id758", "isalpha"], [24, 2, 1, "id759", "isdecimal"], [24, 2, 1, "id760", "isdigit"], [24, 2, 1, "id761", "isempty"], [24, 2, 1, "id762", "islower"], [24, 2, 1, "id763", "isspace"], [24, 2, 1, "id764", "istitle"], [24, 2, 1, "id765", "isupper"], [24, 4, 1, "id766", "logger"], [24, 2, 1, "id767", "lower"], [100, 2, 1, "", "lstick"], [100, 2, 1, "", "match"], [24, 4, 1, "id724", "nbytes"], [24, 4, 1, "id725", "ndim"], [24, 4, 1, "id770", "objType"], [100, 2, 1, "", "peel"], [24, 2, 1, "id772", "pretty_print_info"], [24, 2, 1, "id773", "purge_cached_regex_patterns"], [24, 2, 1, "id774", "regex_split"], [24, 2, 1, "id775", "register"], [24, 4, 1, "id776", "registered_name"], [100, 2, 1, "", "rpeel"], [24, 2, 1, "id778", "save"], [100, 2, 1, "", "search"], [24, 4, 1, "id726", "shape"], [24, 4, 1, "id723", "size"], [100, 2, 1, "", "split"], [100, 2, 1, "", "startswith"], [100, 2, 1, "", "stick"], [24, 2, 1, "id783", "strip"], [100, 2, 1, "", "sub"], [100, 2, 1, "", "subn"], [24, 2, 1, "id786", "title"], [24, 2, 1, "id787", "to_csv"], [24, 2, 1, "id788", "to_hdf"], [24, 2, 1, "id789", "to_list"], [100, 5, 1, "", "to_ndarray"], [24, 2, 1, "id791", "to_parquet"], [24, 2, 1, "id792", "transfer"], [24, 2, 1, "id793", "unregister"], [24, 2, 1, "id794", "unregister_strings_by_name"], [24, 2, 1, "id795", "update_hdf"], [24, 2, 1, "id796", "upper"]], "arkouda.Timedelta": [[24, 2, 1, "id798", "abs"], [24, 6, 1, "id799", "components"], [24, 6, 1, "id800", "days"], [24, 2, 1, "id801", "is_registered"], [24, 6, 1, "id802", "microseconds"], [24, 6, 1, "id803", "nanoseconds"], [24, 2, 1, "id804", "register"], [24, 6, 1, "id805", "seconds"], [24, 4, 1, "id806", "special_objType"], [24, 2, 1, "id807", "std"], [24, 2, 1, "id808", "sum"], [24, 4, 1, "id809", "supported_opeq"], [24, 4, 1, "id810", "supported_with_datetime"], [24, 4, 1, "id811", "supported_with_pdarray"], [24, 4, 1, "id812", "supported_with_r_datetime"], [24, 4, 1, "id813", "supported_with_r_pdarray"], [24, 4, 1, "id814", "supported_with_r_timedelta"], [24, 4, 1, "id815", "supported_with_timedelta"], [24, 2, 1, "id816", "to_pandas"], [24, 2, 1, "id817", "total_seconds"], [24, 2, 1, "id818", "unregister"]], "arkouda.accessor": [[2, 1, 1, "", "CachedAccessor"], [2, 1, 1, "", "DatetimeAccessor"], [2, 1, 1, "", "Properties"], [2, 1, 1, "", "StringAccessor"], [2, 5, 1, "", "date_operators"], [2, 5, 1, "", "string_operators"]], "arkouda.accessor.DatetimeAccessor": [[2, 4, 1, "", "data"], [2, 4, 1, "", "series"]], "arkouda.accessor.StringAccessor": [[2, 4, 1, "", "data"], [2, 4, 1, "", "series"]], "arkouda.akfloat64": [[24, 2, 1, "id822", "as_integer_ratio"], [24, 2, 1, "id823", "fromhex"], [24, 2, 1, "id824", "hex"], [24, 2, 1, "id825", "is_integer"]], "arkouda.akint64": [[24, 2, 1, "id829", "bit_count"]], "arkouda.akuint64": [[24, 2, 1, "id833", "bit_count"]], "arkouda.alignment": [[3, 7, 1, "", "NonUniqueError"], [3, 5, 1, "", "align"], [3, 5, 1, "", "find"], [3, 5, 1, "", "in1d_intervals"], [3, 5, 1, "", "interval_lookup"], [3, 5, 1, "", "is_cosorted"], [3, 5, 1, "", "left_align"], [3, 5, 1, "", "lookup"], [3, 5, 1, "", "right_align"], [3, 5, 1, "", "search_intervals"], [3, 5, 1, "", "unsqueeze"], [3, 5, 1, "", "zero_up"]], "arkouda.array_api": [[8, 1, 1, "", "Array"], [4, 0, 0, "-", "array_object"], [5, 0, 0, "-", "creation_functions"], [6, 0, 0, "-", "data_type_functions"], [7, 0, 0, "-", "elementwise_functions"], [9, 0, 0, "-", "indexing_functions"], [10, 0, 0, "-", "linalg"], [11, 0, 0, "-", "manipulation_functions"], [12, 0, 0, "-", "searching_functions"], [13, 0, 0, "-", "set_functions"], [14, 0, 0, "-", "sorting_functions"], [15, 0, 0, "-", "statistical_functions"], [16, 0, 0, "-", "utility_functions"]], "arkouda.array_api.Array": [[8, 6, 1, "", "T"], [8, 2, 1, "", "chunk_info"], [8, 6, 1, "", "device"], [8, 6, 1, "", "dtype"], [8, 2, 1, "", "item"], [8, 6, 1, "", "mT"], [8, 6, 1, "", "ndim"], [8, 6, 1, "", "shape"], [8, 6, 1, "", "size"], [8, 2, 1, "", "to_device"], [8, 2, 1, "", "to_ndarray"], [8, 2, 1, "", "tolist"], [8, 2, 1, "", "transpose"]], "arkouda.array_api.array_object": [[4, 1, 1, "", "Array"], [4, 3, 1, "", "HANDLED_FUNCTIONS"], [4, 5, 1, "", "implements_numpy"]], "arkouda.array_api.array_object.Array": [[4, 6, 1, "", "T"], [4, 2, 1, "", "chunk_info"], [4, 6, 1, "", "device"], [4, 6, 1, "", "dtype"], [4, 2, 1, "", "item"], [4, 6, 1, "", "mT"], [4, 6, 1, "", "ndim"], [4, 6, 1, "", "shape"], [4, 6, 1, "", "size"], [4, 2, 1, "", "to_device"], [4, 2, 1, "", "to_ndarray"], [4, 2, 1, "", "tolist"], [4, 2, 1, "", "transpose"]], "arkouda.array_api.creation_functions": [[5, 5, 1, "", "arange"], [5, 5, 1, "", "asarray"], [5, 5, 1, "", "empty"], [5, 5, 1, "", "empty_like"], [5, 5, 1, "", "eye"], [5, 5, 1, "", "from_dlpack"], [5, 5, 1, "", "full"], [5, 5, 1, "", "full_like"], [5, 5, 1, "", "linspace"], [5, 5, 1, "", "meshgrid"], [5, 5, 1, "", "ones"], [5, 5, 1, "", "ones_like"], [5, 5, 1, "", "tril"], [5, 5, 1, "", "triu"], [5, 5, 1, "", "zeros"], [5, 5, 1, "", "zeros_like"]], "arkouda.array_api.data_type_functions": [[6, 5, 1, "", "astype"], [6, 5, 1, "", "can_cast"], [6, 5, 1, "", "finfo"], [6, 1, 1, "", "finfo_object"], [6, 5, 1, "", "iinfo"], [6, 1, 1, "", "iinfo_object"], [6, 5, 1, "", "isdtype"], [6, 5, 1, "", "result_type"]], "arkouda.array_api.data_type_functions.finfo_object": [[6, 4, 1, "", "bits"], [6, 4, 1, "", "dtype"], [6, 4, 1, "", "eps"], [6, 4, 1, "", "max"], [6, 4, 1, "", "min"], [6, 4, 1, "", "smallest_normal"]], "arkouda.array_api.data_type_functions.iinfo_object": [[6, 4, 1, "", "bits"], [6, 4, 1, "", "dtype"], [6, 4, 1, "", "max"], [6, 4, 1, "", "min"]], "arkouda.array_api.elementwise_functions": [[7, 5, 1, "", "abs"], [7, 5, 1, "", "acos"], [7, 5, 1, "", "acosh"], [7, 5, 1, "", "add"], [7, 5, 1, "", "asin"], [7, 5, 1, "", "asinh"], [7, 5, 1, "", "atan"], [7, 5, 1, "", "atan2"], [7, 5, 1, "", "atanh"], [7, 5, 1, "", "bitwise_and"], [7, 5, 1, "", "bitwise_invert"], [7, 5, 1, "", "bitwise_left_shift"], [7, 5, 1, "", "bitwise_or"], [7, 5, 1, "", "bitwise_right_shift"], [7, 5, 1, "", "bitwise_xor"], [7, 5, 1, "", "ceil"], [7, 5, 1, "", "conj"], [7, 5, 1, "", "cos"], [7, 5, 1, "", "cosh"], [7, 5, 1, "", "divide"], [7, 5, 1, "", "equal"], [7, 5, 1, "", "exp"], [7, 5, 1, "", "expm1"], [7, 5, 1, "", "floor"], [7, 5, 1, "", "floor_divide"], [7, 5, 1, "", "greater"], [7, 5, 1, "", "greater_equal"], [7, 5, 1, "", "imag"], [7, 5, 1, "", "isfinite"], [7, 5, 1, "", "isinf"], [7, 5, 1, "", "isnan"], [7, 5, 1, "", "less"], [7, 5, 1, "", "less_equal"], [7, 5, 1, "", "log"], [7, 5, 1, "", "log10"], [7, 5, 1, "", "log1p"], [7, 5, 1, "", "log2"], [7, 5, 1, "", "logaddexp"], [7, 5, 1, "", "logical_and"], [7, 5, 1, "", "logical_not"], [7, 5, 1, "", "logical_or"], [7, 5, 1, "", "logical_xor"], [7, 5, 1, "", "multiply"], [7, 5, 1, "", "negative"], [7, 5, 1, "", "not_equal"], [7, 5, 1, "", "positive"], [7, 5, 1, "", "pow"], [7, 5, 1, "", "real"], [7, 5, 1, "", "remainder"], [7, 5, 1, "", "round"], [7, 5, 1, "", "sign"], [7, 5, 1, "", "sin"], [7, 5, 1, "", "sinh"], [7, 5, 1, "", "sqrt"], [7, 5, 1, "", "square"], [7, 5, 1, "", "subtract"], [7, 5, 1, "", "tan"], [7, 5, 1, "", "tanh"], [7, 5, 1, "", "trunc"]], "arkouda.array_api.indexing_functions": [[9, 5, 1, "", "take"]], "arkouda.array_api.linalg": [[10, 5, 1, "", "matmul"], [10, 5, 1, "", "matrix_transpose"], [10, 5, 1, "", "tensordot"], [10, 5, 1, "", "vecdot"]], "arkouda.array_api.manipulation_functions": [[11, 5, 1, "", "broadcast_arrays"], [11, 5, 1, "", "broadcast_to"], [11, 5, 1, "", "concat"], [11, 5, 1, "", "expand_dims"], [11, 5, 1, "", "flip"], [11, 5, 1, "", "moveaxis"], [11, 5, 1, "", "permute_dims"], [11, 5, 1, "", "repeat"], [11, 5, 1, "", "reshape"], [11, 5, 1, "", "roll"], [11, 5, 1, "", "squeeze"], [11, 5, 1, "", "stack"], [11, 5, 1, "", "tile"], [11, 5, 1, "", "unstack"]], "arkouda.array_api.searching_functions": [[12, 5, 1, "", "argmax"], [12, 5, 1, "", "argmin"], [12, 5, 1, "", "nonzero"], [12, 5, 1, "", "searchsorted"], [12, 5, 1, "", "where"]], "arkouda.array_api.set_functions": [[13, 1, 1, "", "UniqueAllResult"], [13, 1, 1, "", "UniqueCountsResult"], [13, 1, 1, "", "UniqueInverseResult"], [13, 5, 1, "", "unique_all"], [13, 5, 1, "", "unique_counts"], [13, 5, 1, "", "unique_inverse"], [13, 5, 1, "", "unique_values"]], "arkouda.array_api.set_functions.UniqueAllResult": [[13, 4, 1, "", "counts"], [13, 4, 1, "", "indices"], [13, 4, 1, "", "inverse_indices"], [13, 4, 1, "", "values"]], "arkouda.array_api.set_functions.UniqueCountsResult": [[13, 4, 1, "", "counts"], [13, 4, 1, "", "values"]], "arkouda.array_api.set_functions.UniqueInverseResult": [[13, 4, 1, "", "inverse_indices"], [13, 4, 1, "", "values"]], "arkouda.array_api.sorting_functions": [[14, 5, 1, "", "argsort"], [14, 5, 1, "", "sort"]], "arkouda.array_api.statistical_functions": [[15, 5, 1, "", "cumulative_sum"], [15, 5, 1, "", "max"], [15, 5, 1, "", "mean"], [15, 5, 1, "", "mean_shim"], [15, 5, 1, "", "min"], [15, 5, 1, "", "prod"], [15, 5, 1, "", "std"], [15, 5, 1, "", "sum"], [15, 5, 1, "", "var"]], "arkouda.array_api.utility_functions": [[16, 5, 1, "", "all"], [16, 5, 1, "", "any"], [16, 5, 1, "", "clip"], [16, 5, 1, "", "diff"], [16, 5, 1, "", "pad"]], "arkouda.bigint": [[24, 2, 1, "id845", "itemsize"], [24, 2, 1, "id846", "name"], [24, 2, 1, "id847", "ndim"], [24, 2, 1, "id848", "shape"], [24, 2, 1, "id849", "type"]], "arkouda.bitType": [[24, 2, 1, "id853", "bit_count"]], "arkouda.byte": [[24, 2, 1, "", "bit_count"]], "arkouda.bytes_": [[24, 2, 1, "", "T"], [24, 2, 1, "", "all"], [24, 2, 1, "", "any"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 2, 1, "", "argsort"], [24, 2, 1, "", "astype"], [24, 2, 1, "", "base"], [24, 2, 1, "", "byteswap"], [24, 2, 1, "", "choose"], [24, 2, 1, "", "clip"], [24, 2, 1, "", "compress"], [24, 2, 1, "", "conj"], [24, 2, 1, "", "conjugate"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "cumprod"], [24, 2, 1, "", "cumsum"], [24, 2, 1, "", "data"], [24, 2, 1, "", "diagonal"], [24, 2, 1, "", "dtype"], [24, 2, 1, "", "dump"], [24, 2, 1, "", "dumps"], [24, 2, 1, "", "fill"], [24, 2, 1, "", "flags"], [24, 2, 1, "", "flat"], [24, 2, 1, "", "flatten"], [24, 2, 1, "", "getfield"], [24, 2, 1, "", "imag"], [24, 2, 1, "", "item"], [24, 2, 1, "", "itemset"], [24, 2, 1, "", "itemsize"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "min"], [24, 2, 1, "", "nbytes"], [24, 2, 1, "", "ndim"], [24, 2, 1, "", "newbyteorder"], [24, 2, 1, "", "nonzero"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "ptp"], [24, 2, 1, "", "put"], [24, 2, 1, "", "ravel"], [24, 2, 1, "", "real"], [24, 2, 1, "", "repeat"], [24, 2, 1, "", "reshape"], [24, 2, 1, "", "resize"], [24, 2, 1, "", "round"], [24, 2, 1, "", "searchsorted"], [24, 2, 1, "", "setfield"], [24, 2, 1, "", "setflags"], [24, 2, 1, "", "shape"], [24, 2, 1, "", "size"], [24, 2, 1, "", "sort"], [24, 2, 1, "", "squeeze"], [24, 2, 1, "", "std"], [24, 2, 1, "", "strides"], [24, 2, 1, "", "sum"], [24, 2, 1, "", "swapaxes"], [24, 2, 1, "", "take"], [24, 2, 1, "", "tobytes"], [24, 2, 1, "", "tofile"], [24, 2, 1, "", "tolist"], [24, 2, 1, "", "tostring"], [24, 2, 1, "", "trace"], [24, 2, 1, "", "transpose"], [24, 2, 1, "", "var"], [24, 2, 1, "", "view"]], "arkouda.categorical": [[17, 1, 1, "", "Categorical"]], "arkouda.categorical.Categorical": [[17, 4, 1, "", "BinOps"], [17, 4, 1, "", "RegisterablePieces"], [17, 4, 1, "", "RequiredPieces"], [17, 2, 1, "", "argsort"], [17, 2, 1, "", "attach"], [17, 4, 1, "", "categories"], [17, 4, 1, "", "codes"], [17, 2, 1, "", "concatenate"], [17, 2, 1, "", "contains"], [17, 4, 1, "", "dtype"], [17, 2, 1, "", "endswith"], [17, 2, 1, "", "equals"], [17, 2, 1, "", "from_codes"], [17, 2, 1, "", "from_return_msg"], [17, 2, 1, "", "group"], [17, 2, 1, "", "hash"], [17, 2, 1, "", "in1d"], [17, 6, 1, "", "inferred_type"], [17, 2, 1, "", "info"], [17, 2, 1, "", "is_registered"], [17, 2, 1, "", "isna"], [17, 4, 1, "", "logger"], [17, 6, 1, "", "nbytes"], [17, 4, 1, "id0", "ndim"], [17, 4, 1, "id1", "nlevels"], [17, 4, 1, "", "objType"], [17, 2, 1, "", "parse_hdf_categoricals"], [17, 4, 1, "id2", "permutation"], [17, 2, 1, "", "pretty_print_info"], [17, 2, 1, "", "register"], [17, 4, 1, "", "registered_name"], [17, 2, 1, "", "reset_categories"], [17, 2, 1, "", "save"], [17, 4, 1, "id3", "segments"], [17, 2, 1, "", "set_categories"], [17, 4, 1, "id4", "shape"], [17, 4, 1, "id5", "size"], [17, 2, 1, "", "sort_values"], [17, 2, 1, "", "standardize_categories"], [17, 2, 1, "", "startswith"], [17, 2, 1, "", "to_hdf"], [17, 2, 1, "", "to_list"], [17, 2, 1, "", "to_ndarray"], [17, 2, 1, "", "to_pandas"], [17, 2, 1, "", "to_parquet"], [17, 2, 1, "", "to_strings"], [17, 2, 1, "", "transfer"], [17, 2, 1, "", "unique"], [17, 2, 1, "", "unregister"], [17, 2, 1, "", "unregister_categorical_by_name"], [17, 2, 1, "", "update_hdf"]], "arkouda.client": [[18, 5, 1, "", "connect"], [18, 5, 1, "", "disconnect"], [18, 5, 1, "", "generate_history"], [18, 5, 1, "", "get_config"], [18, 5, 1, "", "get_max_array_rank"], [18, 5, 1, "", "get_mem_avail"], [18, 5, 1, "", "get_mem_status"], [18, 5, 1, "", "get_mem_used"], [18, 5, 1, "", "get_server_commands"], [18, 5, 1, "", "print_server_commands"], [18, 5, 1, "", "ruok"], [18, 5, 1, "", "shutdown"]], "arkouda.client_dtypes": [[19, 1, 1, "", "BitVector"], [19, 5, 1, "", "BitVectorizer"], [19, 1, 1, "", "Fields"], [19, 1, 1, "", "IPv4"], [19, 5, 1, "", "ip_address"], [19, 5, 1, "", "is_ipv4"], [19, 5, 1, "", "is_ipv6"]], "arkouda.client_dtypes.BitVector": [[19, 4, 1, "", "conserves"], [19, 2, 1, "", "format"], [19, 2, 1, "", "from_return_msg"], [19, 2, 1, "", "opeq"], [19, 2, 1, "", "register"], [19, 4, 1, "", "registered_name"], [19, 4, 1, "", "reverse"], [19, 4, 1, "", "special_objType"], [19, 2, 1, "", "to_list"], [19, 2, 1, "", "to_ndarray"], [19, 4, 1, "", "values"], [19, 4, 1, "", "width"]], "arkouda.client_dtypes.Fields": [[19, 4, 1, "", "MSB_left"], [19, 2, 1, "", "format"], [19, 4, 1, "", "name"], [19, 4, 1, "", "names"], [19, 4, 1, "", "namewidth"], [19, 2, 1, "", "opeq"], [19, 4, 1, "", "pad"], [19, 4, 1, "", "padchar"], [19, 4, 1, "", "separator"], [19, 4, 1, "", "show_int"], [19, 4, 1, "", "width"]], "arkouda.client_dtypes.IPv4": [[19, 2, 1, "", "export_uint"], [19, 2, 1, "", "format"], [19, 2, 1, "", "normalize"], [19, 2, 1, "", "opeq"], [19, 2, 1, "", "register"], [19, 4, 1, "", "special_objType"], [19, 2, 1, "", "to_hdf"], [19, 2, 1, "", "to_list"], [19, 2, 1, "", "to_ndarray"], [19, 2, 1, "", "update_hdf"], [19, 4, 1, "", "values"]], "arkouda.dataframe": [[20, 1, 1, "", "DataFrame"], [20, 1, 1, "", "DataFrameGroupBy"], [20, 1, 1, "", "DiffAggregate"], [20, 5, 1, "", "intersect"], [20, 5, 1, "", "intx"], [20, 5, 1, "", "invert_permutation"], [20, 5, 1, "", "merge"]], "arkouda.dataframe.DataFrame": [[20, 2, 1, "", "GroupBy"], [20, 2, 1, "", "all"], [20, 2, 1, "", "any"], [20, 2, 1, "", "append"], [20, 2, 1, "", "apply_permutation"], [20, 2, 1, "", "argsort"], [20, 2, 1, "", "assign"], [20, 2, 1, "", "attach"], [20, 2, 1, "", "coargsort"], [20, 6, 1, "", "columns"], [20, 2, 1, "", "concat"], [20, 2, 1, "", "corr"], [20, 2, 1, "", "count"], [20, 2, 1, "", "drop"], [20, 2, 1, "", "drop_duplicates"], [20, 2, 1, "", "dropna"], [20, 6, 1, "", "dtypes"], [20, 6, 1, "", "empty"], [20, 2, 1, "", "filter_by_range"], [20, 2, 1, "", "from_pandas"], [20, 2, 1, "", "from_return_msg"], [20, 2, 1, "", "groupby"], [20, 2, 1, "", "head"], [20, 6, 1, "", "index"], [20, 6, 1, "", "info"], [20, 2, 1, "", "is_registered"], [20, 2, 1, "", "isin"], [20, 2, 1, "", "isna"], [20, 2, 1, "", "load"], [20, 2, 1, "", "memory_usage"], [20, 2, 1, "", "memory_usage_info"], [20, 2, 1, "", "merge"], [20, 2, 1, "", "notna"], [20, 2, 1, "", "objType"], [20, 2, 1, "", "read_csv"], [20, 2, 1, "", "register"], [20, 2, 1, "", "rename"], [20, 2, 1, "", "reset_index"], [20, 2, 1, "", "sample"], [20, 2, 1, "", "save"], [20, 6, 1, "", "shape"], [20, 6, 1, "", "size"], [20, 2, 1, "", "sort_index"], [20, 2, 1, "", "sort_values"], [20, 2, 1, "", "tail"], [20, 2, 1, "", "to_csv"], [20, 2, 1, "", "to_hdf"], [20, 2, 1, "", "to_markdown"], [20, 2, 1, "", "to_pandas"], [20, 2, 1, "", "to_parquet"], [20, 2, 1, "", "transfer"], [20, 2, 1, "", "unregister"], [20, 2, 1, "", "unregister_dataframe_by_name"], [20, 2, 1, "", "update_hdf"], [20, 2, 1, "", "update_nrows"]], "arkouda.dataframe.DataFrameGroupBy": [[20, 2, 1, "", "all"], [20, 2, 1, "", "any"], [20, 2, 1, "", "argmax"], [20, 2, 1, "", "argmin"], [20, 4, 1, "", "as_index"], [20, 2, 1, "", "broadcast"], [20, 2, 1, "", "count"], [20, 4, 1, "", "df"], [20, 2, 1, "", "diff"], [20, 2, 1, "", "first"], [20, 4, 1, "", "gb"], [20, 4, 1, "", "gb_key_names"], [20, 2, 1, "", "head"], [20, 2, 1, "", "max"], [20, 2, 1, "", "mean"], [20, 2, 1, "", "median"], [20, 2, 1, "", "min"], [20, 2, 1, "", "mode"], [20, 2, 1, "", "nunique"], [20, 2, 1, "", "prod"], [20, 2, 1, "", "sample"], [20, 2, 1, "", "size"], [20, 2, 1, "", "std"], [20, 2, 1, "", "sum"], [20, 2, 1, "", "tail"], [20, 2, 1, "", "unique"], [20, 2, 1, "", "var"], [20, 2, 1, "", "xor"]], "arkouda.dataframe.DiffAggregate": [[20, 2, 1, "", "all"], [20, 2, 1, "", "any"], [20, 2, 1, "", "argmax"], [20, 2, 1, "", "argmin"], [20, 2, 1, "", "count"], [20, 2, 1, "", "first"], [20, 4, 1, "", "gb"], [20, 2, 1, "", "max"], [20, 2, 1, "", "mean"], [20, 2, 1, "", "median"], [20, 2, 1, "", "min"], [20, 2, 1, "", "mode"], [20, 2, 1, "", "nunique"], [20, 2, 1, "", "prod"], [20, 2, 1, "", "std"], [20, 2, 1, "", "sum"], [20, 2, 1, "", "unique"], [20, 4, 1, "", "values"], [20, 2, 1, "", "var"], [20, 2, 1, "", "xor"]], "arkouda.double": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "fromhex"], [24, 2, 1, "", "hex"], [24, 2, 1, "", "is_integer"]], "arkouda.dtypes": [[21, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [21, 1, 1, "", "ARKOUDA_SUPPORTED_FLOATS"], [21, 1, 1, "", "ARKOUDA_SUPPORTED_INTS"], [21, 1, 1, "", "ARKOUDA_SUPPORTED_NUMBERS"], [21, 1, 1, "", "DType"], [21, 1, 1, "", "DTypeObjects"], [21, 1, 1, "", "DTypes"], [21, 1, 1, "", "Enum"], [21, 1, 1, "", "NUMBER_FORMAT_STRINGS"], [21, 1, 1, "", "NumericDTypes"], [21, 1, 1, "", "ScalarDTypes"], [21, 1, 1, "", "SeriesDTypes"], [21, 1, 1, "", "Union"], [21, 1, 1, "", "all_scalars"], [21, 1, 1, "", "annotations"], [21, 1, 1, "", "bigint"], [21, 1, 1, "", "bitType"], [21, 1, 1, "", "bool_"], [21, 1, 1, "", "bool_scalars"], [21, 5, 1, "", "cast"], [21, 1, 1, "", "complex128"], [21, 1, 1, "", "complex64"], [21, 5, 1, "", "dtype"], [21, 1, 1, "", "float16"], [21, 1, 1, "", "float32"], [21, 1, 1, "", "float64"], [21, 1, 1, "", "float_scalars"], [21, 5, 1, "", "get_byteorder"], [21, 5, 1, "", "get_server_byteorder"], [21, 1, 1, "", "int16"], [21, 1, 1, "", "int32"], [21, 1, 1, "", "int64"], [21, 1, 1, "", "int8"], [21, 1, 1, "", "intTypes"], [21, 1, 1, "", "int_scalars"], [21, 5, 1, "", "isSupportedFloat"], [21, 5, 1, "", "isSupportedInt"], [21, 5, 1, "", "isSupportedNumber"], [21, 1, 1, "", "numeric_and_bool_scalars"], [21, 1, 1, "", "numeric_scalars"], [21, 1, 1, "", "numpy_scalars"], [21, 5, 1, "", "resolve_scalar_dtype"], [21, 1, 1, "", "str_"], [21, 1, 1, "", "str_scalars"], [21, 1, 1, "", "uint16"], [21, 1, 1, "", "uint32"], [21, 1, 1, "", "uint64"], [21, 1, 1, "", "uint8"]], "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.ARKOUDA_SUPPORTED_FLOATS": [[21, 2, 1, "", "count"], [21, 2, 1, "", "index"]], "arkouda.dtypes.ARKOUDA_SUPPORTED_INTS": [[21, 2, 1, "", "count"], [21, 2, 1, "", "index"]], "arkouda.dtypes.ARKOUDA_SUPPORTED_NUMBERS": [[21, 2, 1, "", "count"], [21, 2, 1, "", "index"]], "arkouda.dtypes.DType": [[21, 2, 1, "", "BIGINT"], [21, 2, 1, "", "BOOL"], [21, 2, 1, "", "COMPLEX128"], [21, 2, 1, "", "COMPLEX64"], [21, 2, 1, "", "FLOAT"], [21, 2, 1, "", "FLOAT32"], [21, 2, 1, "", "FLOAT64"], [21, 2, 1, "", "INT"], [21, 2, 1, "", "INT16"], [21, 2, 1, "", "INT32"], [21, 2, 1, "", "INT64"], [21, 2, 1, "", "INT8"], [21, 2, 1, "", "STR"], [21, 2, 1, "", "UINT"], [21, 2, 1, "", "UINT16"], [21, 2, 1, "", "UINT32"], [21, 2, 1, "", "UINT64"], [21, 2, 1, "", "UINT8"], [21, 2, 1, "", "name"], [21, 2, 1, "", "value"]], "arkouda.dtypes.DTypeObjects": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.DTypes": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.NUMBER_FORMAT_STRINGS": [[21, 2, 1, "", "clear"], [21, 2, 1, "", "copy"], [21, 2, 1, "", "fromkeys"], [21, 2, 1, "", "get"], [21, 2, 1, "", "items"], [21, 2, 1, "", "keys"], [21, 2, 1, "", "pop"], [21, 2, 1, "", "popitem"], [21, 2, 1, "", "setdefault"], [21, 2, 1, "", "update"], [21, 2, 1, "", "values"]], "arkouda.dtypes.NumericDTypes": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.ScalarDTypes": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.SeriesDTypes": [[21, 2, 1, "", "clear"], [21, 2, 1, "", "copy"], [21, 2, 1, "", "fromkeys"], [21, 2, 1, "", "get"], [21, 2, 1, "", "items"], [21, 2, 1, "", "keys"], [21, 2, 1, "", "pop"], [21, 2, 1, "", "popitem"], [21, 2, 1, "", "setdefault"], [21, 2, 1, "", "update"], [21, 2, 1, "", "values"]], "arkouda.dtypes.annotations": [[21, 2, 1, "", "compiler_flag"], [21, 2, 1, "", "getMandatoryRelease"], [21, 2, 1, "", "getOptionalRelease"], [21, 2, 1, "", "mandatory"], [21, 2, 1, "", "optional"]], "arkouda.dtypes.bigint": [[21, 2, 1, "", "itemsize"], [21, 2, 1, "", "name"], [21, 2, 1, "", "ndim"], [21, 2, 1, "", "shape"], [21, 2, 1, "", "type"]], "arkouda.dtypes.bitType": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.float16": [[21, 2, 1, "", "as_integer_ratio"], [21, 2, 1, "", "is_integer"]], "arkouda.dtypes.float32": [[21, 2, 1, "", "as_integer_ratio"], [21, 2, 1, "", "is_integer"]], "arkouda.dtypes.float64": [[21, 2, 1, "", "as_integer_ratio"], [21, 2, 1, "", "fromhex"], [21, 2, 1, "", "hex"], [21, 2, 1, "", "is_integer"]], "arkouda.dtypes.int16": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.int32": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.int64": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.int8": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.intTypes": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.str_": [[21, 2, 1, "", "T"], [21, 2, 1, "", "all"], [21, 2, 1, "", "any"], [21, 2, 1, "", "argmax"], [21, 2, 1, "", "argmin"], [21, 2, 1, "", "argsort"], [21, 2, 1, "", "astype"], [21, 2, 1, "", "base"], [21, 2, 1, "", "byteswap"], [21, 2, 1, "", "choose"], [21, 2, 1, "", "clip"], [21, 2, 1, "", "compress"], [21, 2, 1, "", "conj"], [21, 2, 1, "", "conjugate"], [21, 2, 1, "", "copy"], [21, 2, 1, "", "cumprod"], [21, 2, 1, "", "cumsum"], [21, 2, 1, "", "data"], [21, 2, 1, "", "diagonal"], [21, 2, 1, "", "dtype"], [21, 2, 1, "", "dump"], [21, 2, 1, "", "dumps"], [21, 2, 1, "", "fill"], [21, 2, 1, "", "flags"], [21, 2, 1, "", "flat"], [21, 2, 1, "", "flatten"], [21, 2, 1, "", "getfield"], [21, 2, 1, "", "imag"], [21, 2, 1, "", "item"], [21, 2, 1, "", "itemset"], [21, 2, 1, "", "itemsize"], [21, 2, 1, "", "max"], [21, 2, 1, "", "mean"], [21, 2, 1, "", "min"], [21, 2, 1, "", "nbytes"], [21, 2, 1, "", "ndim"], [21, 2, 1, "", "newbyteorder"], [21, 2, 1, "", "nonzero"], [21, 2, 1, "", "prod"], [21, 2, 1, "", "ptp"], [21, 2, 1, "", "put"], [21, 2, 1, "", "ravel"], [21, 2, 1, "", "real"], [21, 2, 1, "", "repeat"], [21, 2, 1, "", "reshape"], [21, 2, 1, "", "resize"], [21, 2, 1, "", "round"], [21, 2, 1, "", "searchsorted"], [21, 2, 1, "", "setfield"], [21, 2, 1, "", "setflags"], [21, 2, 1, "", "shape"], [21, 2, 1, "", "size"], [21, 2, 1, "", "sort"], [21, 2, 1, "", "squeeze"], [21, 2, 1, "", "std"], [21, 2, 1, "", "strides"], [21, 2, 1, "", "sum"], [21, 2, 1, "", "swapaxes"], [21, 2, 1, "", "take"], [21, 2, 1, "", "tobytes"], [21, 2, 1, "", "tofile"], [21, 2, 1, "", "tolist"], [21, 2, 1, "", "tostring"], [21, 2, 1, "", "trace"], [21, 2, 1, "", "transpose"], [21, 2, 1, "", "var"], [21, 2, 1, "", "view"]], "arkouda.dtypes.uint16": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.uint32": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.uint64": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.uint8": [[21, 2, 1, "", "bit_count"]], "arkouda.finfo": [[24, 4, 1, "", "bits"], [24, 4, 1, "", "dtype"], [24, 4, 1, "", "eps"], [24, 4, 1, "", "epsneg"], [24, 4, 1, "", "iexp"], [24, 4, 1, "", "machep"], [24, 4, 1, "", "max"], [24, 4, 1, "", "maxexp"], [24, 4, 1, "", "min"], [24, 4, 1, "", "minexp"], [24, 4, 1, "", "negep"], [24, 4, 1, "", "nexp"], [24, 4, 1, "", "nmant"], [24, 4, 1, "", "precision"], [24, 4, 1, "", "resolution"], [24, 6, 1, "id873", "smallest_normal"], [24, 4, 1, "", "smallest_subnormal"], [24, 6, 1, "id874", "tiny"]], "arkouda.float16": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.float32": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.float64": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "fromhex"], [24, 2, 1, "", "hex"], [24, 2, 1, "", "is_integer"]], "arkouda.float_": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "fromhex"], [24, 2, 1, "", "hex"], [24, 2, 1, "", "is_integer"]], "arkouda.format_parser": [[24, 4, 1, "", "dtype"]], "arkouda.groupbyclass": [[22, 1, 1, "", "GROUPBY_REDUCTION_TYPES"], [22, 1, 1, "", "GroupBy"], [22, 5, 1, "", "broadcast"], [22, 5, 1, "", "unique"]], "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES": [[22, 2, 1, "", "copy"], [22, 2, 1, "", "difference"], [22, 2, 1, "", "intersection"], [22, 2, 1, "", "isdisjoint"], [22, 2, 1, "", "issubset"], [22, 2, 1, "", "issuperset"], [22, 2, 1, "", "symmetric_difference"], [22, 2, 1, "", "union"]], "arkouda.groupbyclass.GroupBy": [[22, 2, 1, "", "AND"], [22, 2, 1, "", "OR"], [22, 2, 1, "", "Reductions"], [22, 2, 1, "", "XOR"], [22, 2, 1, "", "aggregate"], [22, 2, 1, "", "all"], [22, 2, 1, "", "any"], [22, 2, 1, "", "argmax"], [22, 2, 1, "", "argmin"], [22, 2, 1, "", "attach"], [22, 2, 1, "", "broadcast"], [22, 2, 1, "", "build_from_components"], [22, 2, 1, "", "count"], [22, 4, 1, "", "dropna"], [22, 2, 1, "", "first"], [22, 2, 1, "", "from_return_msg"], [22, 2, 1, "", "head"], [22, 2, 1, "", "is_registered"], [22, 4, 1, "", "logger"], [22, 2, 1, "", "max"], [22, 2, 1, "", "mean"], [22, 2, 1, "", "median"], [22, 2, 1, "", "min"], [22, 2, 1, "", "mode"], [22, 2, 1, "", "most_common"], [22, 4, 1, "", "ngroups"], [22, 4, 1, "", "nkeys"], [22, 2, 1, "", "nunique"], [22, 2, 1, "", "objType"], [22, 4, 1, "", "permutation"], [22, 2, 1, "", "prod"], [22, 2, 1, "", "register"], [22, 2, 1, "", "sample"], [22, 4, 1, "", "segments"], [22, 2, 1, "id0", "size"], [22, 2, 1, "", "std"], [22, 2, 1, "", "sum"], [22, 2, 1, "", "tail"], [22, 2, 1, "", "to_hdf"], [22, 2, 1, "", "unique"], [22, 4, 1, "", "unique_keys"], [22, 2, 1, "", "unregister"], [22, 2, 1, "", "unregister_groupby_by_name"], [22, 2, 1, "", "update_hdf"], [22, 2, 1, "", "var"]], "arkouda.half": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.history": [[23, 1, 1, "", "HistoryRetriever"], [23, 1, 1, "", "NotebookHistoryRetriever"], [23, 1, 1, "", "ShellHistoryRetriever"]], "arkouda.history.HistoryRetriever": [[23, 2, 1, "", "retrieve"]], "arkouda.history.NotebookHistoryRetriever": [[23, 2, 1, "", "retrieve"]], "arkouda.history.ShellHistoryRetriever": [[23, 2, 1, "", "retrieve"]], "arkouda.iinfo": [[24, 4, 1, "", "bits"], [24, 4, 1, "", "dtype"], [24, 6, 1, "id879", "max"], [24, 6, 1, "id880", "min"]], "arkouda.index": [[25, 1, 1, "", "Index"], [25, 1, 1, "", "MultiIndex"]], "arkouda.index.Index": [[25, 2, 1, "", "argsort"], [25, 2, 1, "", "concat"], [25, 2, 1, "", "equals"], [25, 2, 1, "", "factory"], [25, 2, 1, "", "from_return_msg"], [25, 6, 1, "", "index"], [25, 6, 1, "", "inferred_type"], [25, 2, 1, "", "is_registered"], [25, 2, 1, "", "lookup"], [25, 2, 1, "", "map"], [25, 4, 1, "", "max_list_size"], [25, 2, 1, "", "memory_usage"], [25, 6, 1, "", "names"], [25, 6, 1, "", "ndim"], [25, 6, 1, "", "nlevels"], [25, 4, 1, "", "objType"], [25, 2, 1, "", "register"], [25, 4, 1, "", "registered_name"], [25, 2, 1, "", "save"], [25, 2, 1, "", "set_dtype"], [25, 6, 1, "", "shape"], [25, 2, 1, "", "to_csv"], [25, 2, 1, "", "to_dict"], [25, 2, 1, "", "to_hdf"], [25, 2, 1, "", "to_list"], [25, 2, 1, "", "to_ndarray"], [25, 2, 1, "", "to_pandas"], [25, 2, 1, "", "to_parquet"], [25, 2, 1, "", "unregister"], [25, 2, 1, "", "update_hdf"]], "arkouda.index.MultiIndex": [[25, 2, 1, "", "argsort"], [25, 2, 1, "", "concat"], [25, 6, 1, "", "dtype"], [25, 2, 1, "", "equal_levels"], [25, 4, 1, "", "first"], [25, 2, 1, "", "get_level_values"], [25, 6, 1, "", "index"], [25, 6, 1, "", "inferred_type"], [25, 2, 1, "", "is_registered"], [25, 4, 1, "", "levels"], [25, 2, 1, "", "lookup"], [25, 2, 1, "", "memory_usage"], [25, 6, 1, "", "name"], [25, 6, 1, "", "names"], [25, 6, 1, "", "ndim"], [25, 6, 1, "", "nlevels"], [25, 4, 1, "", "objType"], [25, 2, 1, "", "register"], [25, 4, 1, "", "registered_name"], [25, 2, 1, "", "set_dtype"], [25, 2, 1, "", "to_dict"], [25, 2, 1, "", "to_hdf"], [25, 2, 1, "", "to_list"], [25, 2, 1, "", "to_ndarray"], [25, 2, 1, "", "to_pandas"], [25, 2, 1, "", "unregister"], [25, 2, 1, "", "update_hdf"]], "arkouda.infoclass": [[26, 3, 1, "", "AllSymbols"], [26, 3, 1, "", "RegisteredSymbols"], [26, 5, 1, "", "information"], [26, 5, 1, "", "list_registry"], [26, 5, 1, "", "list_symbol_table"], [26, 5, 1, "", "pretty_print_information"]], "arkouda.int16": [[24, 2, 1, "", "bit_count"]], "arkouda.int32": [[24, 2, 1, "", "bit_count"]], "arkouda.int64": [[24, 2, 1, "id884", "bit_count"]], "arkouda.int8": [[24, 2, 1, "", "bit_count"]], "arkouda.intTypes": [[24, 2, 1, "id895", "copy"], [24, 2, 1, "id896", "difference"], [24, 2, 1, "id897", "intersection"], [24, 2, 1, "id898", "isdisjoint"], [24, 2, 1, "id899", "issubset"], [24, 2, 1, "id900", "issuperset"], [24, 2, 1, "id901", "symmetric_difference"], [24, 2, 1, "id902", "union"]], "arkouda.int_": [[24, 2, 1, "", "bit_count"]], "arkouda.intc": [[24, 2, 1, "", "bit_count"]], "arkouda.integer": [[24, 2, 1, "", "denominator"], [24, 2, 1, "", "is_integer"], [24, 2, 1, "", "numerator"]], "arkouda.intp": [[24, 2, 1, "", "bit_count"]], "arkouda.io": [[27, 5, 1, "", "export"], [27, 5, 1, "", "get_columns"], [27, 5, 1, "", "get_datasets"], [27, 5, 1, "", "get_filetype"], [27, 5, 1, "", "get_null_indices"], [27, 5, 1, "", "import_data"], [27, 5, 1, "", "load"], [27, 5, 1, "", "load_all"], [27, 5, 1, "", "ls"], [27, 5, 1, "", "ls_csv"], [27, 5, 1, "", "read"], [27, 5, 1, "", "read_csv"], [27, 5, 1, "", "read_hdf"], [27, 5, 1, "", "read_parquet"], [27, 5, 1, "", "read_tagged_data"], [27, 5, 1, "", "read_zarr"], [27, 5, 1, "", "receive"], [27, 5, 1, "", "receive_dataframe"], [27, 5, 1, "", "restore"], [27, 5, 1, "", "save_all"], [27, 5, 1, "", "snapshot"], [27, 5, 1, "", "to_csv"], [27, 5, 1, "", "to_hdf"], [27, 5, 1, "", "to_parquet"], [27, 5, 1, "", "to_zarr"], [27, 5, 1, "", "update_hdf"]], "arkouda.io_util": [[28, 5, 1, "", "delete_directory"], [28, 5, 1, "", "delimited_file_to_dict"], [28, 5, 1, "", "dict_to_delimited_file"], [28, 5, 1, "", "get_directory"], [28, 5, 1, "", "write_line_to_file"]], "arkouda.join": [[29, 5, 1, "", "compute_join_size"], [29, 5, 1, "", "gen_ranges"], [29, 5, 1, "", "join_on_eq_with_dt"]], "arkouda.logger": [[30, 1, 1, "", "LogLevel"], [30, 5, 1, "", "disableVerbose"], [30, 5, 1, "", "enableVerbose"], [30, 5, 1, "", "write_log"]], "arkouda.logger.LogLevel": [[30, 4, 1, "", "CRITICAL"], [30, 4, 1, "", "DEBUG"], [30, 4, 1, "", "ERROR"], [30, 4, 1, "", "INFO"], [30, 4, 1, "", "WARN"]], "arkouda.longdouble": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.longfloat": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.longlong": [[24, 2, 1, "", "bit_count"]], "arkouda.match": [[31, 1, 1, "", "Match"]], "arkouda.match.Match": [[100, 2, 1, "", "end"], [100, 2, 1, "", "find_matches"], [100, 2, 1, "", "group"], [100, 2, 1, "", "match_type"], [100, 2, 1, "", "matched"], [31, 4, 1, "", "re"], [100, 2, 1, "", "start"]], "arkouda.matcher": [[32, 1, 1, "", "Matcher"]], "arkouda.matcher.Matcher": [[32, 4, 1, "", "LocationsInfo"], [32, 2, 1, "", "find_locations"], [32, 2, 1, "", "findall"], [32, 4, 1, "", "full_match_bool"], [32, 4, 1, "", "full_match_ind"], [32, 2, 1, "", "get_match"], [32, 4, 1, "", "indices"], [32, 4, 1, "", "lengths"], [32, 4, 1, "", "logger"], [32, 4, 1, "", "match_bool"], [32, 4, 1, "", "match_ind"], [32, 4, 1, "", "num_matches"], [32, 4, 1, "", "objType"], [32, 4, 1, "", "parent_entry_name"], [32, 4, 1, "", "populated"], [32, 4, 1, "", "search_bool"], [32, 4, 1, "", "search_ind"], [32, 2, 1, "", "split"], [32, 4, 1, "", "starts"], [32, 2, 1, "", "sub"]], "arkouda.numpy": [[35, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [35, 1, 1, "", "BoolDType"], [35, 1, 1, "", "ByteDType"], [35, 1, 1, "", "BytesDType"], [35, 1, 1, "", "CLongDoubleDType"], [35, 1, 1, "", "Complex128DType"], [35, 1, 1, "", "Complex64DType"], [35, 1, 1, "", "DType"], [35, 1, 1, "", "DTypeObjects"], [35, 1, 1, "", "DTypes"], [35, 1, 1, "", "DataSource"], [35, 1, 1, "", "DateTime64DType"], [35, 1, 1, "", "ErrorMode"], [35, 1, 1, "", "False_"], [35, 1, 1, "", "Float16DType"], [35, 1, 1, "", "Float32DType"], [35, 1, 1, "", "Float64DType"], [35, 3, 1, "", "Inf"], [35, 3, 1, "", "Infinity"], [35, 1, 1, "", "Int16DType"], [35, 1, 1, "", "Int32DType"], [35, 1, 1, "", "Int64DType"], [35, 1, 1, "", "Int8DType"], [35, 1, 1, "", "IntDType"], [35, 1, 1, "", "LongDType"], [35, 1, 1, "", "LongDoubleDType"], [35, 1, 1, "", "LongLongDType"], [35, 3, 1, "", "NAN"], [35, 3, 1, "", "NINF"], [35, 1, 1, "", "NUMBER_FORMAT_STRINGS"], [35, 3, 1, "", "NZERO"], [35, 3, 1, "", "NaN"], [35, 1, 1, "", "NumericDTypes"], [35, 1, 1, "", "ObjectDType"], [35, 3, 1, "", "PINF"], [35, 3, 1, "", "PZERO"], [35, 1, 1, "", "RankWarning"], [35, 1, 1, "", "ScalarDTypes"], [35, 1, 1, "", "ScalarType"], [35, 1, 1, "", "SeriesDTypes"], [35, 1, 1, "", "ShortDType"], [35, 1, 1, "", "StrDType"], [35, 1, 1, "", "TimeDelta64DType"], [35, 1, 1, "", "TooHardError"], [35, 1, 1, "", "True_"], [35, 1, 1, "", "UByteDType"], [35, 1, 1, "", "UInt16DType"], [35, 1, 1, "", "UInt32DType"], [35, 1, 1, "", "UInt64DType"], [35, 1, 1, "", "UInt8DType"], [35, 1, 1, "", "UIntDType"], [35, 1, 1, "", "ULongDType"], [35, 1, 1, "", "ULongLongDType"], [35, 1, 1, "", "UShortDType"], [35, 1, 1, "", "VoidDType"], [35, 5, 1, "", "abs"], [35, 5, 1, "", "add_newdoc"], [35, 1, 1, "", "all_scalars"], [35, 5, 1, "", "arccos"], [35, 5, 1, "", "arccosh"], [35, 5, 1, "", "arcsin"], [35, 5, 1, "", "arcsinh"], [35, 5, 1, "", "arctan"], [35, 5, 1, "", "arctan2"], [35, 5, 1, "", "arctanh"], [35, 5, 1, "", "array_equal"], [35, 5, 1, "", "base_repr"], [35, 1, 1, "", "bigint"], [35, 5, 1, "", "binary_repr"], [35, 1, 1, "", "bitType"], [35, 1, 1, "", "bool_"], [35, 1, 1, "", "bool_scalars"], [35, 1, 1, "", "byte"], [35, 1, 1, "", "bytes_"], [35, 5, 1, "", "cast"], [35, 1, 1, "", "cdouble"], [35, 5, 1, "", "ceil"], [35, 1, 1, "", "cfloat"], [35, 1, 1, "", "character"], [35, 5, 1, "", "clip"], [35, 1, 1, "", "clongdouble"], [35, 1, 1, "", "clongfloat"], [35, 1, 1, "", "complex128"], [35, 1, 1, "", "complex64"], [35, 5, 1, "", "cos"], [35, 5, 1, "", "cosh"], [35, 5, 1, "", "count_nonzero"], [35, 1, 1, "", "csingle"], [35, 5, 1, "", "cumprod"], [35, 5, 1, "", "cumsum"], [35, 1, 1, "", "datetime64"], [35, 5, 1, "", "deg2rad"], [35, 5, 1, "", "deprecate"], [35, 5, 1, "", "deprecate_with_doc"], [35, 5, 1, "", "disp"], [35, 1, 1, "", "double"], [35, 5, 1, "", "dtype"], [34, 0, 0, "-", "dtypes"], [35, 3, 1, "", "e"], [35, 3, 1, "", "euler_gamma"], [35, 5, 1, "", "exp"], [35, 5, 1, "", "expm1"], [35, 5, 1, "", "eye"], [35, 1, 1, "", "finfo"], [35, 1, 1, "", "flexible"], [35, 5, 1, "", "flip"], [35, 1, 1, "", "float16"], [35, 1, 1, "", "float32"], [35, 1, 1, "", "float64"], [35, 1, 1, "", "float_"], [35, 1, 1, "", "float_scalars"], [35, 1, 1, "", "floating"], [35, 5, 1, "", "floor"], [35, 5, 1, "", "format_float_positional"], [35, 5, 1, "", "format_float_scientific"], [35, 1, 1, "", "format_parser"], [35, 5, 1, "", "get_byteorder"], [35, 5, 1, "", "get_server_byteorder"], [35, 1, 1, "", "half"], [35, 5, 1, "", "hash"], [35, 5, 1, "", "histogram"], [35, 5, 1, "", "histogram2d"], [35, 5, 1, "", "histogramdd"], [35, 1, 1, "", "iinfo"], [35, 1, 1, "", "inexact"], [35, 3, 1, "", "inf"], [35, 3, 1, "", "infty"], [35, 1, 1, "", "int16"], [35, 1, 1, "", "int32"], [35, 1, 1, "", "int64"], [35, 1, 1, "", "int8"], [35, 1, 1, "", "intTypes"], [35, 1, 1, "", "int_"], [35, 1, 1, "", "int_scalars"], [35, 1, 1, "", "intc"], [35, 1, 1, "", "integer"], [35, 1, 1, "", "intp"], [35, 5, 1, "", "isSupportedFloat"], [35, 5, 1, "", "isSupportedInt"], [35, 5, 1, "", "isSupportedNumber"], [35, 5, 1, "", "isfinite"], [35, 5, 1, "", "isinf"], [35, 5, 1, "", "isnan"], [35, 5, 1, "", "isscalar"], [35, 5, 1, "", "issctype"], [35, 5, 1, "", "issubclass_"], [35, 5, 1, "", "issubdtype"], [35, 5, 1, "", "log"], [35, 5, 1, "", "log10"], [35, 5, 1, "", "log1p"], [35, 5, 1, "", "log2"], [35, 1, 1, "", "longdouble"], [35, 1, 1, "", "longfloat"], [35, 1, 1, "", "longlong"], [35, 5, 1, "", "matmul"], [35, 5, 1, "", "maximum_sctype"], [35, 5, 1, "", "median"], [35, 3, 1, "", "nan"], [35, 1, 1, "", "number"], [35, 1, 1, "", "numeric_and_bool_scalars"], [35, 1, 1, "", "numeric_scalars"], [35, 1, 1, "", "numpy_scalars"], [35, 1, 1, "", "object_"], [35, 3, 1, "", "pi"], [35, 5, 1, "", "putmask"], [35, 5, 1, "", "rad2deg"], [36, 0, 0, "-", "random"], [35, 5, 1, "", "resolve_scalar_dtype"], [35, 5, 1, "", "round"], [35, 1, 1, "", "sctypeDict"], [35, 1, 1, "", "sctypes"], [35, 1, 1, "", "short"], [35, 5, 1, "", "sign"], [35, 1, 1, "", "signedinteger"], [35, 5, 1, "", "sin"], [35, 1, 1, "", "single"], [35, 5, 1, "", "sinh"], [35, 5, 1, "", "square"], [35, 1, 1, "", "str_"], [35, 1, 1, "", "str_scalars"], [35, 5, 1, "", "tan"], [35, 5, 1, "", "tanh"], [35, 1, 1, "", "timedelta64"], [35, 5, 1, "", "transpose"], [35, 5, 1, "", "tril"], [35, 5, 1, "", "triu"], [35, 5, 1, "", "trunc"], [35, 5, 1, "", "typename"], [35, 1, 1, "", "ubyte"], [35, 1, 1, "", "uint"], [35, 1, 1, "", "uint16"], [35, 1, 1, "", "uint32"], [35, 1, 1, "", "uint64"], [35, 1, 1, "", "uint8"], [35, 1, 1, "", "uintc"], [35, 1, 1, "", "uintp"], [35, 1, 1, "", "ulonglong"], [35, 1, 1, "", "unsignedinteger"], [35, 1, 1, "", "ushort"], [35, 5, 1, "", "value_counts"], [35, 5, 1, "", "vecdot"], [35, 1, 1, "", "void"], [35, 5, 1, "", "where"]], "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.DType": [[35, 2, 1, "", "BIGINT"], [35, 2, 1, "", "BOOL"], [35, 2, 1, "", "COMPLEX128"], [35, 2, 1, "", "COMPLEX64"], [35, 2, 1, "", "FLOAT"], [35, 2, 1, "", "FLOAT32"], [35, 2, 1, "", "FLOAT64"], [35, 2, 1, "", "INT"], [35, 2, 1, "", "INT16"], [35, 2, 1, "", "INT32"], [35, 2, 1, "", "INT64"], [35, 2, 1, "", "INT8"], [35, 2, 1, "", "STR"], [35, 2, 1, "", "UINT"], [35, 2, 1, "", "UINT16"], [35, 2, 1, "", "UINT32"], [35, 2, 1, "", "UINT64"], [35, 2, 1, "", "UINT8"], [35, 2, 1, "", "name"], [35, 2, 1, "", "value"]], "arkouda.numpy.DTypeObjects": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.DTypes": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.DataSource": [[35, 2, 1, "", "abspath"], [35, 2, 1, "", "exists"], [35, 2, 1, "", "open"]], "arkouda.numpy.ErrorMode": [[35, 2, 1, "", "ignore"], [35, 2, 1, "", "name"], [35, 2, 1, "", "return_validity"], [35, 2, 1, "", "strict"], [35, 2, 1, "", "value"]], "arkouda.numpy.NUMBER_FORMAT_STRINGS": [[35, 2, 1, "", "clear"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "fromkeys"], [35, 2, 1, "", "get"], [35, 2, 1, "", "items"], [35, 2, 1, "", "keys"], [35, 2, 1, "", "pop"], [35, 2, 1, "", "popitem"], [35, 2, 1, "", "setdefault"], [35, 2, 1, "", "update"], [35, 2, 1, "", "values"]], "arkouda.numpy.NumericDTypes": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.ScalarDTypes": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.ScalarType": [[35, 2, 1, "", "count"], [35, 2, 1, "", "index"]], "arkouda.numpy.SeriesDTypes": [[35, 2, 1, "", "clear"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "fromkeys"], [35, 2, 1, "", "get"], [35, 2, 1, "", "items"], [35, 2, 1, "", "keys"], [35, 2, 1, "", "pop"], [35, 2, 1, "", "popitem"], [35, 2, 1, "", "setdefault"], [35, 2, 1, "", "update"], [35, 2, 1, "", "values"]], "arkouda.numpy.bigint": [[35, 2, 1, "", "itemsize"], [35, 2, 1, "", "name"], [35, 2, 1, "", "ndim"], [35, 2, 1, "", "shape"], [35, 2, 1, "", "type"]], "arkouda.numpy.bitType": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.byte": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.bytes_": [[35, 2, 1, "", "T"], [35, 2, 1, "", "all"], [35, 2, 1, "", "any"], [35, 2, 1, "", "argmax"], [35, 2, 1, "", "argmin"], [35, 2, 1, "", "argsort"], [35, 2, 1, "", "astype"], [35, 2, 1, "", "base"], [35, 2, 1, "", "byteswap"], [35, 2, 1, "", "choose"], [35, 2, 1, "", "clip"], [35, 2, 1, "", "compress"], [35, 2, 1, "", "conj"], [35, 2, 1, "", "conjugate"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "cumprod"], [35, 2, 1, "", "cumsum"], [35, 2, 1, "", "data"], [35, 2, 1, "", "diagonal"], [35, 2, 1, "", "dtype"], [35, 2, 1, "", "dump"], [35, 2, 1, "", "dumps"], [35, 2, 1, "", "fill"], [35, 2, 1, "", "flags"], [35, 2, 1, "", "flat"], [35, 2, 1, "", "flatten"], [35, 2, 1, "", "getfield"], [35, 2, 1, "", "imag"], [35, 2, 1, "", "item"], [35, 2, 1, "", "itemset"], [35, 2, 1, "", "itemsize"], [35, 2, 1, "", "max"], [35, 2, 1, "", "mean"], [35, 2, 1, "", "min"], [35, 2, 1, "", "nbytes"], [35, 2, 1, "", "ndim"], [35, 2, 1, "", "newbyteorder"], [35, 2, 1, "", "nonzero"], [35, 2, 1, "", "prod"], [35, 2, 1, "", "ptp"], [35, 2, 1, "", "put"], [35, 2, 1, "", "ravel"], [35, 2, 1, "", "real"], [35, 2, 1, "", "repeat"], [35, 2, 1, "", "reshape"], [35, 2, 1, "", "resize"], [35, 2, 1, "", "round"], [35, 2, 1, "", "searchsorted"], [35, 2, 1, "", "setfield"], [35, 2, 1, "", "setflags"], [35, 2, 1, "", "shape"], [35, 2, 1, "", "size"], [35, 2, 1, "", "sort"], [35, 2, 1, "", "squeeze"], [35, 2, 1, "", "std"], [35, 2, 1, "", "strides"], [35, 2, 1, "", "sum"], [35, 2, 1, "", "swapaxes"], [35, 2, 1, "", "take"], [35, 2, 1, "", "tobytes"], [35, 2, 1, "", "tofile"], [35, 2, 1, "", "tolist"], [35, 2, 1, "", "tostring"], [35, 2, 1, "", "trace"], [35, 2, 1, "", "transpose"], [35, 2, 1, "", "var"], [35, 2, 1, "", "view"]], "arkouda.numpy.double": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "fromhex"], [35, 2, 1, "", "hex"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.dtypes": [[34, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [34, 1, 1, "", "ARKOUDA_SUPPORTED_FLOATS"], [34, 1, 1, "", "ARKOUDA_SUPPORTED_INTS"], [34, 1, 1, "", "ARKOUDA_SUPPORTED_NUMBERS"], [34, 1, 1, "", "DType"], [34, 1, 1, "", "DTypeObjects"], [34, 1, 1, "", "DTypes"], [34, 1, 1, "", "Enum"], [34, 1, 1, "", "NUMBER_FORMAT_STRINGS"], [34, 1, 1, "", "NumericDTypes"], [34, 1, 1, "", "ScalarDTypes"], [34, 1, 1, "", "SeriesDTypes"], [34, 1, 1, "", "Union"], [34, 1, 1, "", "all_scalars"], [34, 1, 1, "", "annotations"], [34, 1, 1, "", "bigint"], [34, 1, 1, "", "bitType"], [34, 1, 1, "", "bool_"], [34, 1, 1, "", "bool_scalars"], [34, 5, 1, "", "cast"], [34, 1, 1, "", "complex128"], [34, 1, 1, "", "complex64"], [34, 5, 1, "", "dtype"], [34, 1, 1, "", "float16"], [34, 1, 1, "", "float32"], [34, 1, 1, "", "float64"], [34, 1, 1, "", "float_scalars"], [34, 5, 1, "", "get_byteorder"], [34, 5, 1, "", "get_server_byteorder"], [34, 1, 1, "", "int16"], [34, 1, 1, "", "int32"], [34, 1, 1, "", "int64"], [34, 1, 1, "", "int8"], [34, 1, 1, "", "intTypes"], [34, 1, 1, "", "int_scalars"], [34, 5, 1, "", "isSupportedFloat"], [34, 5, 1, "", "isSupportedInt"], [34, 5, 1, "", "isSupportedNumber"], [34, 1, 1, "", "numeric_and_bool_scalars"], [34, 1, 1, "", "numeric_scalars"], [34, 1, 1, "", "numpy_scalars"], [34, 5, 1, "", "resolve_scalar_dtype"], [34, 1, 1, "", "str_"], [34, 1, 1, "", "str_scalars"], [34, 1, 1, "", "uint16"], [34, 1, 1, "", "uint32"], [34, 1, 1, "", "uint64"], [34, 1, 1, "", "uint8"]], "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_FLOATS": [[34, 2, 1, "", "count"], [34, 2, 1, "", "index"]], "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_INTS": [[34, 2, 1, "", "count"], [34, 2, 1, "", "index"]], "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_NUMBERS": [[34, 2, 1, "", "count"], [34, 2, 1, "", "index"]], "arkouda.numpy.dtypes.DType": [[34, 2, 1, "", "BIGINT"], [34, 2, 1, "", "BOOL"], [34, 2, 1, "", "COMPLEX128"], [34, 2, 1, "", "COMPLEX64"], [34, 2, 1, "", "FLOAT"], [34, 2, 1, "", "FLOAT32"], [34, 2, 1, "", "FLOAT64"], [34, 2, 1, "", "INT"], [34, 2, 1, "", "INT16"], [34, 2, 1, "", "INT32"], [34, 2, 1, "", "INT64"], [34, 2, 1, "", "INT8"], [34, 2, 1, "", "STR"], [34, 2, 1, "", "UINT"], [34, 2, 1, "", "UINT16"], [34, 2, 1, "", "UINT32"], [34, 2, 1, "", "UINT64"], [34, 2, 1, "", "UINT8"], [34, 2, 1, "", "name"], [34, 2, 1, "", "value"]], "arkouda.numpy.dtypes.DTypeObjects": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.DTypes": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS": [[34, 2, 1, "", "clear"], [34, 2, 1, "", "copy"], [34, 2, 1, "", "fromkeys"], [34, 2, 1, "", "get"], [34, 2, 1, "", "items"], [34, 2, 1, "", "keys"], [34, 2, 1, "", "pop"], [34, 2, 1, "", "popitem"], [34, 2, 1, "", "setdefault"], [34, 2, 1, "", "update"], [34, 2, 1, "", "values"]], "arkouda.numpy.dtypes.NumericDTypes": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.ScalarDTypes": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.SeriesDTypes": [[34, 2, 1, "", "clear"], [34, 2, 1, "", "copy"], [34, 2, 1, "", "fromkeys"], [34, 2, 1, "", "get"], [34, 2, 1, "", "items"], [34, 2, 1, "", "keys"], [34, 2, 1, "", "pop"], [34, 2, 1, "", "popitem"], [34, 2, 1, "", "setdefault"], [34, 2, 1, "", "update"], [34, 2, 1, "", "values"]], "arkouda.numpy.dtypes.annotations": [[34, 2, 1, "", "compiler_flag"], [34, 2, 1, "", "getMandatoryRelease"], [34, 2, 1, "", "getOptionalRelease"], [34, 2, 1, "", "mandatory"], [34, 2, 1, "", "optional"]], "arkouda.numpy.dtypes.bigint": [[34, 2, 1, "", "itemsize"], [34, 2, 1, "", "name"], [34, 2, 1, "", "ndim"], [34, 2, 1, "", "shape"], [34, 2, 1, "", "type"]], "arkouda.numpy.dtypes.bitType": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.float16": [[34, 2, 1, "", "as_integer_ratio"], [34, 2, 1, "", "is_integer"]], "arkouda.numpy.dtypes.float32": [[34, 2, 1, "", "as_integer_ratio"], [34, 2, 1, "", "is_integer"]], "arkouda.numpy.dtypes.float64": [[34, 2, 1, "", "as_integer_ratio"], [34, 2, 1, "", "fromhex"], [34, 2, 1, "", "hex"], [34, 2, 1, "", "is_integer"]], "arkouda.numpy.dtypes.int16": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.int32": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.int64": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.int8": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.intTypes": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.str_": [[34, 2, 1, "", "T"], [34, 2, 1, "", "all"], [34, 2, 1, "", "any"], [34, 2, 1, "", "argmax"], [34, 2, 1, "", "argmin"], [34, 2, 1, "", "argsort"], [34, 2, 1, "", "astype"], [34, 2, 1, "", "base"], [34, 2, 1, "", "byteswap"], [34, 2, 1, "", "choose"], [34, 2, 1, "", "clip"], [34, 2, 1, "", "compress"], [34, 2, 1, "", "conj"], [34, 2, 1, "", "conjugate"], [34, 2, 1, "", "copy"], [34, 2, 1, "", "cumprod"], [34, 2, 1, "", "cumsum"], [34, 2, 1, "", "data"], [34, 2, 1, "", "diagonal"], [34, 2, 1, "", "dtype"], [34, 2, 1, "", "dump"], [34, 2, 1, "", "dumps"], [34, 2, 1, "", "fill"], [34, 2, 1, "", "flags"], [34, 2, 1, "", "flat"], [34, 2, 1, "", "flatten"], [34, 2, 1, "", "getfield"], [34, 2, 1, "", "imag"], [34, 2, 1, "", "item"], [34, 2, 1, "", "itemset"], [34, 2, 1, "", "itemsize"], [34, 2, 1, "", "max"], [34, 2, 1, "", "mean"], [34, 2, 1, "", "min"], [34, 2, 1, "", "nbytes"], [34, 2, 1, "", "ndim"], [34, 2, 1, "", "newbyteorder"], [34, 2, 1, "", "nonzero"], [34, 2, 1, "", "prod"], [34, 2, 1, "", "ptp"], [34, 2, 1, "", "put"], [34, 2, 1, "", "ravel"], [34, 2, 1, "", "real"], [34, 2, 1, "", "repeat"], [34, 2, 1, "", "reshape"], [34, 2, 1, "", "resize"], [34, 2, 1, "", "round"], [34, 2, 1, "", "searchsorted"], [34, 2, 1, "", "setfield"], [34, 2, 1, "", "setflags"], [34, 2, 1, "", "shape"], [34, 2, 1, "", "size"], [34, 2, 1, "", "sort"], [34, 2, 1, "", "squeeze"], [34, 2, 1, "", "std"], [34, 2, 1, "", "strides"], [34, 2, 1, "", "sum"], [34, 2, 1, "", "swapaxes"], [34, 2, 1, "", "take"], [34, 2, 1, "", "tobytes"], [34, 2, 1, "", "tofile"], [34, 2, 1, "", "tolist"], [34, 2, 1, "", "tostring"], [34, 2, 1, "", "trace"], [34, 2, 1, "", "transpose"], [34, 2, 1, "", "var"], [34, 2, 1, "", "view"]], "arkouda.numpy.dtypes.uint16": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.uint32": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.uint64": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.uint8": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.finfo": [[35, 4, 1, "", "bits"], [35, 4, 1, "", "dtype"], [35, 4, 1, "", "eps"], [35, 4, 1, "", "epsneg"], [35, 4, 1, "", "iexp"], [35, 4, 1, "", "machep"], [35, 4, 1, "", "max"], [35, 4, 1, "", "maxexp"], [35, 4, 1, "", "min"], [35, 4, 1, "", "minexp"], [35, 4, 1, "", "negep"], [35, 4, 1, "", "nexp"], [35, 4, 1, "", "nmant"], [35, 4, 1, "", "precision"], [35, 4, 1, "", "resolution"], [35, 6, 1, "id0", "smallest_normal"], [35, 4, 1, "", "smallest_subnormal"], [35, 6, 1, "id11", "tiny"]], "arkouda.numpy.float16": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.float32": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.float64": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "fromhex"], [35, 2, 1, "", "hex"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.float_": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "fromhex"], [35, 2, 1, "", "hex"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.format_parser": [[35, 4, 1, "", "dtype"]], "arkouda.numpy.half": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.iinfo": [[35, 4, 1, "", "bits"], [35, 4, 1, "", "dtype"], [35, 6, 1, "id12", "max"], [35, 6, 1, "id13", "min"]], "arkouda.numpy.int16": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.int32": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.int64": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.int8": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.intTypes": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.int_": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.intc": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.integer": [[35, 2, 1, "", "denominator"], [35, 2, 1, "", "is_integer"], [35, 2, 1, "", "numerator"]], "arkouda.numpy.intp": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.longdouble": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.longfloat": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.longlong": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.random": [[36, 1, 1, "", "Generator"], [36, 5, 1, "", "default_rng"], [36, 5, 1, "", "randint"], [36, 5, 1, "", "standard_normal"], [36, 5, 1, "", "uniform"]], "arkouda.numpy.random.Generator": [[36, 2, 1, "", "choice"], [36, 2, 1, "", "exponential"], [36, 2, 1, "", "integers"], [36, 2, 1, "", "logistic"], [36, 2, 1, "", "lognormal"], [36, 2, 1, "", "normal"], [36, 2, 1, "", "permutation"], [36, 2, 1, "", "poisson"], [36, 2, 1, "", "random"], [36, 2, 1, "", "shuffle"], [36, 2, 1, "", "standard_exponential"], [36, 2, 1, "", "standard_normal"], [36, 2, 1, "", "uniform"]], "arkouda.numpy.sctypeDict": [[35, 2, 1, "", "clear"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "fromkeys"], [35, 2, 1, "", "get"], [35, 2, 1, "", "items"], [35, 2, 1, "", "keys"], [35, 2, 1, "", "pop"], [35, 2, 1, "", "popitem"], [35, 2, 1, "", "setdefault"], [35, 2, 1, "", "update"], [35, 2, 1, "", "values"]], "arkouda.numpy.sctypes": [[35, 2, 1, "", "clear"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "fromkeys"], [35, 2, 1, "", "get"], [35, 2, 1, "", "items"], [35, 2, 1, "", "keys"], [35, 2, 1, "", "pop"], [35, 2, 1, "", "popitem"], [35, 2, 1, "", "setdefault"], [35, 2, 1, "", "update"], [35, 2, 1, "", "values"]], "arkouda.numpy.short": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.single": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.str_": [[35, 2, 1, "", "T"], [35, 2, 1, "", "all"], [35, 2, 1, "", "any"], [35, 2, 1, "", "argmax"], [35, 2, 1, "", "argmin"], [35, 2, 1, "", "argsort"], [35, 2, 1, "", "astype"], [35, 2, 1, "", "base"], [35, 2, 1, "", "byteswap"], [35, 2, 1, "", "choose"], [35, 2, 1, "", "clip"], [35, 2, 1, "", "compress"], [35, 2, 1, "", "conj"], [35, 2, 1, "", "conjugate"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "cumprod"], [35, 2, 1, "", "cumsum"], [35, 2, 1, "", "data"], [35, 2, 1, "", "diagonal"], [35, 2, 1, "", "dtype"], [35, 2, 1, "", "dump"], [35, 2, 1, "", "dumps"], [35, 2, 1, "", "fill"], [35, 2, 1, "", "flags"], [35, 2, 1, "", "flat"], [35, 2, 1, "", "flatten"], [35, 2, 1, "", "getfield"], [35, 2, 1, "", "imag"], [35, 2, 1, "", "item"], [35, 2, 1, "", "itemset"], [35, 2, 1, "", "itemsize"], [35, 2, 1, "", "max"], [35, 2, 1, "", "mean"], [35, 2, 1, "", "min"], [35, 2, 1, "", "nbytes"], [35, 2, 1, "", "ndim"], [35, 2, 1, "", "newbyteorder"], [35, 2, 1, "", "nonzero"], [35, 2, 1, "", "prod"], [35, 2, 1, "", "ptp"], [35, 2, 1, "", "put"], [35, 2, 1, "", "ravel"], [35, 2, 1, "", "real"], [35, 2, 1, "", "repeat"], [35, 2, 1, "", "reshape"], [35, 2, 1, "", "resize"], [35, 2, 1, "", "round"], [35, 2, 1, "", "searchsorted"], [35, 2, 1, "", "setfield"], [35, 2, 1, "", "setflags"], [35, 2, 1, "", "shape"], [35, 2, 1, "", "size"], [35, 2, 1, "", "sort"], [35, 2, 1, "", "squeeze"], [35, 2, 1, "", "std"], [35, 2, 1, "", "strides"], [35, 2, 1, "", "sum"], [35, 2, 1, "", "swapaxes"], [35, 2, 1, "", "take"], [35, 2, 1, "", "tobytes"], [35, 2, 1, "", "tofile"], [35, 2, 1, "", "tolist"], [35, 2, 1, "", "tostring"], [35, 2, 1, "", "trace"], [35, 2, 1, "", "transpose"], [35, 2, 1, "", "var"], [35, 2, 1, "", "view"]], "arkouda.numpy.ubyte": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint16": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint32": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint64": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint8": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uintc": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uintp": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.ulonglong": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.ushort": [[35, 2, 1, "", "bit_count"]], "arkouda.pdarray": [[24, 4, 1, "id1212", "BinOps"], [24, 4, 1, "id1213", "OpEqOps"], [92, 2, 1, "", "all"], [92, 2, 1, "", "any"], [92, 2, 1, "", "argmax"], [92, 2, 1, "", "argmaxk"], [92, 2, 1, "", "argmin"], [92, 2, 1, "", "argmink"], [24, 2, 1, "id1220", "astype"], [24, 2, 1, "id1221", "attach"], [24, 2, 1, "id1222", "bigint_to_uint_arrays"], [24, 2, 1, "id1223", "clz"], [24, 2, 1, "id1224", "corr"], [24, 2, 1, "id1225", "cov"], [24, 2, 1, "id1226", "ctz"], [94, 4, 1, "", "dtype"], [24, 2, 1, "id1228", "equals"], [24, 2, 1, "id1229", "fill"], [24, 2, 1, "id1230", "flatten"], [24, 2, 1, "id1231", "format_other"], [24, 6, 1, "id1232", "inferred_type"], [24, 2, 1, "id1233", "info"], [24, 2, 1, "id1234", "is_registered"], [92, 2, 1, "", "is_sorted"], [94, 4, 1, "", "itemsize"], [92, 2, 1, "", "max"], [24, 6, 1, "id1238", "max_bits"], [92, 2, 1, "", "maxk"], [92, 2, 1, "", "mean"], [92, 2, 1, "", "min"], [92, 2, 1, "", "mink"], [94, 4, 1, "", "name"], [24, 6, 1, "id1244", "nbytes"], [94, 4, 1, "", "ndim"], [24, 4, 1, "id1246", "objType"], [24, 2, 1, "id1247", "opeq"], [24, 2, 1, "id1248", "parity"], [24, 2, 1, "id1249", "popcount"], [24, 2, 1, "id1250", "pretty_print_info"], [92, 2, 1, "", "prod"], [24, 2, 1, "id1252", "register"], [24, 4, 1, "id1253", "registered_name"], [24, 2, 1, "id1254", "reshape"], [24, 2, 1, "id1255", "rotl"], [24, 2, 1, "id1256", "rotr"], [24, 2, 1, "id1257", "save"], [94, 4, 1, "", "shape"], [94, 4, 1, "", "size"], [24, 2, 1, "id1260", "slice_bits"], [92, 2, 1, "", "std"], [92, 2, 1, "", "sum"], [24, 2, 1, "id1263", "to_csv"], [24, 2, 1, "id1266", "to_cuda"], [24, 2, 1, "id1267", "to_hdf"], [24, 2, 1, "id1268", "to_list"], [94, 5, 1, "", "to_ndarray"], [24, 2, 1, "id1270", "to_parquet"], [24, 2, 1, "id1271", "transfer"], [24, 2, 1, "id1272", "unregister"], [24, 2, 1, "id1273", "update_hdf"], [24, 2, 1, "id1274", "value_counts"], [92, 2, 1, "", "var"]], "arkouda.pdarrayclass": [[37, 7, 1, "", "RegistrationError"], [37, 5, 1, "", "all"], [37, 5, 1, "", "any"], [37, 5, 1, "", "argmax"], [37, 5, 1, "", "argmaxk"], [37, 5, 1, "", "argmin"], [37, 5, 1, "", "argmink"], [37, 5, 1, "", "attach_pdarray"], [37, 5, 1, "", "broadcast_to_shape"], [37, 5, 1, "", "clear"], [37, 5, 1, "", "clz"], [37, 5, 1, "", "corr"], [37, 5, 1, "", "cov"], [37, 5, 1, "", "ctz"], [37, 5, 1, "", "divmod"], [37, 5, 1, "", "dot"], [37, 5, 1, "", "fmod"], [37, 5, 1, "", "is_sorted"], [37, 5, 1, "", "max"], [37, 5, 1, "", "maxk"], [37, 5, 1, "", "mean"], [37, 5, 1, "", "min"], [37, 5, 1, "", "mink"], [37, 5, 1, "", "mod"], [37, 5, 1, "", "parity"], [37, 1, 1, "", "pdarray"], [37, 5, 1, "", "popcount"], [37, 5, 1, "", "power"], [37, 5, 1, "", "prod"], [37, 5, 1, "", "rotl"], [37, 5, 1, "", "rotr"], [37, 5, 1, "", "sqrt"], [37, 5, 1, "", "std"], [37, 5, 1, "", "sum"], [37, 5, 1, "", "unregister_pdarray_by_name"], [37, 5, 1, "", "var"]], "arkouda.pdarrayclass.pdarray": [[37, 4, 1, "", "BinOps"], [37, 4, 1, "", "OpEqOps"], [37, 2, 1, "", "all"], [37, 2, 1, "", "any"], [37, 2, 1, "", "argmax"], [37, 2, 1, "", "argmaxk"], [37, 2, 1, "", "argmin"], [37, 2, 1, "", "argmink"], [37, 2, 1, "", "astype"], [37, 2, 1, "", "attach"], [37, 2, 1, "", "bigint_to_uint_arrays"], [37, 2, 1, "", "clz"], [37, 2, 1, "", "corr"], [37, 2, 1, "", "cov"], [37, 2, 1, "", "ctz"], [37, 4, 1, "id0", "dtype"], [37, 2, 1, "", "equals"], [37, 2, 1, "", "fill"], [37, 2, 1, "", "flatten"], [37, 2, 1, "", "format_other"], [37, 6, 1, "", "inferred_type"], [37, 2, 1, "", "info"], [37, 2, 1, "", "is_registered"], [37, 2, 1, "", "is_sorted"], [37, 4, 1, "id1", "itemsize"], [37, 2, 1, "", "max"], [37, 6, 1, "", "max_bits"], [37, 2, 1, "", "maxk"], [37, 2, 1, "", "mean"], [37, 2, 1, "", "min"], [37, 2, 1, "", "mink"], [37, 4, 1, "id2", "name"], [37, 6, 1, "", "nbytes"], [37, 4, 1, "id3", "ndim"], [37, 4, 1, "", "objType"], [37, 2, 1, "", "opeq"], [37, 2, 1, "", "parity"], [37, 2, 1, "", "popcount"], [37, 2, 1, "", "pretty_print_info"], [37, 2, 1, "", "prod"], [37, 2, 1, "", "register"], [37, 4, 1, "", "registered_name"], [37, 2, 1, "", "reshape"], [37, 2, 1, "", "rotl"], [37, 2, 1, "", "rotr"], [37, 2, 1, "", "save"], [37, 6, 1, "id4", "shape"], [37, 4, 1, "id5", "size"], [37, 2, 1, "", "slice_bits"], [37, 2, 1, "", "std"], [37, 2, 1, "", "sum"], [37, 2, 1, "", "to_csv"], [37, 2, 1, "", "to_cuda"], [37, 2, 1, "", "to_hdf"], [37, 2, 1, "", "to_list"], [37, 2, 1, "", "to_ndarray"], [37, 2, 1, "", "to_parquet"], [37, 2, 1, "", "transfer"], [37, 2, 1, "", "unregister"], [37, 2, 1, "", "update_hdf"], [37, 2, 1, "", "value_counts"], [37, 2, 1, "", "var"]], "arkouda.pdarraycreation": [[38, 5, 1, "", "arange"], [38, 5, 1, "", "array"], [38, 5, 1, "", "bigint_from_uint_arrays"], [38, 5, 1, "", "from_series"], [38, 5, 1, "", "full"], [38, 5, 1, "", "full_like"], [38, 5, 1, "", "linspace"], [38, 5, 1, "", "ones"], [38, 5, 1, "", "ones_like"], [38, 5, 1, "", "promote_to_common_dtype"], [38, 5, 1, "", "randint"], [38, 5, 1, "", "random_strings_lognormal"], [38, 5, 1, "", "random_strings_uniform"], [38, 5, 1, "", "scalar_array"], [38, 5, 1, "", "standard_normal"], [38, 5, 1, "", "uniform"], [38, 5, 1, "", "zeros"], [38, 5, 1, "", "zeros_like"]], "arkouda.pdarraymanipulation": [[39, 5, 1, "", "delete"], [39, 5, 1, "", "vstack"]], "arkouda.pdarraysetops": [[40, 5, 1, "", "concatenate"], [40, 5, 1, "", "in1d"], [40, 5, 1, "", "indexof1d"], [40, 5, 1, "", "intersect1d"], [40, 5, 1, "", "setdiff1d"], [40, 5, 1, "", "setxor1d"], [40, 5, 1, "", "union1d"]], "arkouda.plotting": [[41, 5, 1, "", "hist_all"], [41, 5, 1, "", "plot_dist"]], "arkouda.random": [[95, 1, 1, "", "Generator"], [42, 5, 1, "", "default_rng"], [42, 5, 1, "", "randint"], [42, 5, 1, "", "standard_normal"], [42, 5, 1, "", "uniform"]], "arkouda.random.Generator": [[95, 5, 1, "", "choice"], [95, 5, 1, "", "exponential"], [95, 5, 1, "", "integers"], [95, 5, 1, "", "logistic"], [95, 5, 1, "", "lognormal"], [95, 5, 1, "", "normal"], [95, 5, 1, "", "permutation"], [95, 5, 1, "", "poisson"], [95, 5, 1, "", "random"], [95, 5, 1, "", "shuffle"], [95, 5, 1, "", "standard_exponential"], [95, 5, 1, "", "standard_normal"], [95, 5, 1, "", "uniform"]], "arkouda.row": [[43, 1, 1, "", "Row"]], "arkouda.scipy": [[44, 1, 1, "", "Power_divergenceResult"], [44, 5, 1, "", "chisquare"], [44, 5, 1, "", "power_divergence"], [45, 0, 0, "-", "special"], [46, 0, 0, "-", "stats"]], "arkouda.scipy.Power_divergenceResult": [[44, 4, 1, "", "pvalue"], [44, 4, 1, "", "statistic"]], "arkouda.scipy.special": [[45, 5, 1, "", "xlogy"]], "arkouda.scipy.stats": [[46, 1, 1, "", "chi2"]], "arkouda.scipy.stats.chi2": [[46, 2, 1, "", "a"], [46, 2, 1, "", "b"], [46, 2, 1, "", "badvalue"], [46, 2, 1, "", "generic_moment"], [46, 2, 1, "", "moment_type"], [46, 2, 1, "", "name"], [46, 2, 1, "", "numargs"], [46, 2, 1, "", "shapes"], [46, 2, 1, "", "vecentropy"], [46, 2, 1, "", "xtol"]], "arkouda.sctypeDict": [[24, 2, 1, "", "clear"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "fromkeys"], [24, 2, 1, "", "get"], [24, 2, 1, "", "items"], [24, 2, 1, "", "keys"], [24, 2, 1, "", "pop"], [24, 2, 1, "", "popitem"], [24, 2, 1, "", "setdefault"], [24, 2, 1, "", "update"], [24, 2, 1, "", "values"]], "arkouda.sctypes": [[24, 2, 1, "", "clear"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "fromkeys"], [24, 2, 1, "", "get"], [24, 2, 1, "", "items"], [24, 2, 1, "", "keys"], [24, 2, 1, "", "pop"], [24, 2, 1, "", "popitem"], [24, 2, 1, "", "setdefault"], [24, 2, 1, "", "update"], [24, 2, 1, "", "values"]], "arkouda.security": [[47, 5, 1, "", "generate_token"], [47, 5, 1, "", "generate_username_token_json"], [47, 5, 1, "", "get_arkouda_client_directory"], [47, 5, 1, "", "get_home_directory"], [47, 5, 1, "", "get_username"], [47, 3, 1, "", "username_tokenizer"]], "arkouda.segarray": [[48, 3, 1, "", "LEN_SUFFIX"], [48, 3, 1, "", "SEG_SUFFIX"], [48, 1, 1, "", "SegArray"], [48, 3, 1, "", "VAL_SUFFIX"], [48, 5, 1, "", "segarray"]], "arkouda.segarray.SegArray": [[48, 2, 1, "", "AND"], [48, 2, 1, "", "OR"], [48, 2, 1, "", "XOR"], [48, 2, 1, "", "aggregate"], [48, 2, 1, "", "all"], [48, 2, 1, "", "any"], [48, 2, 1, "", "append"], [48, 2, 1, "", "append_single"], [48, 2, 1, "", "argmax"], [48, 2, 1, "", "argmin"], [48, 2, 1, "", "attach"], [48, 2, 1, "", "concat"], [48, 2, 1, "", "copy"], [48, 4, 1, "", "dtype"], [48, 2, 1, "", "filter"], [48, 2, 1, "", "from_multi_array"], [48, 2, 1, "", "from_parts"], [48, 2, 1, "", "from_return_msg"], [48, 2, 1, "", "get_jth"], [48, 2, 1, "", "get_length_n"], [48, 2, 1, "", "get_ngrams"], [48, 2, 1, "", "get_prefixes"], [48, 2, 1, "", "get_suffixes"], [48, 6, 1, "", "grouping"], [48, 2, 1, "", "hash"], [48, 2, 1, "", "intersect"], [48, 2, 1, "", "is_registered"], [48, 2, 1, "", "load"], [48, 4, 1, "", "logger"], [48, 2, 1, "", "max"], [48, 2, 1, "", "mean"], [48, 2, 1, "", "min"], [48, 6, 1, "", "nbytes"], [48, 6, 1, "", "non_empty"], [48, 2, 1, "", "nunique"], [48, 4, 1, "", "objType"], [48, 2, 1, "", "prepend_single"], [48, 2, 1, "", "prod"], [48, 2, 1, "", "read_hdf"], [48, 2, 1, "", "register"], [48, 4, 1, "", "registered_name"], [48, 2, 1, "", "remove_repeats"], [48, 2, 1, "", "save"], [48, 4, 1, "", "segments"], [48, 2, 1, "", "set_jth"], [48, 2, 1, "", "setdiff"], [48, 2, 1, "", "setxor"], [48, 4, 1, "", "size"], [48, 2, 1, "", "sum"], [48, 2, 1, "", "to_hdf"], [48, 2, 1, "", "to_list"], [48, 2, 1, "", "to_ndarray"], [48, 2, 1, "", "to_parquet"], [48, 2, 1, "", "transfer"], [48, 2, 1, "", "union"], [48, 2, 1, "", "unique"], [48, 2, 1, "", "unregister"], [48, 2, 1, "", "unregister_segarray_by_name"], [48, 2, 1, "", "update_hdf"], [48, 4, 1, "", "valsize"], [48, 4, 1, "", "values"]], "arkouda.series": [[49, 1, 1, "", "Series"]], "arkouda.series.Series": [[49, 2, 1, "", "add"], [49, 2, 1, "", "argmax"], [49, 2, 1, "", "argmin"], [49, 6, 1, "", "at"], [49, 2, 1, "", "attach"], [49, 2, 1, "", "concat"], [49, 2, 1, "", "diff"], [49, 2, 1, "", "dt"], [49, 6, 1, "", "dtype"], [49, 2, 1, "", "fillna"], [49, 2, 1, "", "from_return_msg"], [49, 2, 1, "", "has_repeat_labels"], [49, 2, 1, "", "hasnans"], [49, 2, 1, "", "head"], [49, 6, 1, "", "iat"], [49, 6, 1, "", "iloc"], [49, 2, 1, "", "is_registered"], [49, 2, 1, "", "isin"], [49, 2, 1, "", "isna"], [49, 2, 1, "", "isnull"], [49, 6, 1, "", "loc"], [49, 2, 1, "", "locate"], [49, 2, 1, "", "map"], [49, 2, 1, "", "max"], [49, 2, 1, "", "mean"], [49, 2, 1, "", "memory_usage"], [49, 2, 1, "", "min"], [49, 6, 1, "", "ndim"], [49, 2, 1, "", "notna"], [49, 2, 1, "", "notnull"], [49, 2, 1, "", "objType"], [49, 2, 1, "", "pdconcat"], [49, 2, 1, "", "prod"], [49, 2, 1, "", "register"], [49, 6, 1, "", "shape"], [49, 2, 1, "", "sort_index"], [49, 2, 1, "", "sort_values"], [49, 2, 1, "", "std"], [49, 2, 1, "", "str_acc"], [49, 2, 1, "", "sum"], [49, 2, 1, "", "tail"], [49, 2, 1, "", "to_dataframe"], [49, 2, 1, "", "to_list"], [49, 2, 1, "", "to_markdown"], [49, 2, 1, "", "to_ndarray"], [49, 2, 1, "", "to_pandas"], [49, 2, 1, "", "topn"], [49, 2, 1, "", "unregister"], [49, 2, 1, "", "validate_key"], [49, 2, 1, "", "validate_val"], [49, 2, 1, "", "value_counts"], [49, 2, 1, "", "var"]], "arkouda.short": [[24, 2, 1, "", "bit_count"]], "arkouda.single": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.sorting": [[50, 5, 1, "", "argsort"], [50, 5, 1, "", "coargsort"], [50, 5, 1, "", "sort"]], "arkouda.sparray": [[24, 4, 1, "id1280", "dtype"], [24, 2, 1, "", "fill_vals"], [24, 4, 1, "id1281", "itemsize"], [24, 4, 1, "id1282", "layout"], [24, 4, 1, "id1283", "name"], [24, 4, 1, "id1284", "ndim"], [24, 4, 1, "", "nnz"], [24, 4, 1, "id1285", "shape"], [24, 4, 1, "id1286", "size"], [24, 2, 1, "", "to_pdarray"]], "arkouda.sparrayclass": [[51, 5, 1, "", "create_sparray"], [51, 1, 1, "", "sparray"]], "arkouda.sparrayclass.sparray": [[51, 4, 1, "id0", "dtype"], [51, 2, 1, "", "fill_vals"], [51, 4, 1, "id1", "itemsize"], [51, 4, 1, "id2", "layout"], [51, 4, 1, "id3", "name"], [51, 4, 1, "id4", "ndim"], [51, 4, 1, "", "nnz"], [51, 4, 1, "id5", "shape"], [51, 4, 1, "id6", "size"], [51, 2, 1, "", "to_pdarray"]], "arkouda.sparsematrix": [[52, 5, 1, "", "random_sparse_matrix"], [52, 5, 1, "", "sparse_matrix_matrix_mult"]], "arkouda.str_": [[24, 2, 1, "id1288", "T"], [24, 2, 1, "id1289", "all"], [24, 2, 1, "id1290", "any"], [24, 2, 1, "id1291", "argmax"], [24, 2, 1, "id1292", "argmin"], [24, 2, 1, "id1293", "argsort"], [24, 2, 1, "id1294", "astype"], [24, 2, 1, "id1295", "base"], [24, 2, 1, "id1296", "byteswap"], [24, 2, 1, "id1297", "choose"], [24, 2, 1, "id1298", "clip"], [24, 2, 1, "id1299", "compress"], [24, 2, 1, "id1300", "conj"], [24, 2, 1, "id1301", "conjugate"], [24, 2, 1, "id1302", "copy"], [24, 2, 1, "id1303", "cumprod"], [24, 2, 1, "id1304", "cumsum"], [24, 2, 1, "id1305", "data"], [24, 2, 1, "id1306", "diagonal"], [24, 2, 1, "id1307", "dtype"], [24, 2, 1, "id1308", "dump"], [24, 2, 1, "id1309", "dumps"], [24, 2, 1, "id1310", "fill"], [24, 2, 1, "id1311", "flags"], [24, 2, 1, "id1312", "flat"], [24, 2, 1, "id1313", "flatten"], [24, 2, 1, "id1314", "getfield"], [24, 2, 1, "id1315", "imag"], [24, 2, 1, "id1316", "item"], [24, 2, 1, "id1317", "itemset"], [24, 2, 1, "id1318", "itemsize"], [24, 2, 1, "id1319", "max"], [24, 2, 1, "id1320", "mean"], [24, 2, 1, "id1321", "min"], [24, 2, 1, "id1322", "nbytes"], [24, 2, 1, "id1323", "ndim"], [24, 2, 1, "id1324", "newbyteorder"], [24, 2, 1, "id1325", "nonzero"], [24, 2, 1, "id1326", "prod"], [24, 2, 1, "id1327", "ptp"], [24, 2, 1, "id1328", "put"], [24, 2, 1, "id1329", "ravel"], [24, 2, 1, "id1330", "real"], [24, 2, 1, "id1331", "repeat"], [24, 2, 1, "id1332", "reshape"], [24, 2, 1, "id1333", "resize"], [24, 2, 1, "id1334", "round"], [24, 2, 1, "id1335", "searchsorted"], [24, 2, 1, "id1336", "setfield"], [24, 2, 1, "id1337", "setflags"], [24, 2, 1, "id1338", "shape"], [24, 2, 1, "id1339", "size"], [24, 2, 1, "id1340", "sort"], [24, 2, 1, "id1341", "squeeze"], [24, 2, 1, "id1342", "std"], [24, 2, 1, "id1343", "strides"], [24, 2, 1, "id1344", "sum"], [24, 2, 1, "id1345", "swapaxes"], [24, 2, 1, "id1346", "take"], [24, 2, 1, "id1347", "tobytes"], [24, 2, 1, "id1348", "tofile"], [24, 2, 1, "id1349", "tolist"], [24, 2, 1, "id1350", "tostring"], [24, 2, 1, "id1351", "trace"], [24, 2, 1, "id1352", "transpose"], [24, 2, 1, "id1353", "var"], [24, 2, 1, "id1354", "view"]], "arkouda.strings": [[53, 1, 1, "", "Strings"]], "arkouda.strings.Strings": [[53, 4, 1, "", "BinOps"], [53, 2, 1, "", "astype"], [53, 2, 1, "", "attach"], [53, 2, 1, "", "cached_regex_patterns"], [53, 2, 1, "", "capitalize"], [53, 2, 1, "", "contains"], [53, 2, 1, "", "decode"], [53, 4, 1, "id0", "dtype"], [53, 2, 1, "", "encode"], [53, 2, 1, "", "endswith"], [53, 4, 1, "id1", "entry"], [53, 2, 1, "", "equals"], [53, 2, 1, "", "find_locations"], [53, 2, 1, "", "findall"], [53, 2, 1, "", "flatten"], [53, 2, 1, "", "from_parts"], [53, 2, 1, "", "from_return_msg"], [53, 2, 1, "", "fullmatch"], [53, 2, 1, "", "get_bytes"], [53, 2, 1, "", "get_lengths"], [53, 2, 1, "", "get_offsets"], [53, 2, 1, "", "get_prefixes"], [53, 2, 1, "", "get_suffixes"], [53, 2, 1, "", "group"], [53, 2, 1, "", "hash"], [53, 6, 1, "", "inferred_type"], [53, 2, 1, "", "info"], [53, 2, 1, "", "is_registered"], [53, 2, 1, "", "isalnum"], [53, 2, 1, "", "isalpha"], [53, 2, 1, "", "isdecimal"], [53, 2, 1, "", "isdigit"], [53, 2, 1, "", "isempty"], [53, 2, 1, "", "islower"], [53, 2, 1, "", "isspace"], [53, 2, 1, "", "istitle"], [53, 2, 1, "", "isupper"], [53, 4, 1, "id2", "logger"], [53, 2, 1, "", "lower"], [53, 2, 1, "", "lstick"], [53, 2, 1, "", "match"], [53, 4, 1, "", "nbytes"], [53, 4, 1, "", "ndim"], [53, 4, 1, "", "objType"], [53, 2, 1, "", "peel"], [53, 2, 1, "", "pretty_print_info"], [53, 2, 1, "", "purge_cached_regex_patterns"], [53, 2, 1, "", "regex_split"], [53, 2, 1, "", "register"], [53, 4, 1, "", "registered_name"], [53, 2, 1, "", "rpeel"], [53, 2, 1, "", "save"], [53, 2, 1, "", "search"], [53, 4, 1, "", "shape"], [53, 4, 1, "", "size"], [53, 2, 1, "", "split"], [53, 2, 1, "", "startswith"], [53, 2, 1, "", "stick"], [53, 2, 1, "", "strip"], [53, 2, 1, "", "sub"], [53, 2, 1, "", "subn"], [53, 2, 1, "", "title"], [53, 2, 1, "", "to_csv"], [53, 2, 1, "", "to_hdf"], [53, 2, 1, "", "to_list"], [53, 2, 1, "", "to_ndarray"], [53, 2, 1, "", "to_parquet"], [53, 2, 1, "", "transfer"], [53, 2, 1, "", "unregister"], [53, 2, 1, "", "unregister_strings_by_name"], [53, 2, 1, "", "update_hdf"], [53, 2, 1, "", "upper"]], "arkouda.testing": [[54, 5, 1, "", "assert_almost_equal"], [54, 5, 1, "", "assert_almost_equivalent"], [54, 5, 1, "", "assert_arkouda_array_equal"], [54, 5, 1, "", "assert_arkouda_array_equivalent"], [54, 5, 1, "", "assert_arkouda_pdarray_equal"], [54, 5, 1, "", "assert_arkouda_segarray_equal"], [54, 5, 1, "", "assert_arkouda_strings_equal"], [54, 5, 1, "", "assert_attr_equal"], [54, 5, 1, "", "assert_categorical_equal"], [54, 5, 1, "", "assert_class_equal"], [54, 5, 1, "", "assert_contains_all"], [54, 5, 1, "", "assert_copy"], [54, 5, 1, "", "assert_dict_equal"], [54, 5, 1, "", "assert_equal"], [54, 5, 1, "", "assert_equivalent"], [54, 5, 1, "", "assert_frame_equal"], [54, 5, 1, "", "assert_frame_equivalent"], [54, 5, 1, "", "assert_index_equal"], [54, 5, 1, "", "assert_index_equivalent"], [54, 5, 1, "", "assert_is_sorted"], [54, 5, 1, "", "assert_series_equal"], [54, 5, 1, "", "assert_series_equivalent"]], "arkouda.timeclass": [[55, 1, 1, "", "Datetime"], [55, 1, 1, "", "Timedelta"], [55, 5, 1, "", "date_range"], [55, 5, 1, "", "timedelta_range"]], "arkouda.timeclass.Datetime": [[55, 6, 1, "", "date"], [55, 6, 1, "", "day"], [55, 6, 1, "", "day_of_week"], [55, 6, 1, "", "day_of_year"], [55, 6, 1, "", "dayofweek"], [55, 6, 1, "", "dayofyear"], [55, 6, 1, "", "hour"], [55, 6, 1, "", "is_leap_year"], [55, 2, 1, "", "is_registered"], [55, 2, 1, "", "isocalendar"], [55, 6, 1, "", "microsecond"], [55, 6, 1, "", "millisecond"], [55, 6, 1, "", "minute"], [55, 6, 1, "", "month"], [55, 6, 1, "", "nanosecond"], [55, 2, 1, "", "register"], [55, 6, 1, "", "second"], [55, 4, 1, "", "special_objType"], [55, 2, 1, "", "sum"], [55, 4, 1, "", "supported_opeq"], [55, 4, 1, "", "supported_with_datetime"], [55, 4, 1, "", "supported_with_pdarray"], [55, 4, 1, "", "supported_with_r_datetime"], [55, 4, 1, "", "supported_with_r_pdarray"], [55, 4, 1, "", "supported_with_r_timedelta"], [55, 4, 1, "", "supported_with_timedelta"], [55, 2, 1, "", "to_pandas"], [55, 2, 1, "", "unregister"], [55, 6, 1, "", "week"], [55, 6, 1, "", "weekday"], [55, 6, 1, "", "weekofyear"], [55, 6, 1, "", "year"]], "arkouda.timeclass.Timedelta": [[55, 2, 1, "", "abs"], [55, 6, 1, "", "components"], [55, 6, 1, "", "days"], [55, 2, 1, "", "is_registered"], [55, 6, 1, "", "microseconds"], [55, 6, 1, "", "nanoseconds"], [55, 2, 1, "", "register"], [55, 6, 1, "", "seconds"], [55, 4, 1, "", "special_objType"], [55, 2, 1, "", "std"], [55, 2, 1, "", "sum"], [55, 4, 1, "", "supported_opeq"], [55, 4, 1, "", "supported_with_datetime"], [55, 4, 1, "", "supported_with_pdarray"], [55, 4, 1, "", "supported_with_r_datetime"], [55, 4, 1, "", "supported_with_r_pdarray"], [55, 4, 1, "", "supported_with_r_timedelta"], [55, 4, 1, "", "supported_with_timedelta"], [55, 2, 1, "", "to_pandas"], [55, 2, 1, "", "total_seconds"], [55, 2, 1, "", "unregister"]], "arkouda.ubyte": [[24, 2, 1, "", "bit_count"]], "arkouda.uint": [[24, 2, 1, "", "bit_count"]], "arkouda.uint16": [[24, 2, 1, "", "bit_count"]], "arkouda.uint32": [[24, 2, 1, "", "bit_count"]], "arkouda.uint64": [[24, 2, 1, "", "bit_count"]], "arkouda.uint8": [[24, 2, 1, "", "bit_count"]], "arkouda.uintc": [[24, 2, 1, "", "bit_count"]], "arkouda.uintp": [[24, 2, 1, "", "bit_count"]], "arkouda.ulonglong": [[24, 2, 1, "", "bit_count"]], "arkouda.ushort": [[24, 2, 1, "", "bit_count"]], "arkouda.util": [[56, 5, 1, "", "attach"], [56, 5, 1, "", "attach_all"], [56, 5, 1, "", "broadcast_dims"], [56, 5, 1, "", "concatenate"], [56, 5, 1, "", "convert_bytes"], [56, 5, 1, "", "convert_if_categorical"], [56, 5, 1, "", "enrich_inplace"], [56, 5, 1, "", "expand"], [56, 5, 1, "", "generic_concat"], [56, 5, 1, "", "get_callback"], [56, 5, 1, "", "identity"], [56, 5, 1, "", "invert_permutation"], [56, 5, 1, "", "is_float"], [56, 5, 1, "", "is_int"], [56, 5, 1, "", "is_numeric"], [56, 5, 1, "", "is_registered"], [56, 5, 1, "", "map"], [56, 5, 1, "", "most_common"], [56, 5, 1, "", "register"], [56, 5, 1, "", "register_all"], [56, 5, 1, "", "report_mem"], [56, 5, 1, "", "sparse_sum_help"], [56, 5, 1, "", "unregister"], [56, 5, 1, "", "unregister_all"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "data", "Python data"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "function", "Python function"], "6": ["py", "property", "Python property"], "7": ["py", "exception", "Python exception"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:data", "4": "py:attribute", "5": "py:function", "6": "py:property", "7": "py:exception"}, "terms": {"": [0, 1, 2, 3, 4, 7, 8, 11, 14, 15, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 34, 35, 36, 37, 42, 46, 47, 48, 49, 51, 53, 54, 55, 56, 58, 61, 62, 66, 75, 76, 77, 80, 81, 82, 84, 87, 88, 90, 91, 92, 94, 95, 96, 97, 99, 100], "0": [0, 3, 4, 5, 8, 11, 15, 17, 18, 20, 21, 22, 24, 25, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 42, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 58, 59, 60, 66, 67, 68, 73, 76, 77, 79, 80, 82, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "00": [20, 24, 35, 59], "00000000000000000": [20, 22, 24, 25, 35, 45, 56, 90, 91], "00000000000003": [22, 24, 91], "00012": [24, 35], "00018361238254747651": 59, "0001_0d4865d7c9453adc6af6409568da326845c358b9_20230406_165330": 59, "0002": 59, "0002090000002681336": 59, "0009575499998391024": 59, "001": 46, "0011": [24, 35], "001326192548940973": 59, "0014_31de39be8b19c76d073a8999def6673a305c250d_20230405_145759_uncommit": 59, "0015_31de39be8b19c76d073a8999def6673a305c250d_20230405_145947_uncommit": 59, "0024": [24, 35], "00383609999971668": 59, "0039507749997937935": 59, "0040258999997604406": 59, "004057779999857303": 59, "004066600000442122": 59, "004131924999910552": 59, "004159775000061927": 59, "004246700000294368": 59, "0043372999998609885": 59, "0048064200000226265": 59, "005089474999749655": 59, "007168699999965611": 59, "01": [24, 35, 38, 46, 59, 62, 64], "013": 92, "0197": 59, "01t00": [24, 35], "02": 59, "020288899999286514": 59, "021728052940979934": [36, 42, 95], "024032100000113132": 59, "03": 59, "030785499755523249": [36, 42, 95], "03960235520756414": [24, 44], "04": [59, 80], "04380595350226197": [24, 44], "0441791878997098": [24, 36, 38, 42], "0472855509390593": [24, 35, 87], "04t12": 59, "04t16": 59, "05": [24, 54], "05309592737584": [24, 35, 87], "0532529435624589": [36, 42, 95], "0550596900172": 59, "055256829926011691": [36, 42, 95], "0598322696795694": [36, 42, 95], "05t15": 59, "06": 59, "0625": [20, 24], "07": 59, "07734942223993": 92, "08": [24, 54], "083130710959903542": [24, 36, 38, 42, 89], "08505865366367038": [36, 42, 95], "085536923187668": [24, 35, 87], "0889": 59, "09": [59, 76], "0954451150103321": [22, 24, 91], "097392": 59, "0b10": [24, 37], "0b100": [21, 24, 34, 35, 46], "0b101111111111111111111111111111111111111111111111111111111111111111": [24, 37], "0d": [24, 35], "0x1": [21, 24, 34, 35], "0x1p": [21, 24, 34, 35], "0x7f2cf23e10c0": [20, 24, 90], "0x91d4430": [24, 35], "1": [0, 1, 3, 5, 7, 10, 11, 14, 16, 17, 18, 20, 21, 22, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 42, 44, 45, 46, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 62, 63, 66, 67, 68, 71, 73, 76, 77, 78, 79, 80, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "10": [3, 7, 17, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 40, 41, 42, 44, 46, 48, 49, 50, 53, 56, 58, 59, 66, 77, 79, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97], "100": [20, 24, 35, 37, 41, 46, 49, 56, 59, 66, 87], "1000": [20, 24, 25, 29, 46, 85, 92], "10000": 18, "100000": 66, "100000000": 82, "1000000000000001": [24, 35], "100x40": [4, 8], "101": [24, 35, 53], "1024": [1, 24, 37], "104": [24, 53], "105": [0, 18], "106": [36, 42, 95], "1073741824": [20, 24, 90], "1074": [21, 24, 34, 35], "108": [22, 24, 91], "109302162163285": [24, 44], "11": [3, 20, 21, 24, 34, 35, 40, 48, 56, 59, 64, 66, 67, 87, 90, 92, 93, 96], "110": [24, 53], "110680464442257309696": [3, 24], "110680464442257309708": [3, 24], "1109": [24, 35], "111": [20, 24, 53, 90], "11101": [24, 35], "11111111111111116": [22, 24, 91], "114": [24, 53], "116": [24, 53], "119": [24, 53], "11e": [24, 35], "12": [3, 20, 22, 24, 27, 35, 40, 44, 48, 53, 56, 59, 75, 79, 80, 87, 91, 93, 96], "120": [24, 53], "121": [24, 53], "122": [24, 53], "1234": [17, 20, 24, 27, 37, 48, 53, 62], "1235": [17, 20, 24, 27, 37, 48, 53], "1236": [17, 20, 24, 27, 37, 48, 53], "1237": [17, 20, 24, 27, 37, 48, 53], "127": [21, 24, 34, 35, 60], "128": [17, 21, 24, 34, 35, 48, 53], "12gb": 80, "13": [3, 24, 35, 36, 40, 42, 56, 59, 76, 79, 87, 92, 93, 95], "1319566682702642": [36, 42, 95], "134": [24, 35, 87], "14": [3, 20, 22, 24, 35, 36, 40, 42, 46, 53, 59, 66, 67, 87, 91, 93, 95], "14159": [21, 24, 34, 35], "1415927": [24, 35], "1415927e": [24, 35], "1436": 59, "15": [3, 17, 20, 24, 35, 36, 40, 42, 53, 93, 95], "1514764800000000000": [24, 38], "15461882265": 73, "158": 59, "1598310770203937": [24, 35, 87], "16": [20, 21, 22, 24, 34, 35, 36, 42, 56, 59, 60, 76, 77, 87, 91, 93, 95], "160": [24, 37], "1622479306453748": [24, 35, 87], "16400145561571539": [36, 42, 95], "166020696663385964564": [3, 24], "166020696663385964574": [3, 24], "1665150633720014": [36, 42, 95], "17": [20, 24, 35, 36, 42, 59, 66, 93, 95], "1723810583573375": [24, 36, 38, 42], "18": [20, 22, 24, 36, 37, 42, 59, 87, 91, 93, 95], "18446744073709551616": [24, 37, 38], "18446744073709551617": [24, 37, 38], "18446744073709551618": [24, 37, 38], "18446744073709551619": [24, 37, 38], "18446744073709551620": [24, 37, 38], "1882": 59, "18_446_744_073_709_551_615": [21, 24, 34, 35], "19": [24, 35, 56, 93], "1923875335537315": [36, 42, 95], "196608": 59, "1970": [24, 35], "1980": [24, 35], "1_2___": [24, 31, 53, 100], "1d": [5, 9, 11, 15, 24, 35, 40, 48, 49, 58, 96, 97, 98], "1e": [24, 46, 54], "1string": [24, 53], "2": [0, 3, 7, 17, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 42, 44, 45, 46, 48, 49, 50, 51, 53, 54, 56, 58, 59, 60, 62, 66, 67, 68, 75, 76, 77, 78, 79, 80, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "20": [1, 3, 4, 8, 20, 24, 35, 36, 40, 42, 44, 62, 66, 79, 80, 87, 93, 95], "2000": 59, "2008": [24, 35], "20159494048757": [36, 42, 95], "2018": [24, 38], "2020": 59, "2022": 77, "2023": [59, 76], "2024": [24, 44], "2047": [21, 24, 34, 35], "2048": [24, 37], "208": 59, "2080": 59, "20ghz": 59, "21": [3, 24, 35, 87], "210": 59, "2147483647": [24, 35], "2147483648": [24, 35], "21589865655358": [24, 35, 87], "22": [3, 21, 24, 34, 35, 87], "2200000000": 59, "2207999000": 59, "222": [20, 24, 90], "2250": 59, "22e": [24, 35], "23": [3, 21, 24, 34, 35, 37], "230000071797338e": [24, 35], "2324_pytest_benchmark_doc": 59, "236": 59, "23e": [24, 35], "23e24": [24, 35], "24": [3, 24, 25, 35, 37, 49, 59, 79, 87], "246": 59, "25": [3, 20, 21, 22, 24, 25, 27, 34, 35, 37, 38, 49, 56, 89, 91], "255": [21, 24, 34, 35], "256": [24, 37, 59], "2561": 59, "25x": [24, 35], "26": 59, "263": 59, "264": 59, "267": 59, "27": [20, 24, 37, 59, 66], "28": 56, "281": 59, "290": [20, 24], "298": [20, 24], "2_147_483_647": [21, 24, 34, 35], "2_147_483_648": [21, 24, 34, 35], "2d": [4, 5, 8], "2\u00b3x\u2087": [24, 53], "2\u00b3\u2087": [24, 53], "3": [3, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 41, 42, 44, 45, 48, 49, 50, 53, 54, 56, 58, 59, 66, 67, 68, 76, 77, 79, 82, 83, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 98, 100], "30": [3, 24, 25, 35, 44, 49, 56, 63], "3000": [24, 49], "3000000000000007": [24, 35], "3000488281": [24, 35], "30013431967121934": [24, 36, 38, 42], "3025850929940459": [24, 35, 87], "31": [62, 80], "3141": [24, 35], "317766166719343": [24, 45], "31de39be8b19c76d073a8999def6673a305c250d": 59, "32": [20, 21, 24, 27, 34, 35, 37, 47, 59, 66, 68], "3219280948873626": [24, 35, 87], "324": [21, 24, 34, 35], "32767": [24, 35], "32768": [24, 35], "32_767": [21, 24, 34, 35], "32_768": [21, 24, 34, 35], "33": [24, 35, 87], "3304": 59, "3306": 59, "333": [20, 24, 90], "333333333333333": [22, 24, 91], "33333333333333326": [22, 24, 91], "33333333333333337": [22, 24, 91], "33333333333333348": [22, 24, 91], "333333333333334": [24, 44], "35": 66, "350": 59, "35000": 66, "353429832157099": [24, 36, 38, 42, 89], "36": [21, 24, 34, 35, 46, 92], "3620": 59, "3673425816523577": [36, 42, 95], "36893488147419103233": [3, 24], "37": 66, "3805": 59, "384": [24, 37], "38552048588998722": [36, 42, 95], "3866978126031091": [36, 42, 95], "3890560989306504": [24, 35, 87], "39": [20, 24, 59], "3dnowprefetch": 59, "3q4kc": [24, 38], "3w": [21, 24, 34, 35], "4": [3, 4, 8, 17, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 42, 45, 46, 48, 49, 50, 53, 54, 56, 59, 66, 68, 76, 77, 79, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 98, 100], "40000": [20, 24], "4097": 59, "4110385860243131": [24, 35, 87], "4142135623730951": [24, 37], "41619265571741659": [24, 38], "4177": 59, "42": 93, "4231": 59, "4298": 59, "4328": 59, "44017172817806": 59, "4444": 59, "45": [24, 35], "450": [24, 35, 87], "454368507659211": [24, 35, 87], "457": 18, "459": [20, 24], "46": [24, 35, 49, 87], "4608": [24, 37], "4610935": [24, 35], "4621": 59, "4657359027997265": [24, 45], "47108547995356098": [36, 42, 95], "47383036230759112": [24, 36, 38, 42], "478894913238722": [24, 35, 87], "48": [24, 25, 49], "4869": 59, "4875": 59, "49": [24, 35], "4930614433405491": [24, 45], "494295836924771": [24, 35, 87], "4_294_967_295": [21, 24, 34, 35], "4k": [24, 38], "5": [3, 17, 18, 20, 21, 22, 24, 25, 34, 35, 36, 37, 38, 40, 42, 44, 45, 46, 48, 49, 50, 53, 54, 56, 59, 66, 67, 68, 70, 77, 79, 84, 86, 87, 89, 90, 91, 93, 94, 95, 96, 98, 100], "50": [4, 8, 59, 66], "500": [18, 60, 63], "5000": [20, 24], "512": [24, 37], "52": [21, 24, 34, 35, 66], "5246": 59, "5255": 59, "5275252316519465": [22, 24, 91], "53": [24, 35], "5306": 59, "5392023718621486": [24, 36, 38, 42, 89], "54": [24, 35, 87], "5424399190667666": [36, 42, 95], "55": 46, "5541": 59, "5555": [18, 73, 99], "55555555555555536": [22, 24, 91], "55555555555555558": [22, 24, 91], "5571769623557188": [24, 35, 87], "56": [24, 37, 67], "5622": 59, "5652": 59, "567584107142031": [24, 36, 38, 42], "57": 59, "5728783400481925": [24, 35, 87], "57600036956445599": [24, 38], "58": 59, "5801": 59, "5835189384561099": [24, 45], "5837": 59, "598150033144236": [24, 35, 87], "5____6___7": [24, 53, 100], "5e": [21, 24, 34, 35, 59], "5h": [24, 55], "5oz1": [24, 38], "6": [3, 20, 22, 24, 25, 27, 35, 37, 38, 40, 45, 46, 48, 53, 56, 59, 66, 76, 77, 79, 80, 82, 84, 87, 89, 90, 91, 92, 93, 96, 98, 100], "60": [24, 37], "600000000000001": [24, 35], "6051701859880918": [24, 35, 87], "6094379124341003": [24, 45], "61": [24, 37], "6125": 59, "62": [20, 24, 37, 59], "62511314008006458": [36, 42, 95], "63": [24, 35, 37, 94], "64": [19, 21, 24, 27, 34, 35, 36, 37, 38, 42, 58, 59, 89, 90, 94], "6438561897747253": [24, 35, 87], "6450": 59, "6465": 59, "647": 18, "64bit": 59, "65": [24, 37], "65_535": [21, 24, 34, 35], "6615356693784662": [24, 38], "6666666666666665": [22, 24, 91], "67": [20, 24], "68586185091150265": [24, 36, 38, 42], "6864": 59, "68894208386667544": [24, 36, 38, 42, 89], "7": [3, 20, 21, 22, 24, 25, 34, 35, 36, 37, 38, 40, 42, 45, 48, 49, 50, 56, 66, 76, 77, 79, 84, 86, 87, 89, 90, 91, 93, 95, 96, 98], "70": [24, 35], "7085325853376141": [36, 42, 95], "71": 66, "710615785506533": [24, 35, 87], "7182818284590451": [24, 35, 87], "7208667145173608": [36, 42, 95], "7320508075688772": [24, 37], "7336": 59, "75": [22, 24, 38, 89, 91], "75000": 66, "754": [24, 35], "7544": 59, "7659": 59, "77": [20, 24], "77000": 66, "77777777777777768": [22, 24, 91], "77777777777777779": [22, 24, 91], "7852": 59, "78523998586553": [24, 35, 87], "79": 59, "7912": 59, "7999999999999998": [22, 24, 91], "8": [3, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 40, 42, 44, 45, 48, 50, 53, 54, 59, 60, 61, 66, 67, 76, 77, 79, 80, 84, 86, 87, 89, 90, 91, 93, 94, 95, 96], "80": 66, "8075": 59, "81": [24, 35], "8377304471659395": [24, 45], "8380": 59, "84": 66, "84010843172504": [24, 35, 87], "86": [20, 24], "8601": [24, 35], "87": 59, "875": [24, 49], "8750h": 59, "8797352989638163": [36, 42, 95], "88": 59, "8800": 59, "88281": [20, 24], "896": [24, 37], "9": [3, 17, 20, 22, 24, 27, 35, 37, 38, 40, 48, 50, 53, 56, 59, 66, 76, 77, 79, 84, 86, 87, 89, 90, 91, 92, 93, 96, 100], "90": 59, "9012": 59, "9160772326374946": [24, 36, 38, 42, 89], "9177": 59, "92176432277231968": [24, 36, 38, 42, 89], "921f9f01b866ep": [21, 24, 34, 35], "9223372036854775807": [21, 24, 34, 35], "92233720368547758085": [3, 24], "92233720368547758090": [3, 24], "92233720368547758091": [3, 24], "92233720368547758095": [3, 24], "931": 79, "9314718055994531": [24, 45], "934176000000015": 92, "9362": 18, "94": 59, "9437184": 59, "9442193396379163": 24, "945880905466208": [24, 35, 87], "96": [24, 37], "9602": 18, "9683": 18, "984375": [21, 24, 34, 35], "99": [20, 24, 46, 59, 90], "999": 46, "9991": 59, "99999": 0, "9999999999999982": [22, 24, 91], "999999999999ap": [21, 24, 34, 35], "9_223_372_036_854_775_807": [21, 24, 34, 35], "9_223_372_036_854_775_808": [21, 24, 34, 35], "A": [1, 2, 9, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 34, 35, 36, 37, 38, 39, 41, 42, 46, 47, 48, 49, 51, 52, 53, 56, 62, 66, 72, 82, 84, 87, 88, 90, 92, 93, 94, 95, 96, 97, 98, 100], "AND": [7, 22, 24, 48, 83, 91], "And": [46, 94], "As": [0, 24, 35, 37, 46, 49, 51, 53, 62, 67, 69, 76, 77, 84, 87, 94, 97, 100], "At": [24, 35, 37, 87], "Be": [0, 20, 24, 25, 27, 37, 53, 58], "But": [3, 24], "By": [17, 19, 20, 22, 24, 25, 27, 35, 37, 40, 48, 53, 54, 55, 80, 91, 98, 100], "For": [0, 2, 3, 4, 8, 17, 20, 21, 22, 24, 27, 31, 34, 35, 36, 38, 40, 42, 46, 50, 53, 55, 56, 58, 59, 63, 66, 71, 73, 75, 76, 77, 78, 81, 84, 86, 89, 91, 92, 93, 94, 95, 96, 98, 100], "IN": 66, "If": [0, 1, 3, 5, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 46, 48, 49, 51, 53, 54, 55, 56, 58, 60, 61, 62, 63, 67, 68, 70, 73, 75, 76, 77, 78, 80, 81, 84, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100], "In": [17, 20, 21, 22, 24, 27, 34, 35, 36, 37, 42, 53, 58, 59, 60, 62, 63, 66, 73, 75, 76, 78, 80, 84, 87, 91, 92, 93, 95, 96, 99, 100], "It": [0, 4, 19, 20, 24, 35, 37, 47, 48, 54, 56, 58, 60, 61, 64, 66, 67, 68, 70, 73, 76, 77, 80, 90, 91, 96], "Its": [36, 42, 95], "NO": 59, "NOT": [7, 20, 24, 25, 27, 35, 37, 53, 75, 84, 94], "No": [24, 37, 75, 80], "Not": [7, 24, 27, 35, 49, 55, 59, 90], "ONE": 68, "OR": [7, 22, 24, 48, 62, 83, 91], "Of": [24, 55], "On": [17, 18, 24, 99], "One": [20, 22, 24, 25, 35, 37, 49, 56, 58, 66, 91, 97], "Ones": [24, 38, 89], "Or": [24, 35, 62], "The": [0, 1, 2, 3, 4, 5, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 42, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 62, 66, 67, 68, 69, 73, 75, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "Then": [24, 54], "There": [1, 21, 22, 24, 27, 34, 35, 59, 66, 75, 80, 89, 98], "These": [1, 20, 21, 24, 34, 35, 49, 66, 68, 71, 73, 84], "To": [0, 1, 20, 21, 22, 24, 27, 34, 35, 36, 42, 46, 55, 58, 59, 60, 64, 67, 73, 75, 77, 78, 80, 88, 90, 92, 94, 95, 100], "Will": 59, "With": [22, 24, 35, 58, 78, 91, 93], "_": [3, 22, 24, 31, 35, 53, 91, 100], "__": [24, 31, 53, 100], "__4___5____6___7": [24, 31, 53, 100], "___": [24, 53, 100], "____": [24, 31, 53, 100], "__all__": 58, "__allsymbols__": [24, 26], "__array_function__": 4, "__dict__": 78, "__init__": [2, 24], "__int__": [21, 24, 34, 35, 46], "__name__": [24, 35], "__registeredsymbols__": [24, 26], "__str__": [20, 21, 22, 24, 34, 35, 46, 49], "_abstractbasetim": [24, 55], "_base_unit": [24, 55], "_distn_infrastructur": 46, "_equal": [24, 54], "_equival": [24, 54], "_filter_arkouda_command": 23, "_final": [21, 34], "_genericalia": [21, 24, 34, 35], "_get_grouping_kei": [22, 24, 91], "_length": [24, 48], "_local": [17, 20, 24, 25, 27, 37, 48, 53, 68], "_locale0000": [20, 24], "_numer": [24, 35], "_segment": [24, 48, 68], "_type": [4, 5, 6, 8, 15], "_valu": [24, 48, 68], "_x": [20, 24], "_y": [20, 24], "a1": [24, 29, 35, 87], "a2": [24, 29, 35, 37, 87], "a5": [24, 35], "a_cpi": [24, 37], "a_max": 16, "a_min": 16, "ab": [7, 24, 35, 55, 83, 87], "abc": [21, 24, 25, 34, 35, 67], "abcd": [24, 35], "abil": 96, "abl": [58, 62, 68, 69, 75, 84], "abm": 59, "abocorhfm": [24, 38], "about": [17, 18, 24, 26, 35, 37, 53, 55, 58, 59, 63, 73, 78, 87, 100], "abov": [5, 21, 24, 34, 35, 36, 42, 46, 58, 59, 64, 66, 75, 76, 90, 95, 100], "abs_dt": [24, 29], "absolut": [1, 7, 21, 24, 34, 35, 54, 55, 78, 87], "abspath": [24, 35], "abstract": [23, 24, 35], "acceler": 61, "accept": [24, 35, 49, 55, 59, 97], "access": [1, 2, 18, 24, 27, 35, 47, 49, 53, 58, 66, 71, 75, 77, 83, 84, 95, 99], "access_channel": [18, 99], "access_token": [18, 99], "accessor": [24, 57], "accomod": [19, 24], "accomplish": [78, 84], "accord": [19, 20, 22, 24, 25, 35, 49, 56, 90, 91, 94], "accordingli": [24, 38, 68, 89], "account": 80, "accur": 46, "accuraci": 46, "achiev": [3, 20, 24, 75], "aco": 7, "acosh": 7, "acquir": 58, "across": [4, 8, 20, 24, 27, 68, 84, 95], "act": [24, 36, 37, 42, 95], "action": 62, "activ": [73, 75, 76, 77, 91], "actual": [21, 24, 29, 34, 35, 67], "ad": [17, 19, 20, 21, 24, 25, 27, 30, 34, 35, 37, 48, 53, 63, 65, 66, 70, 75, 84, 99], "add": [0, 1, 7, 17, 20, 22, 24, 27, 35, 36, 42, 48, 49, 58, 62, 73, 75, 76, 77, 78, 80, 90, 91, 95], "add_newdoc": [24, 35], "addit": [1, 11, 20, 22, 24, 35, 36, 41, 42, 54, 60, 68, 70, 76, 94, 95, 98, 99], "addition": [78, 85], "address": [0, 18, 19, 24, 99], "adher": 68, "adjac": [24, 35], "adversari": [24, 35], "adx": 59, "ae": 59, "affect": [19, 24, 36, 42, 95], "after": [0, 17, 20, 22, 24, 35, 39, 53, 62, 64, 75, 90, 91, 95, 100], "ag": 66, "again": [0, 64, 66, 67, 75, 76], "against": [17, 24, 48, 53, 59, 66, 84, 96, 100], "aggreg": [1, 20, 22, 24, 48, 56, 66, 83, 84, 91], "aggress": 84, "aid": [66, 68], "aim": 66, "ak": [0, 1, 3, 17, 18, 19, 20, 22, 24, 25, 26, 27, 31, 35, 36, 37, 38, 40, 41, 42, 44, 45, 48, 49, 50, 53, 54, 55, 56, 58, 63, 64, 66, 67, 73, 78, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100], "ak_arr": 66, "ak_data": [24, 27, 84], "ak_df": [20, 24, 41, 90], "ak_in1d": 66, "ak_in1dmult": 66, "ak_in1dmulti": 66, "ak_int": 66, "ak_intmult": 66, "ak_io_benchmark": 59, "aka": [47, 75], "akab": 24, "akbool": 24, "akcast": 24, "akfloat64": 24, "akint64": [24, 38], "akstat": [24, 44], "aku": [3, 24, 25, 43, 85], "akuint64": 24, "algorithm": [14, 24, 35, 50, 56, 73, 86], "alia": [20, 21, 24, 34, 35, 40, 48, 49, 55, 90], "alias": [21, 24, 34, 35, 55], "alic": [20, 24, 90], "align": [24, 25, 35, 57], "all": [0, 3, 4, 5, 8, 11, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 48, 51, 53, 54, 55, 56, 58, 59, 62, 63, 64, 67, 68, 70, 73, 76, 77, 78, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 100], "all_occurr": [3, 24, 40], "all_scalar": [21, 24, 34, 35, 38, 89], "allclos": [24, 46, 54], "alloc": [18, 75, 80], "allow": [0, 17, 19, 20, 22, 24, 25, 27, 30, 35, 36, 37, 38, 42, 44, 48, 49, 53, 54, 56, 59, 60, 66, 69, 71, 78, 80, 84, 91, 95, 96], "allow_error": [20, 24, 25, 27, 37, 53, 84], "allow_list": [24, 25, 85], "allsymbol": [24, 26], "almost": [88, 90, 94, 100], "alnum": [24, 53], "alon": [88, 100], "along": [4, 8, 9, 11, 12, 14, 15, 16, 20, 22, 24, 35, 37, 38, 39, 87, 89, 98], "alongsid": [24, 27], "alpha": [24, 46, 53, 59, 82], "alphabet": [24, 53], "alphanumer": [24, 53], "alreadi": [0, 1, 17, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 55, 63, 67, 68, 70, 75, 88, 91, 98], "also": [1, 3, 4, 17, 19, 21, 22, 24, 29, 34, 35, 36, 38, 40, 42, 46, 48, 49, 53, 54, 58, 61, 63, 66, 67, 69, 70, 71, 73, 76, 80, 84, 89, 93, 94, 95, 96, 98, 100], "altern": [1, 20, 24, 35, 36, 42, 46, 49, 62, 63, 75, 77, 80, 95], "although": [4, 8], "alwai": [0, 11, 14, 21, 22, 24, 25, 27, 34, 35, 37, 53, 55, 58, 67, 84, 87, 88, 90, 91, 92, 94, 100], "amount": [18, 20, 24, 37, 75, 78, 90, 100], "an": [0, 1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 34, 35, 36, 37, 38, 39, 40, 42, 43, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 70, 73, 76, 80, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "anaconda": [1, 73, 75, 80, 81], "anaconda3": [75, 76, 77], "analog": [21, 22, 24, 34, 35, 55, 91], "analyt": 72, "angl": [24, 35], "ani": [0, 3, 16, 17, 20, 21, 22, 24, 25, 26, 27, 28, 34, 35, 36, 37, 38, 42, 48, 49, 51, 53, 54, 58, 59, 62, 64, 68, 70, 76, 77, 83, 87, 90, 91, 92, 94, 95, 96, 100], "anim": [24, 49], "animal_1": [20, 24], "animal_2": [20, 24], "annot": [21, 34, 58, 75], "anoth": [0, 5, 6, 12, 20, 21, 22, 24, 27, 34, 35, 37, 53, 58, 68, 73, 77, 80, 84, 90, 91, 93, 94, 96, 100], "anyon": 0, "anyth": [0, 21, 24, 34, 37, 62], "anywai": [0, 89], "api": [1, 4, 5, 7, 8, 11, 20, 21, 22, 24, 34, 35, 49, 56, 58, 72, 91, 94], "api_specif": [11, 24, 56], "apic": 59, "app": 80, "appear": [3, 17, 20, 22, 24, 25, 27, 35, 37, 40, 49, 53, 62, 91, 92], "append": [16, 17, 20, 22, 24, 25, 27, 35, 37, 40, 48, 49, 53, 68, 70, 83, 89, 91, 100], "append_singl": [24, 48, 83, 96], "appli": [3, 7, 11, 15, 20, 22, 24, 35, 54, 58, 59, 87, 90, 91, 100], "applic": [22, 24, 35, 84, 89, 91, 98], "apply_permut": [20, 24, 90], "appreci": 0, "approach": [78, 96], "appropri": [0, 20, 24, 27, 35, 54, 62, 69, 73, 75, 79, 84], "approv": 0, "approxim": [20, 24, 35, 54], "ar": [0, 1, 3, 4, 7, 8, 11, 16, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 62, 63, 64, 66, 67, 68, 70, 73, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "arang": [3, 5, 20, 22, 24, 27, 35, 36, 37, 38, 40, 41, 42, 48, 49, 56, 58, 66, 83, 84, 87, 89, 90, 91, 92, 93, 94, 95, 96, 98], "arbitrari": [20, 24, 35, 90], "arbitrarili": [17, 24], "arcco": [24, 35], "arccosh": [24, 35], "arccosin": 7, "arch": 59, "arch_cap": 59, "arch_string_raw": 59, "architectur": 59, "archiv": 76, "arcsin": [7, 24, 35], "arcsinh": [24, 35], "arctan": [24, 35], "arctan2": [24, 35], "arctang": 7, "arctanh": [24, 35], "area": [24, 46, 54, 59], "aren": [76, 77], "arg": [0, 3, 20, 21, 22, 24, 25, 34, 35, 38, 46, 48, 49, 55, 56, 58, 78, 89, 91], "arg1": [24, 35, 58], "arg2": [24, 35], "argmax": [12, 20, 21, 22, 24, 34, 35, 37, 48, 49, 83, 87, 91, 92], "argmaxk": [24, 37, 83, 87, 92], "argmin": [12, 20, 21, 22, 24, 34, 35, 37, 48, 49, 83, 87, 91, 92], "argmink": [24, 37, 83, 87, 92], "argpars": 79, "args1": [3, 24], "args2": [3, 24], "argsort": [14, 17, 18, 20, 21, 22, 24, 25, 34, 35, 37, 50, 83, 86, 87, 88, 90, 91, 100], "argument": [2, 3, 14, 15, 16, 19, 20, 21, 22, 24, 34, 35, 36, 37, 42, 46, 48, 49, 53, 54, 56, 58, 78, 95, 97], "arithmet": [24, 35, 83, 94], "arkodua": [67, 68], "arkouda": [57, 59, 62, 64, 65, 69, 71, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 91, 92, 93, 94, 98], "arkouda_arrow_path": 1, "arkouda_client_directori": [1, 47], "arkouda_client_mod": 1, "arkouda_client_timeout": 1, "arkouda_config_fil": [63, 78], "arkouda_develop": [1, 63], "arkouda_full_stack_test": 1, "arkouda_hdf5_path": 1, "arkouda_hom": 1, "arkouda_iconv_path": 1, "arkouda_idn2_path": 1, "arkouda_key_fil": 1, "arkouda_log_level": [1, 24], "arkouda_mem_alloc": 18, "arkouda_numlocal": 1, "arkouda_password": 1, "arkouda_print_passes_fil": 1, "arkouda_quick_compil": [1, 63, 77], "arkouda_root": 59, "arkouda_serv": [1, 18, 21, 24, 34, 35, 60, 63, 64, 73, 75, 78, 99], "arkouda_server_aggregation_dst_buff_s": 1, "arkouda_server_aggregation_src_buff_s": 1, "arkouda_server_aggregation_yield_frequ": 1, "arkouda_server_connection_info": 1, "arkouda_server_host": 1, "arkouda_server_port": 1, "arkouda_server_user_modul": [1, 78], "arkouda_skip_check_dep": 1, "arkouda_supported_dtyp": [21, 24, 34, 35], "arkouda_supported_float": [21, 34], "arkouda_supported_int": [21, 34], "arkouda_supported_numb": [21, 34], "arkouda_tunnel_serv": 1, "arkouda_typ": [20, 24, 25, 27, 37, 53], "arkouda_verbos": 1, "arkouda_vers": 68, "arkouda_zmq_path": 1, "arkoudalogg": [22, 24, 30, 53, 91], "arkoudavers": 0, "arm64": 77, "around": [0, 4, 8, 19, 21, 24, 34, 35, 46, 62, 64], "arr": [24, 27, 39, 40], "arr1": [3, 24, 40], "arr2": [3, 24, 40], "arrai": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 67, 68, 73, 82, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 97, 100], "array_api": [24, 57], "array_dtyp": 58, "array_equ": [24, 35], "array_nd": 58, "array_object": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 57], "arrays2": [24, 25], "arrays_and_dtyp": 6, "arraysetop": 98, "arraysetopsmsg": 58, "arrayview": [68, 94], "arri": 56, "arrow": [1, 79], "artifact": 47, "as_compon": [24, 56], "as_index": [20, 24, 90], "as_integer_ratio": [21, 24, 34, 35], "as_perc": 18, "as_seri": [20, 24], "asarrai": [4, 5, 8], "ascend": [12, 20, 22, 24, 25, 35, 37, 49, 85, 90, 92, 97], "ascii": 59, "asia": [24, 55], "asin": 7, "asinh": 7, "ask": 0, "assembl": [24, 53], "assert": [24, 54], "assert_": [24, 54], "assert_almost_equ": [24, 54], "assert_almost_equival": [24, 54], "assert_arkouda_array_equ": [24, 54], "assert_arkouda_array_equival": [24, 54], "assert_arkouda_pdarray_equ": [24, 54], "assert_arkouda_segarray_equ": [24, 54], "assert_arkouda_strings_equ": [24, 54], "assert_attr_equ": [24, 54], "assert_categorical_equ": [24, 54], "assert_class_equ": [24, 54], "assert_contains_al": [24, 54], "assert_copi": [24, 54], "assert_dict_equ": [24, 54], "assert_equ": [24, 54], "assert_equival": [24, 54], "assert_frame_equ": [24, 54], "assert_frame_equival": [24, 54], "assert_index_equ": [24, 54], "assert_index_equival": [24, 54], "assert_is_sort": [24, 54], "assert_series_equ": [24, 54], "assert_series_equival": [24, 54], "assertionerror": [24, 54], "asset": 73, "assig": 93, "assign": [0, 17, 20, 22, 24, 35, 49, 67, 68, 83, 88, 91, 96, 100], "assist": [0, 78], "associ": [0, 1, 20, 24, 27, 35, 36, 42, 49, 56, 59, 62, 84, 95, 96, 97], "assum": [2, 12, 20, 22, 24, 27, 35, 36, 38, 40, 42, 49, 51, 62, 67, 68, 69, 76, 77, 81, 84, 90, 91, 95, 97, 98], "assume_sort": [22, 24, 91, 98], "assume_uniqu": [24, 40, 98], "assumpt": [17, 24, 37, 38, 53, 84, 88, 94, 100], "ast": 79, "astyp": [6, 20, 21, 24, 34, 35, 37, 53], "atan": 7, "atan2": 7, "atanh": 7, "atol": [24, 54], "attach": [17, 19, 20, 22, 24, 25, 35, 37, 48, 49, 53, 55, 56, 83, 91], "attach_al": [24, 56], "attach_pdarrai": [24, 37], "attahc": [24, 37], "attempt": [17, 20, 22, 24, 25, 27, 37, 48, 49, 50, 53, 55, 75, 84, 90, 91], "attent": 59, "attr": [24, 54], "attribut": [8, 17, 20, 21, 25, 27, 34, 37, 51, 53, 54, 55, 84, 94], "attributeerror": [24, 35], "attributi": [24, 37, 51, 94], "authent": [18, 47, 73, 99], "author": 0, "author_tim": 59, "auto": [46, 57, 62], "autoapi": [57, 79], "autoclass": 85, "autodoc": 79, "autom": [1, 62], "automat": [1, 3, 17, 24, 27, 49, 68, 84, 88, 97], "autopackagesummari": 79, "autosav": 59, "avail": [1, 18, 24, 27, 35, 36, 37, 42, 46, 59, 64, 68, 80, 84, 92], "avail_mem": 18, "averag": [22, 24, 37, 38, 59, 87, 91], "avoid": [0, 24, 35, 61, 64], "avx": 59, "avx2": 59, "awar": 0, "awk": 80, "ax": [0, 4, 8, 11, 15, 16, 20, 24, 35, 37, 46, 87], "axi": [9, 10, 11, 12, 14, 15, 16, 20, 24, 25, 35, 37, 39, 41, 48, 49, 50, 86, 87, 90, 96, 97], "b": [17, 18, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 40, 41, 42, 46, 48, 49, 50, 52, 53, 54, 56, 66, 82, 86, 87, 90, 91, 92, 93, 94, 95, 96, 98, 100], "back": [19, 20, 22, 24, 56, 61, 64, 84, 91], "backbon": 94, "backend": [20, 24, 49, 61, 75], "backward": [24, 35, 48, 56, 96], "badvalu": 46, "balanc": [17, 24, 53], "bandwidth": [24, 38, 84], "base": [0, 1, 2, 3, 4, 7, 13, 17, 19, 20, 21, 23, 24, 25, 27, 30, 34, 35, 36, 37, 42, 43, 44, 46, 50, 55, 56, 62, 75, 77, 81, 84, 85, 86, 87, 88, 90, 94, 97, 100], "base_repr": [24, 35], "bash": [76, 77], "bashrc": [76, 77, 80], "basic": [18, 24, 25, 37, 47, 62, 80, 94], "bear": [0, 62, 76, 77], "becaus": [17, 20, 24, 25, 27, 35, 36, 38, 42, 48, 53, 54, 63, 66, 67, 68, 69, 73, 84, 88, 89, 90, 96, 100], "becom": [21, 24, 34, 35], "been": [1, 17, 18, 20, 24, 27, 35, 37, 39, 40, 48, 53, 60, 61, 62, 75, 78, 87, 88, 89], "befor": [0, 11, 12, 16, 24, 35, 39, 55, 59, 75, 84], "begin": [0, 4, 8, 16, 24, 53, 93, 100], "behav": 0, "behavior": [0, 4, 20, 24, 35, 36, 37, 38, 42, 58, 87, 89, 90, 95, 100], "being": [20, 24, 25, 27, 35, 37, 49, 54, 58, 66, 68, 69, 70, 78, 84, 90, 93, 97], "believ": 62, "belong": [17, 24, 88], "below": [5, 24, 35, 41, 46, 59, 60, 66, 76, 77, 79, 84, 90], "bench_decod": 59, "bench_encod": 59, "benchmark": [63, 65, 78, 79, 82], "benchmark_v2": 59, "benefici": [59, 70], "berkelei": [20, 24], "besid": [24, 35], "best": [0, 3, 24, 35, 46], "beta": [36, 42, 95], "better": [17, 20, 24, 25, 27, 37, 48, 53], "between": [1, 5, 17, 18, 20, 24, 29, 35, 37, 38, 53, 55, 56, 59, 66, 78, 89, 92, 94, 100], "beyond": [11, 24, 37, 66, 87], "bi": [24, 35], "bi_end": [3, 24], "bi_start": [3, 24], "bi_val": [3, 24], "bia": [24, 35], "big": [21, 24, 34, 35], "biggest": 63, "bigint": [21, 24, 34, 35, 37, 38, 59, 84, 89], "bigint_from_uint_arrai": [3, 24, 37, 38], "bigint_to_uint_arrai": [24, 37, 38], "bin": [24, 35, 37, 41, 46, 75, 76, 77, 80, 92], "binari": [19, 24, 35, 38, 76, 77, 87], "binary_repr": [24, 35], "bind": 75, "binomi": [36, 42, 95], "binop": [17, 20, 24, 27, 37, 48, 53], "bit": [0, 6, 17, 19, 21, 24, 27, 34, 35, 37, 38, 48, 53, 59, 63, 84, 89, 90, 94], "bit_count": [21, 24, 34, 35], "bittyp": [21, 24, 34, 35], "bitvector": [19, 24], "bitwis": [7, 22, 24, 91, 94], "bitwise_and": 7, "bitwise_invert": 7, "bitwise_left_shift": 7, "bitwise_or": 7, "bitwise_right_shift": 7, "bitwise_xor": 7, "black": [0, 79], "block": [0, 17, 24, 40, 49, 53, 58, 66, 89], "blosc": [24, 27], "blue": [24, 25], "bmi1": 59, "bmi2": 59, "bob": [20, 24, 90], "bodi": 0, "bool": [3, 5, 6, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 48, 49, 50, 53, 54, 55, 56, 59, 68, 82, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "bool_": [17, 21, 24, 34, 35, 36, 37, 38, 42, 53, 55, 87, 89, 92, 93, 94], "bool_onli": [20, 24], "bool_scalar": [21, 24, 34, 35], "booldtyp": [24, 35], "boolean": [3, 6, 7, 17, 20, 21, 22, 24, 31, 34, 35, 37, 40, 48, 49, 53, 66, 68, 87, 88, 90, 91, 93, 94, 96, 97, 98, 100], "boost": 75, "borrow": 58, "both": [3, 11, 18, 20, 21, 22, 24, 25, 27, 29, 34, 35, 37, 40, 54, 55, 63, 66, 68, 69, 73, 75, 84, 88, 98, 100], "bottleneck": 61, "bottom": [24, 37, 62], "bound": [24, 36, 37, 38, 42, 48, 55, 89, 96], "boundari": [24, 36, 42, 55, 95], "box": [36, 42, 62, 95], "branch": [0, 59, 62, 75], "brand_raw": 59, "brew": 77, "bring": 62, "broad": 0, "broadcast": [11, 20, 22, 24, 35, 37, 56, 83, 87, 91], "broadcast_arrai": 11, "broadcast_dim": [24, 56], "broadcast_to": 11, "broadcast_to_shap": [24, 37], "brotli": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70], "brown": 66, "browser": 75, "buf": [24, 35], "buffer": [1, 5, 20, 21, 22, 24, 34, 35, 46, 49], "bufferobject": [21, 24, 34, 35], "bug": [62, 65], "build": [1, 21, 22, 24, 34, 35, 58, 59, 62, 65, 73, 76, 80, 91, 99], "build_from_compon": [22, 24, 83, 91], "built": [0, 17, 21, 24, 34, 35, 37, 53, 60, 62, 63, 64, 73, 75, 77, 78, 84, 88, 94, 100], "builtin": [21, 24, 34, 35, 37], "bump": [60, 76, 77], "bundl": [76, 77], "button": 62, "bydayofweek": 91, "byte": [17, 20, 21, 24, 25, 27, 29, 34, 35, 37, 38, 46, 48, 49, 51, 53, 56, 68, 73, 84, 88, 90, 94, 100], "bytearrai": [21, 24, 34, 35, 46], "bytedtyp": [24, 35], "byteord": [21, 24, 34, 35], "bytes_": [24, 35], "bytes_attrib": [24, 53], "bytes_or_buff": [20, 21, 22, 24, 34, 35, 46, 49], "bytes_s": [24, 53], "bytesdtyp": [24, 35], "byteswap": [21, 24, 34, 35], "c": [17, 20, 21, 24, 25, 34, 35, 38, 40, 41, 48, 49, 53, 56, 59, 61, 63, 76, 82, 90, 94, 96, 98, 100], "c1": [24, 35, 87], "c2": [17, 24, 35, 87], "c_cpy": [17, 24], "c_string": 68, "cach": [2, 17, 24, 35, 53], "cached_regex_pattern": [24, 53], "cachedaccessor": [2, 24], "calc_string_offset": [24, 27, 84], "calcul": [16, 20, 22, 24, 27, 35, 37, 40, 46, 59, 68, 84, 87, 91, 92, 98], "calculu": [31, 100], "call": [4, 8, 17, 18, 19, 20, 22, 24, 27, 35, 36, 37, 38, 42, 46, 48, 49, 51, 53, 54, 58, 66, 70, 73, 75, 77, 78, 84, 87, 89, 90, 91, 94, 95, 99], "callabl": [4, 19, 20, 24, 90], "callback": [19, 24], "caller": [20, 24, 35, 49, 90], "came": [24, 48, 96], "can": [1, 3, 4, 6, 8, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 46, 47, 48, 49, 53, 55, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 75, 76, 77, 78, 79, 80, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "can_cast": 6, "cancel": [24, 35], "candid": [24, 35], "cannot": [3, 11, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 38, 48, 49, 53, 54, 55, 70, 80, 84, 88, 91, 94, 100], "canon": [21, 24, 34, 35], "capac": [24, 35, 94], "capit": [24, 53], "capitilz": [24, 53], "captur": [1, 31, 100], "care": 59, "carol": [20, 24, 90], "carri": [24, 55], "case": [17, 18, 21, 22, 24, 25, 27, 34, 35, 36, 37, 42, 46, 49, 53, 55, 59, 61, 66, 67, 68, 70, 75, 76, 78, 80, 87, 95, 97], "cask": 77, "caskroom": [75, 77], "cast": [3, 4, 6, 19, 21, 24, 34, 35, 37, 38, 39, 53, 58, 83, 84, 89, 100], "castabl": [24, 45], "castarrai": 58, "castmsg": 58, "cat": [17, 24, 27, 80], "catch": 0, "categor": [20, 22, 24, 25, 27, 35, 40, 49, 50, 54, 56, 57, 83, 86, 87, 89, 90, 91, 92, 94, 97, 98], "categori": [0, 17, 24, 50, 54, 62, 68, 83, 86, 88], "categorical_arrai": [17, 24], "categorical_test": 0, "categoricaltest": 0, "cattwo": [17, 24], "caus": [17, 20, 24, 25, 27, 35, 37, 48, 53, 73, 75], "caution": [17, 24, 37, 38, 53, 84, 88, 94, 100], "ccflag": 1, "cd": [60, 73, 75, 76, 77, 79], "cdf": [36, 42, 46, 95], "cdot": [36, 42, 95], "cdoubl": [21, 24, 34, 35], "ceil": [7, 24, 35], "cell": [20, 24], "cento": 76, "central": [21, 24, 34, 35, 46], "certain": [24, 37, 60, 78, 87], "cfg": [1, 24, 27, 63, 64, 78], "cfloat": [21, 24, 34, 35], "chang": [1, 19, 20, 21, 24, 25, 27, 34, 35, 36, 37, 42, 59, 62, 64, 73, 76, 77, 79, 84, 87, 90], "channel": [18, 99], "chapel": [18, 24, 35, 36, 42, 58, 61, 63, 68, 72, 73, 78, 79, 80, 81, 94, 99, 100], "chapel_vers": 73, "char": [21, 24, 34, 35, 53], "charact": [17, 18, 19, 21, 23, 24, 34, 35, 38, 49, 53, 78, 100], "check": [0, 1, 3, 16, 17, 20, 21, 22, 24, 25, 27, 34, 35, 37, 46, 48, 53, 54, 56, 58, 62, 63, 64, 82, 88, 98, 99, 100], "check_categor": [24, 54], "check_category_ord": [24, 54], "check_column_typ": [24, 54], "check_dtyp": [24, 54], "check_exact": [24, 54], "check_frame_typ": [24, 54], "check_index": [24, 54], "check_index_typ": [24, 54], "check_lik": [24, 54], "check_nam": [24, 54], "check_ord": [24, 54], "check_sam": [24, 54], "check_series_typ": [24, 54], "checker": [21, 34], "checkout": 64, "chess": [36, 42, 95], "chi": [24, 44, 46], "chi2": 46, "chipset": 77, "chisquar": [24, 44], "choic": [24, 36, 38, 42, 75, 83], "choos": [21, 24, 34, 35, 62, 77, 80, 87, 99], "chosen": [3, 24, 35, 37, 87, 94, 96], "chpl": [1, 24, 27, 58, 63, 75, 76, 77, 78], "chpl_comm": [60, 76, 77], "chpl_debug_flag": 1, "chpl_develop": [63, 77], "chpl_flag": [1, 61], "chpl_gasnet_cfg_opt": 60, "chpl_gmp": [76, 77], "chpl_home": [60, 75, 76, 77], "chpl_llvm": [76, 77], "chpl_re2": [76, 77], "chpl_rt_oversubscrib": 60, "chpl_target_compil": 61, "chpl_target_cpu": 77, "chpl_test_timeout": 60, "chplconfig": 76, "chpldoc": [75, 76], "chunk": [4, 8, 17, 24, 25, 27, 37, 48, 53], "chunk_info": [4, 8], "chunk_shap": [24, 27], "ci": 0, "circl": [24, 35], "cl": [2, 24, 88], "clang": [61, 76], "class": [0, 38, 54, 58, 59, 83, 84, 85, 88, 89, 90, 91, 95, 96, 97, 100], "classmethod": [17, 19, 24, 25, 48, 88], "claus": [24, 35, 87], "clean": 75, "clear": [21, 24, 34, 35, 37], "clflush": 59, "clflushopt": 59, "click": [62, 75, 81], "client": [4, 8, 17, 20, 24, 37, 38, 53, 54, 55, 57, 69, 75, 76, 77, 78, 79, 80, 83, 88, 90, 94, 96, 100], "client_dtyp": [24, 27, 57], "clientgeneratedlog": [24, 30], "clip": [16, 21, 24, 34, 35], "clobber": 75, "clone": 81, "clongdoubl": [24, 35], "clongdoubledtyp": [24, 35], "clongfloat": [24, 35], "close": [0, 3, 24, 38, 55, 58, 66, 89], "clz": [24, 37], "cm_version": 76, "cmake": [76, 79], "cmd": [58, 78], "cmd_filter": 18, "cmov": 59, "co": [7, 22, 24, 35, 38, 83, 87, 91], "coargsort": [20, 24, 50, 83, 86, 88, 90, 100], "code": [1, 17, 21, 24, 25, 27, 34, 35, 44, 50, 54, 62, 63, 66, 68, 78, 83, 86, 88], "codepoint": [21, 24, 34, 35], "coeffici": [24, 37], "coercibl": [24, 35], "col": [24, 35, 41], "col1": [20, 24, 35, 90], "col2": [20, 24, 35, 90], "col2_i": [20, 24], "col2_x": [20, 24], "col3": [20, 24, 35, 90], "col_a": [20, 24], "col_b": [20, 24], "col_c": [20, 24], "col_delim": [20, 24, 25, 27, 37, 53], "col_nam": [24, 27], "cola": 67, "colb": 67, "colc": 67, "collaps": [24, 37, 53, 100], "collect": [17, 20, 21, 22, 24, 25, 27, 34, 35, 37, 43, 46, 48, 53, 76, 91], "collis": [17, 24, 35, 53], "colnam": [20, 24], "colors2": [24, 25], "column": [3, 5, 17, 20, 22, 24, 25, 27, 37, 41, 48, 49, 50, 52, 53, 54, 66, 67, 70, 71, 84, 86, 91, 96, 97], "column_data": 66, "column_delim": [24, 27, 84], "column_nam": 66, "columnar": 84, "com": [0, 24, 35, 44, 76, 77], "combin": [20, 24, 53, 55, 56, 58, 64], "come": [22, 24, 64, 84, 89, 98], "comma": [24, 35, 59, 67, 75], "command": [18, 23, 24, 37, 58, 59, 60, 62, 64, 73, 75, 77, 78, 79, 80, 99], "command_filt": [18, 23], "commandlin": 59, "commandmap": [18, 58, 78], "comment": [0, 63, 78], "commit": [0, 62], "commit_info": 59, "common": [0, 3, 11, 22, 24, 35, 38, 40, 80, 84, 91, 98, 100], "common_typ": [24, 39], "commonli": 66, "commun": [1, 24, 50, 62, 77, 86, 89], "compar": [17, 21, 24, 25, 34, 35, 37, 46, 53, 54, 62, 82, 84, 100], "compare_kei": [24, 54], "comparison": [59, 67, 88, 94, 96, 100], "compat": [7, 17, 20, 21, 24, 34, 35, 37, 48, 55, 56, 90, 91], "compet": 1, "compil": [18, 24, 35, 53, 61, 64, 65, 75, 76, 77, 78, 80], "compiler_flag": [21, 34], "complement": [24, 35], "complementari": [24, 37], "complet": [17, 18, 20, 24, 35, 37, 46, 48, 53, 58, 60, 62, 75, 99, 100], "complex": [3, 7, 21, 24, 34, 35, 73], "complex128": [21, 24, 34, 35], "complex128dtyp": [24, 35], "complex256": [24, 35], "complex64": [21, 24, 34, 35], "complex64dtyp": [24, 35], "complex_": [21, 24, 34, 35], "complexflo": [21, 24, 34, 35], "compliant": [4, 5], "compon": [3, 17, 19, 20, 22, 24, 25, 26, 35, 37, 48, 49, 53, 55, 56, 59, 68, 70, 91], "compos": [21, 24, 34, 35, 38, 53, 73, 84], "composit": [24, 53], "compress": [17, 20, 21, 24, 25, 27, 34, 35, 37, 48, 53, 59, 93, 96], "compris": 100, "comput": [4, 6, 7, 8, 15, 17, 18, 20, 21, 22, 24, 29, 34, 35, 37, 44, 45, 48, 53, 58, 66, 84, 87, 88, 90, 91, 92, 94, 96, 98, 100], "computation": 66, "compute_join_s": [24, 29], "concat": [11, 20, 24, 25, 48, 49, 90, 97], "concaten": [11, 17, 20, 24, 39, 40, 48, 49, 53, 56, 58, 83, 96, 97, 100], "concept": 88, "concis": 62, "concret": [21, 24, 34, 35], "concurr": [0, 84], "cond": [24, 35, 87], "conda": [73, 76, 77, 79], "conda_prefix": [73, 75], "condens": [24, 48, 96], "condit": [3, 12, 20, 24, 35, 37, 46, 87], "conf": 80, "confid": 46, "config": [18, 58, 78], "configur": [0, 1, 24, 58, 59, 66, 77, 80, 85, 90, 97], "confirm": [0, 62], "conflict": 0, "conform": [24, 35, 58], "conj": [7, 21, 24, 34, 35], "conjug": [7, 21, 24, 34, 35], "conjunct": [17, 24, 84, 88, 100], "connect": [17, 18, 20, 24, 25, 35, 37, 38, 44, 45, 47, 49, 53, 56, 58, 63, 80, 83, 84, 90], "connect_url": [18, 73, 99], "connectionerror": [18, 99], "consecut": [24, 38, 49, 89], "consensu": [0, 62], "consequ": 76, "conserv": [19, 24], "consid": [17, 20, 24, 35, 49, 62, 75, 100], "consider": [22, 24, 98, 100], "consist": [0, 20, 24, 35, 66, 87, 90], "consol": 24, "const": 58, "constant": [16, 20, 22, 24, 37, 83, 91], "constant_tsc": 59, "constant_valu": 16, "construct": [4, 5, 8, 17, 24, 35, 36, 38, 42, 48, 53, 58, 66, 83, 91, 93], "constructor": [17, 21, 24, 34, 35, 36, 42, 48, 66, 88, 95], "consum": [24, 25, 49], "conta": [24, 53, 100], "contain": [3, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 31, 34, 35, 36, 37, 38, 40, 41, 42, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 63, 64, 66, 67, 68, 73, 75, 78, 82, 83, 84, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 100], "content": [1, 67, 80, 84], "contigu": [17, 24, 29, 53], "continu": [0, 46, 62], "contribut": [20, 24, 49], "contributor": [0, 24, 44], "control": [1, 19, 24, 35, 39, 58, 94], "conveni": [24, 35, 76, 77, 84], "convent": [17, 24, 35], "convers": [0, 17, 24, 84, 88, 94, 100], "convert": [4, 5, 8, 17, 19, 20, 21, 24, 25, 34, 35, 37, 38, 46, 48, 49, 53, 54, 55, 56, 67, 84, 88, 90, 94, 96, 97, 98, 100], "convert_byt": 56, "convert_categor": [20, 24, 27], "convert_if_categor": [24, 56], "convert_int": [20, 24], "cool": 0, "coordin": [5, 24, 35], "copi": [4, 5, 6, 8, 11, 14, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 39, 42, 48, 50, 53, 54, 95, 96, 100], "core": [20, 23, 24, 59, 62, 90], "corr": [20, 24, 37], "correct": [3, 15, 20, 24, 63, 76, 80, 82, 90], "correctli": [20, 24, 80, 90], "correl": [20, 24, 37], "correspond": [3, 4, 8, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 31, 34, 35, 37, 38, 44, 47, 48, 49, 53, 56, 68, 70, 84, 87, 88, 90, 91, 92, 93, 96, 97, 100], "cosh": [7, 24, 35], "cosin": [7, 24, 35, 87], "cosort": [3, 24], "cosorted": [3, 24], "cost": [17, 24, 88], "could": [4, 8, 24, 37, 41, 48, 53, 58, 63, 78, 100], "count": [13, 20, 21, 22, 24, 32, 34, 35, 37, 48, 49, 53, 59, 66, 83, 87, 91, 96, 100], "count_nonzero": [24, 35], "counter_nam": 59, "counterpart": 58, "coupl": 63, "cours": [24, 37], "cov": [24, 37], "covari": [24, 37], "cpp": 75, "cpu": 59, "cpuid": 59, "cpuinfo_vers": 59, "cpuinfo_version_str": 59, "cpython": 59, "crazi": 1, "creat": [0, 5, 11, 17, 19, 20, 21, 22, 24, 25, 27, 28, 32, 34, 35, 37, 38, 41, 46, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 64, 68, 70, 73, 75, 76, 77, 78, 79, 80, 83, 84, 88, 90, 91, 92, 94, 95], "create_pdarrai": [24, 58], "create_sparrai": [24, 51], "creation": [4, 8, 17, 24, 35, 62, 83], "creation_funct": [8, 57], "cressi": [24, 44], "critic": [24, 30], "crucial": 63, "cryptograph": [24, 35], "csc": [24, 51], "csingl": [21, 24, 34, 35], "csr": [24, 51], "csv": [20, 24, 25, 27, 37, 53, 71, 84], "csv_output": [20, 24], "ctrl": 63, "ctz": [24, 37], "cuda": [24, 37], "cumprod": [21, 24, 34, 35, 83, 87], "cumsum": [21, 24, 34, 35, 83, 87], "cumul": [15, 24, 35, 41, 46, 82, 87], "cumulative_sum": 15, "curl": 76, "current": [0, 11, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 42, 47, 51, 53, 61, 62, 63, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 99, 100], "current_arkouda_vers": 68, "custom": [2, 24, 30, 58, 67, 75, 92], "customiz": 84, "cut": [61, 62, 64], "cutoff": [24, 35], "cwd": [24, 27, 37], "cx16": 59, "cx8": 59, "cycl": [77, 79], "d": [0, 4, 8, 17, 20, 21, 24, 25, 34, 35, 36, 38, 39, 40, 41, 42, 48, 49, 53, 55, 56, 58, 66, 82, 95, 96, 98, 100], "dai": [20, 24, 55, 62, 90, 91], "darwin": [47, 77], "dash": 62, "dask": [4, 8], "data": [2, 4, 5, 6, 8, 11, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 38, 39, 40, 41, 46, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 66, 69, 71, 72, 83, 85, 86, 88, 89, 91, 96, 97, 99, 100], "data2": 56, "data_type_funct": [8, 57], "databas": [20, 24], "datafram": [2, 24, 25, 27, 41, 43, 49, 54, 57, 69, 84, 97], "dataframegroupbi": [20, 24, 90], "datalimit": [20, 24, 90], "datapar": 77, "dataset": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53, 67, 68, 70, 71, 91, 100], "dataset_nam": [24, 27, 84], "datasetnam": [24, 27, 84], "datasourc": [24, 35], "datatyp": [24, 38, 45, 51, 68], "date": [24, 35, 55, 62], "date_oper": [2, 24], "date_rang": [24, 55], "datefram": [20, 24, 90], "dateoffset": [24, 55], "datetim": [24, 27, 35, 38, 55, 59], "datetime64": [24, 35, 38, 55], "datetime64dtyp": [24, 35], "datetimeaccessor": [2, 24], "datetimeindex": [24, 55], "dateutil": 79, "datsetnam": [24, 27], "day_of_week": [24, 55], "day_of_year": [24, 55], "dayofweek": [24, 55, 91], "dayofyear": [24, 55], "dd": 62, "ddof": [22, 24, 37, 44, 55, 87, 91, 92], "de": 59, "deactiv": 75, "deal": [19, 24], "debandi99": 0, "debug": [24, 30, 60, 64], "decid": 0, "decim": [24, 35, 53], "decod": [20, 21, 22, 24, 34, 35, 46, 49, 53], "decompos": 11, "decor": [24, 35], "decreas": [24, 37, 38, 63, 87, 89, 92], "dedup": [20, 24, 90], "dedupl": 83, "deep": [24, 48, 90], "def": [58, 67, 78], "default": [1, 3, 5, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 42, 44, 46, 47, 48, 49, 52, 53, 54, 55, 56, 59, 61, 67, 68, 73, 77, 78, 80, 82, 84, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "default_log_format": 24, "default_rng": [20, 24, 36, 42, 95], "defaultt": [24, 30], "defici": [24, 35], "defin": [3, 4, 17, 19, 20, 21, 22, 23, 24, 25, 27, 30, 34, 35, 37, 38, 46, 48, 49, 53, 55, 58, 62, 88, 89, 90, 91, 92, 94], "definit": [24, 25], "deg2rad": [24, 35], "degener": 11, "degrad": [24, 37, 87], "degre": [15, 22, 24, 35, 37, 44, 46, 87, 91, 92], "degred": [24, 37, 87], "deleg": [24, 35, 36, 38, 42, 89, 92], "delet": [17, 18, 19, 20, 22, 24, 25, 27, 28, 35, 37, 39, 48, 49, 53, 55, 59, 64, 73, 91], "delete_directori": 28, "delimit": [20, 24, 25, 27, 28, 37, 49, 51, 53, 59, 62, 67, 84, 100], "delimited_file_to_dict": 28, "delta": [22, 24, 29, 37, 44, 87, 91, 92], "demo": 66, "demonstr": [0, 58], "denom": [24, 35], "denomin": [21, 24, 34, 35, 37], "denorm": [24, 35], "denormal_numb": [24, 35], "denot": [20, 24, 25, 27, 37, 46, 53, 55], "dens": [3, 17, 22, 24, 91], "densiti": [36, 42, 46, 52, 95], "dep": [1, 75, 76, 77], "depend": [12, 20, 24, 27, 35, 37, 68, 76, 77, 80, 81, 87, 96], "deprec": [17, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 55, 62, 68, 84, 91], "deprecate_with_doc": [24, 35], "deprecationwarn": [24, 35], "dequ": [24, 38, 84], "deriv": [21, 24, 27, 28, 30, 34, 36, 42, 53, 94, 95], "descend": [14, 20, 24, 38, 49, 89, 90, 97], "describ": [36, 42, 58, 62, 95], "descript": [24, 35, 59, 62, 66, 83], "descriptor": [2, 21, 24, 34, 35, 53], "design": [0, 21, 24, 34, 35, 62, 79, 84], "desir": [3, 18, 19, 24, 35, 36, 37, 38, 42, 47, 59, 60, 73, 78, 87, 89, 92, 94, 95, 99, 100], "destin": [11, 24, 35], "destpath": [24, 35], "detail": [0, 11, 21, 24, 26, 34, 35, 37, 46, 59, 62, 75, 76, 77, 79, 92, 99, 100], "detect": [20, 24, 27, 49, 68, 84], "determin": [6, 7, 11, 17, 20, 22, 24, 25, 27, 35, 37, 39, 48, 53, 56, 62, 68, 78, 84, 88, 90, 91], "determinist": [17, 24, 40, 49, 89], "dev": [0, 76, 77, 79], "devel": 76, "develop": [1, 17, 24, 35, 62, 63, 64, 76, 77, 78, 81, 84], "deviat": [15, 22, 24, 36, 37, 38, 42, 46, 55, 87, 91, 92, 95], "devic": [4, 5, 8, 24, 35], "devicend": [24, 37], "devicendarrai": [24, 37], "devtoolset": 76, "df": [2, 20, 24, 46, 66, 90], "df1": [20, 24, 54], "df2": [20, 24, 54], "df_deep": 90, "df_shallow": 90, "diag": [24, 35], "diagon": [5, 21, 24, 34, 35], "dic": [24, 54], "dict": [4, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 34, 35, 36, 42, 43, 49, 54, 56, 90, 91, 95], "dict_to_delimited_fil": 28, "dictionari": [17, 18, 20, 21, 22, 24, 27, 28, 34, 35, 36, 42, 53, 54, 56, 78, 84, 90, 91, 95], "did": [0, 18], "diff": [16, 20, 24, 49], "diffaggreg": [20, 24], "differ": [3, 4, 7, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 29, 34, 35, 37, 38, 40, 47, 48, 49, 53, 54, 55, 56, 59, 64, 66, 67, 68, 70, 76, 77, 83, 84, 89, 90, 91, 92, 98, 99], "differenc": [20, 24], "differenti": 46, "difficult": 78, "digit": [24, 35, 50, 53, 86], "dimens": [3, 4, 8, 11, 12, 15, 16, 17, 20, 21, 24, 25, 27, 34, 35, 37, 51, 53, 66, 88, 94, 96, 100], "dimension": [3, 4, 8, 20, 24, 27, 35, 38, 49, 84, 94, 97], "dir": 28, "direct": [3, 24, 62, 68, 75], "directli": [4, 8, 17, 20, 24, 37, 49, 50, 51, 53, 66, 75, 86, 88, 90, 94, 100], "directori": [17, 20, 22, 24, 25, 27, 28, 35, 37, 47, 48, 53, 59, 60, 63, 64, 73, 75, 76, 77, 78, 79, 80, 81, 82, 91], "dirti": 59, "disabl": [24, 30, 60], "disable_gc": 59, "disableverbos": [24, 30], "disallow": [20, 22, 24, 91], "discard": [3, 17, 24, 88], "discard_empti": [24, 48], "disconnect": [18, 24, 37], "discourag": [88, 90, 94, 96, 100], "discov": 78, "discret": [16, 36, 42, 95], "discrimin": [24, 35], "discuss": 0, "disk": [20, 24, 25, 27, 37, 53, 100], "disp": [24, 35], "dispatch": [24, 54], "displai": [1, 19, 20, 24, 25, 35, 41, 46, 49, 56, 75, 80, 90], "dist": 75, "distanc": [24, 35], "distinct": [17, 20, 24, 88], "distribut": [4, 8, 17, 19, 20, 22, 24, 25, 27, 36, 37, 38, 41, 42, 46, 48, 52, 53, 73, 76, 77, 84, 87, 88, 89, 91, 94, 95, 98, 100], "distro": 76, "div": [24, 37], "diverg": [24, 44], "divid": [7, 24, 37], "dividend": [24, 37], "divis": [7, 24, 37], "divisor": [22, 24, 37, 87, 91], "divmod": [24, 37], "djkba": [24, 38], "dlpack": 5, "do": [1, 3, 17, 18, 20, 22, 24, 25, 27, 35, 36, 37, 42, 48, 49, 53, 54, 59, 63, 64, 75, 76, 78, 79, 81, 87, 90, 91, 95, 97], "doc": [0, 20, 24, 35, 44, 49, 58, 75, 76], "docstr": [4, 7, 8, 24, 35, 58], "docstring1": [24, 35], "docstring2": [24, 35], "document": [0, 1, 24, 35, 46, 57, 58, 59, 63, 64, 66, 71, 77, 78], "doe": [17, 18, 20, 21, 22, 24, 25, 27, 28, 34, 35, 37, 38, 41, 46, 48, 49, 53, 54, 63, 66, 68, 70, 84, 88, 89, 90, 91, 94, 97, 99, 100], "doesn": [0, 20, 24, 58, 62, 75], "dog": [20, 24, 49], "doi": [24, 35], "domain": [3, 24], "don": [0, 3, 4, 8, 20, 21, 24, 27, 34, 40, 53, 63, 64, 80], "done": [0, 20, 24, 64, 75, 78, 90], "dot": [24, 35, 37, 62], "doubl": [21, 24, 34, 35, 58], "doubt": [0, 62], "down": [18, 61, 62, 64, 73, 75, 78], "download": [24, 35, 73, 76, 77, 81], "draft": 62, "dragon4": [24, 35], "draw": [24, 36, 38, 42, 95], "drawn": [24, 36, 38, 42, 89, 95], "drop": [20, 21, 22, 24, 34, 37, 62, 87, 91], "drop_dupl": [20, 24, 90], "dropna": [20, 22, 24, 83, 90, 91], "dt": [21, 24, 29, 34, 35, 49, 94], "dtype": [3, 4, 5, 6, 8, 15, 17, 20, 22, 24, 25, 27, 29, 32, 35, 36, 37, 38, 39, 40, 42, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 66, 82, 83, 84, 87, 89, 90, 91, 92, 93, 94, 95, 98, 100], "dtype_lik": [24, 35], "dtypeobject": [21, 24, 34, 35], "due": [17, 20, 24, 27, 67, 70, 75, 84], "dump": [21, 24, 34, 35], "duplcat": [20, 24, 90], "duplic": [0, 3, 20, 24, 40, 90], "durat": [24, 55], "dure": [0, 1, 24, 27, 56, 64, 66, 68, 69, 78, 79], "dx": [24, 35], "dynam": 24, "e": [0, 1, 2, 3, 7, 17, 19, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 48, 49, 53, 55, 62, 63, 64, 73, 75, 76, 77, 79, 84, 87, 88, 89, 91, 95, 96, 99, 100], "each": [3, 11, 13, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 40, 42, 48, 49, 51, 53, 55, 56, 58, 59, 66, 68, 75, 78, 84, 87, 88, 90, 91, 92, 94, 95, 96, 97, 98, 100], "eager": 79, "earli": 0, "earlier": [56, 66], "easi": [0, 24, 30, 59, 62, 66, 75], "easier": [24, 35], "easiest": 63, "easili": 66, "echo": [73, 75], "edg": [16, 24, 35, 41, 92], "edit": [24, 35], "effect": [20, 24, 35, 55, 64, 98], "effici": [17, 20, 24, 25, 37, 53, 96, 100], "egg": [24, 35], "either": [0, 12, 17, 20, 21, 22, 24, 26, 27, 34, 35, 36, 37, 38, 40, 42, 48, 49, 58, 73, 78, 80, 84, 91, 95, 96, 97, 98], "el7": 76, "elect": [68, 69], "element": [4, 5, 7, 8, 9, 11, 12, 15, 16, 17, 20, 21, 22, 24, 28, 29, 31, 34, 35, 36, 37, 38, 39, 40, 42, 48, 49, 51, 52, 53, 54, 55, 58, 66, 78, 83, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 100], "elementwis": [24, 37], "elementwise_funct": [8, 57], "elimin": [17, 24, 70], "elk": [20, 24, 49], "ellips": 62, "ellipsi": [4, 5, 6, 8, 11, 12, 15, 16, 24, 35, 36, 37, 38, 42, 56], "elo": [36, 42, 95], "els": [0, 20, 21, 24, 34, 35, 49, 58, 62], "elsewher": [5, 24, 35, 36, 37, 42, 87, 95], "emit": [24, 35], "emploi": [24, 35], "empti": [3, 5, 19, 20, 21, 22, 24, 27, 34, 35, 37, 40, 48, 49, 53, 75, 87, 89, 90, 92, 97], "empty_lik": 5, "en": [24, 35, 44, 58], "enabl": [3, 18, 24, 30, 37, 47, 63, 75, 76, 78, 84, 99], "enableverbos": [24, 30], "encapsul": [24, 38, 47, 53], "encod": [20, 21, 22, 24, 34, 35, 46, 49, 53, 59, 100], "encoding_benchmark": 59, "encount": [0, 24, 27], "encourag": [76, 77], "end": [3, 5, 16, 17, 20, 24, 29, 31, 35, 37, 38, 48, 53, 55, 61, 83, 88, 89, 93, 96, 100], "endian": [21, 24, 34, 35], "endpoint": [5, 36, 42, 95], "endswith": [17, 24, 53, 83, 88, 100], "enforc": [24, 35], "engin": [24, 35], "enough": [21, 24, 34, 35, 48, 53, 58, 60, 68, 76, 77, 96], "enrich_inplac": 56, "ensur": [0, 3, 20, 24, 27, 35, 40, 54, 62, 68, 75, 77, 90, 94], "enter": [24, 49, 84, 97], "entir": [15, 20, 24, 35, 37, 48, 53, 59, 64, 87, 90, 96], "entiti": [24, 53], "entri": [3, 5, 17, 20, 24, 25, 35, 37, 49, 53, 54, 58, 59, 90], "entropi": 46, "enum": [21, 24, 30, 34, 35, 68], "enumer": [21, 24, 30, 34, 35], "env": [1, 24, 63, 73, 75, 76, 77, 79], "env_nam": 79, "environ": [47, 59, 78, 79], "environmenterror": 47, "ep": [6, 24, 35], "epidemiologi": [36, 42, 95], "epsneg": [24, 35], "eql_kwarg": [24, 54], "equal": [7, 11, 17, 20, 21, 22, 24, 25, 29, 34, 35, 36, 37, 42, 46, 51, 52, 53, 54, 70, 91, 92, 95, 96], "equal_level": [24, 25], "equal_nan": [24, 35], "equiv": [24, 39, 54], "equival": [3, 17, 20, 22, 24, 25, 27, 35, 37, 38, 39, 40, 46, 50, 53, 54, 55, 56, 63, 66, 86, 87, 89, 98], "erm": 59, "err_msg": [24, 54], "error": [17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 31, 34, 35, 37, 38, 46, 48, 49, 51, 53, 55, 68, 70, 80, 84, 87, 88, 90, 91, 92, 94, 99, 100], "errormod": [24, 35, 94], "especi": [0, 17, 20, 24, 64, 75, 77, 88], "essenti": [20, 24, 37, 48, 53, 90, 96], "estim": [20, 22, 24, 37, 46, 87, 90, 91], "etc": [20, 24, 35, 49, 62, 76, 80], "ethan": 0, "euler_gamma": [24, 35], "eval": [73, 75], "evalu": [3, 16, 20, 24, 37, 87, 92], "even": [17, 20, 21, 22, 24, 34, 35, 37, 87, 90, 91, 99], "evenli": [5, 24, 35, 38, 89, 92], "event": [36, 42, 95], "everi": [0, 1, 3, 20, 24, 35, 59, 90, 100], "everyth": [20, 24, 49, 61, 62], "everywher": [24, 35], "evolv": 62, "ewab": [24, 38], "exact": [24, 54, 77], "exactli": [21, 22, 24, 34, 35, 54, 55], "exampl": [0, 3, 4, 8, 17, 18, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 41, 42, 44, 45, 48, 49, 50, 53, 54, 55, 56, 59, 62, 68, 73, 77, 78, 80, 84, 86, 87, 89, 90, 91, 92, 94, 95, 96, 98, 99, 100], "example_featur": 0, "exce": [17, 20, 24, 36, 37, 38, 42, 53, 55, 56, 84, 88, 89, 90, 94, 100], "exceed": [24, 35], "excel": 62, "except": [0, 11, 35, 58, 66, 76, 100], "exchang": 100, "exclud": [3, 22, 24, 40, 78, 91], "exclus": [1, 5, 24, 29, 36, 38, 40, 42, 66, 89, 93, 95, 98], "execut": [1, 18, 23, 24, 27, 37, 53, 58, 60, 61, 63, 64, 67, 75, 76, 78, 88, 99], "exhaust": [66, 68], "exist": [17, 18, 20, 22, 24, 25, 27, 28, 35, 37, 38, 48, 49, 53, 68, 70, 75, 89, 90, 91, 99], "exist_ok": [20, 24], "exit": [73, 80], "exp": [7, 24, 35, 36, 38, 42, 46, 83, 87, 95], "exp1m": [24, 35], "exp_digit": [24, 35], "expand": [11, 17, 20, 24, 25, 27, 37, 48, 53, 56, 84], "expand_dim": 11, "expandus": 47, "expans": 93, "expect": [0, 20, 22, 24, 25, 27, 36, 37, 42, 44, 46, 53, 59, 68, 76, 77, 84, 91, 94, 95], "expens": [17, 24, 35], "experi": [0, 84], "experiment": [24, 53, 100], "explan": [24, 35], "explicit": [68, 94], "explicitli": [1, 20, 24, 40, 78, 98], "explod": 76, "expm1": [7, 24, 35], "expon": [21, 24, 34, 35], "exponenti": [7, 24, 35, 36, 42, 83, 87], "export": [19, 24, 27, 35, 60, 63, 75, 76, 77, 80, 92], "export_uint": [19, 24], "expos": [20, 21, 22, 24, 34, 35, 36, 42, 46, 49, 94, 95], "express": [3, 17, 24, 27, 35, 53, 59, 83, 84, 88, 90, 93, 94], "extend": [24, 35], "extens": [2, 17, 24, 25, 27, 37, 48, 53, 75, 84], "extent": 59, "extra": [20, 24, 49], "extra_info": 59, "extract": 91, "extrem": [36, 42, 66, 68, 70, 95], "ey": [5, 24, 35], "f": [17, 20, 21, 24, 34, 35, 36, 38, 42, 46, 53, 58, 73, 76, 77, 79, 84, 87, 95, 100], "f0": [24, 35], "f1": [24, 35], "f16c": 59, "f2": [24, 35], "f4": [24, 35], "f8": [24, 35], "f_exp": [24, 44], "f_name": 66, "f_ob": [24, 44], "face": [24, 48, 62, 94], "fact": 70, "factori": [24, 25, 53], "fail": [0, 4, 8, 20, 24, 27, 35, 62, 75, 84, 90, 94], "failur": [0, 24, 27, 75, 84], "fall": [0, 11, 56], "fals": [3, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 42, 46, 48, 49, 53, 54, 55, 56, 59, 66, 82, 84, 85, 87, 88, 89, 90, 91, 94, 95, 96, 98, 100], "false_": [24, 35], "famili": 59, "fast": [1, 17, 21, 24, 34, 53], "faster": [3, 17, 24, 35, 40, 63, 88, 98], "featur": [21, 34, 60, 61, 62, 63, 65, 75, 78, 83, 84, 91], "feder": [36, 42, 95], "feed": [24, 35], "feedback": 0, "feel": 0, "fetch": [62, 64], "few": [24, 35, 66], "fewer": [24, 35], "ffffp10": [21, 24, 34, 35], "fide": [36, 42, 95], "field": [19, 21, 24, 34, 35, 38, 53, 62, 84, 100], "fig": 46, "figur": [24, 35, 41, 64], "file": [0, 1, 17, 18, 20, 22, 24, 25, 27, 28, 35, 37, 47, 48, 49, 53, 58, 60, 63, 64, 69, 70, 73, 75, 76, 77, 79, 80, 91, 100], "file_format": [17, 20, 24, 25, 27, 37, 48, 53], "file_typ": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53, 91], "file_vers": 68, "filenam": [17, 20, 22, 24, 25, 27, 37, 48, 53, 59, 84, 91], "filename_cod": [24, 27], "filenotfound": [24, 27], "filetyp": [24, 27, 84], "fill": [5, 20, 21, 22, 24, 34, 35, 36, 37, 38, 42, 49, 59, 82, 89, 91, 95], "fill_val": [24, 51], "fill_valu": [5, 24, 38], "fill_values1": [24, 49], "fill_values2": [24, 49], "fill_values3": [24, 49], "fillna": [24, 49], "fillvalu": [3, 24], "filname_cod": [24, 27], "filter": [0, 20, 23, 24, 48, 84], "filter_by_rang": [20, 24], "filtered_df": [20, 24], "final": [58, 59, 62, 75], "find": [0, 3, 12, 17, 20, 22, 24, 32, 37, 40, 47, 49, 53, 56, 59, 62, 65, 73, 76, 87, 91, 92, 98, 100], "find_loc": [24, 32, 53, 83, 100], "find_match": [31, 83, 100], "findal": [24, 32, 53, 83, 100], "fine": 58, "finfo": [6, 24, 35], "finfo_object": 6, "finit": [7, 16, 21, 24, 34, 35], "firewal": 80, "first": [0, 3, 4, 8, 11, 12, 13, 15, 20, 21, 22, 24, 25, 27, 28, 34, 35, 37, 38, 39, 46, 49, 53, 54, 56, 60, 64, 65, 66, 67, 68, 73, 75, 76, 78, 83, 84, 87, 89, 90, 91, 92, 97, 100], "fit": [0, 21, 24, 34, 35, 46, 59, 62, 84], "five": [3, 24, 35, 40, 53, 89, 100], "fix": [0, 24, 35, 36, 42, 46, 55, 62, 80, 95, 100], "fixed_len": [24, 27, 84], "flag": [19, 21, 24, 27, 34, 35, 41, 59, 64, 78, 84, 99], "flake8": [0, 79], "flat": [21, 24, 34, 35, 53, 100], "flatten": [11, 12, 21, 24, 29, 34, 35, 37, 39, 48, 53, 83, 96], "flexibl": [24, 35, 68], "flip": [11, 24, 35], "float": [3, 5, 6, 7, 15, 18, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 46, 52, 54, 56, 84, 87, 89, 90, 91, 92, 94, 95], "float128": [24, 35], "float16": [21, 24, 34, 35], "float16dtyp": [24, 35], "float32": [21, 24, 34, 35, 36, 42, 92], "float32dtyp": [24, 35], "float64": [5, 20, 21, 22, 24, 25, 34, 35, 36, 37, 38, 40, 42, 44, 45, 50, 54, 58, 59, 67, 68, 82, 86, 87, 89, 90, 91, 92, 94, 98], "float64dtyp": [24, 35], "float_": [21, 24, 34, 35], "float_scalar": [21, 24, 34, 35, 36, 37, 38, 42], "floor": [7, 24, 35, 37], "floor_divid": [7, 24, 37], "floordivis": [24, 37], "fluid": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 91], "flush": [24, 35], "flush_l1d": 59, "fma": 59, "fmod": [24, 37], "fname": 66, "focus": 63, "folder": 75, "folk": 1, "follow": [0, 1, 3, 18, 21, 24, 34, 35, 44, 58, 59, 60, 62, 73, 75, 76, 77, 78, 79, 80, 81, 87, 88, 91, 94, 96, 98, 99, 100], "foo": [0, 2, 24], "foo_test": 0, "foobar": [24, 35], "foopar": 0, "forc": [21, 24, 34, 35, 88, 90, 94, 100], "forget": [64, 80], "fork": [0, 75, 76, 77, 81], "form": [17, 21, 24, 25, 34, 35, 37, 46, 47, 48, 53, 62, 78, 100], "format": [4, 8, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 34, 35, 37, 47, 48, 49, 53, 58, 66, 68, 69, 70, 78, 90, 96, 99, 100], "format_float_posit": [24, 35], "format_float_scientif": [24, 35], "format_oth": [24, 37], "format_pars": [24, 35], "former": [24, 37, 53, 100], "fortran": 94, "forward": [24, 50, 80, 86, 96], "found": [1, 3, 12, 20, 21, 24, 25, 27, 34, 35, 37, 40, 53, 59, 66, 70, 76, 78, 80], "four": [3, 24, 40, 46, 53, 55, 89, 100], "fp": [24, 38], "fpu": 59, "frac": [20, 22, 24, 36, 42, 46, 91, 95], "fraction": [20, 22, 24, 35, 52, 91], "frame": [20, 24, 49, 90, 97], "frameon": 46, "free": [24, 37, 53], "freedom": [15, 22, 24, 37, 44, 46, 87, 91, 92], "freeman": [24, 44], "freez": 46, "freq": [24, 55], "frequenc": [1, 24, 44, 55], "frequent": [24, 49, 78, 97], "friendli": [20, 24, 49], "from": [0, 3, 4, 5, 8, 9, 11, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 34, 35, 36, 37, 38, 39, 41, 42, 44, 45, 46, 48, 49, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 73, 75, 76, 78, 80, 82, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 99, 100], "from_": 6, "from_cod": [17, 24, 83, 88], "from_dlpack": 5, "from_multi_arrai": [24, 48], "from_panda": [20, 24], "from_part": [24, 48, 53], "from_return_msg": [17, 19, 20, 22, 24, 25, 48, 49, 53], "from_seri": [24, 38], "fromencod": [24, 53], "fromhex": [21, 24, 34, 35], "fromkei": [21, 24, 34, 35], "fromright": [24, 53, 100], "front": [24, 35], "frontend": 75, "frozen": 46, "frozenset": [21, 22, 24, 34, 35], "frustrat": 64, "fsgsbase": 59, "fsspec": [20, 24, 49], "ftp": [24, 35], "full": [5, 17, 24, 31, 35, 38, 41, 46, 53, 55, 61, 63, 73, 77, 81, 88, 100], "full_lik": [5, 24, 38], "full_match_bool": 32, "full_match_ind": 32, "fullmatch": [24, 53, 83, 100], "fullnam": 59, "func": [24, 35, 46], "funcion": 78, "functioanl": 96, "function": [0, 1, 8, 17, 46, 49, 53, 59, 62, 63, 66, 67, 69, 70, 73, 78, 83, 84, 85, 88, 90, 91, 92, 94, 95, 96, 97, 98, 100], "furo": 79, "further": [76, 77, 81], "futur": [1, 19, 24, 27, 36, 42, 53, 84, 92], "fxsr": 59, "g": [2, 17, 19, 20, 21, 22, 24, 27, 34, 35, 37, 48, 49, 53, 55, 56, 63, 64, 66, 84, 87, 88, 89, 91, 96, 99, 100], "gain": [58, 62], "gamma": 46, "gap": [24, 35], "gasnet": [64, 65, 76, 77], "gasnet_masterip": 60, "gasnet_quiet": 60, "gasnet_route_output": 60, "gasnet_spawnfn": 60, "gasnet_workerip": 60, "gasnetsetup": 60, "gather": [59, 83], "gaussian": [36, 42, 95], "gawk": 76, "gb": [18, 20, 24, 25, 49, 56, 80], "gb_key_nam": [20, 24], "gc": [20, 24, 49], "gcc": [59, 76], "gen_rang": [24, 29], "gener": [17, 18, 20, 21, 22, 23, 24, 29, 30, 34, 35, 36, 37, 38, 41, 42, 44, 46, 47, 49, 55, 57, 58, 59, 63, 64, 66, 67, 68, 70, 75, 76, 80, 82, 83, 84, 87, 89, 91, 95, 97], "generate_histori": 18, "generate_token": 47, "generate_username_token_json": 47, "generic_concat": [24, 56], "generic_mo": 46, "generic_msg": [58, 78], "gentyp": [21, 24, 34, 35], "genuineintel": 59, "get": [4, 7, 8, 9, 18, 20, 21, 23, 24, 27, 34, 35, 48, 49, 59, 62, 63, 64, 80, 84, 94, 96], "get_arkouda_client_directori": 47, "get_byt": [24, 53], "get_byteord": [21, 24, 34, 35], "get_callback": [24, 56], "get_column": [24, 27, 67, 71], "get_config": [0, 18], "get_dataset": [24, 27, 67, 71, 84], "get_directori": 28, "get_filetyp": [24, 27], "get_home_directori": 47, "get_jth": [24, 48, 83, 96], "get_length": [24, 53], "get_length_n": [24, 48, 83, 96], "get_level_valu": [24, 25], "get_match": 32, "get_max_array_rank": 18, "get_mem_avail": 18, "get_mem_statu": 18, "get_mem_us": 18, "get_ngram": [24, 48, 83, 96], "get_null_indic": [24, 27], "get_offset": [24, 53], "get_prefix": [24, 48, 53, 83, 96], "get_server_byteord": [21, 24, 34, 35], "get_server_command": 18, "get_suffix": [24, 48, 53, 83, 96], "get_usernam": 47, "getarkoudalogg": 24, "getcwd": [20, 24], "getdefaultencod": [20, 21, 22, 24, 34, 35, 46, 49], "getfield": [21, 24, 34, 35], "getmandatoryreleas": [21, 34], "getmodulenam": 78, "getoptionalreleas": [21, 34], "getter": [24, 53], "getvalu": [24, 35], "gfile": [24, 35], "ghi": 67, "ghpage": 75, "ghz": 59, "gib": 59, "git": [0, 64, 76, 77], "github": [0, 24, 44, 62, 64, 75, 76, 77, 81], "gitk": 62, "give": [24, 35, 37, 49, 67, 75, 79, 97, 99], "given": [3, 5, 12, 15, 16, 17, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 40, 42, 46, 49, 53, 55, 56, 59, 79, 84, 88, 89, 90, 91, 95, 100], "glob": [24, 27, 84], "global": [4, 8], "gmp": 77, "gnu": [61, 80], "go": [22, 24, 62, 64, 76, 80, 89], "goal": 4, "good": [0, 62, 64], "googl": [24, 35, 100], "got": 64, "gottfri": [31, 100], "gpu": [24, 37], "grab": [24, 35], "gradient": [24, 35], "gram": [24, 48, 96], "graph": [24, 41, 91], "graphic": 62, "greater": [7, 24, 36, 38, 42, 89, 95], "greater_equ": 7, "greatli": [17, 24, 40, 49, 89], "green": [24, 25, 62], "grep": [75, 80], "grid": [20, 24, 41, 49], "group": [1, 6, 17, 20, 22, 24, 31, 48, 49, 50, 53, 59, 66, 68, 83, 86, 88, 90, 91, 97, 98, 100], "group_ani": [22, 24, 91], "group_argmaxima": [22, 24, 91], "group_argminima": [22, 24, 91], "group_maxima": [22, 24, 91], "group_mean": [22, 24, 91], "group_median": [22, 24, 91], "group_minima": [22, 24, 91], "group_num": [31, 100], "group_nuniqu": [22, 24, 91], "group_product": [22, 24, 91], "group_std": [22, 24, 91], "group_sum": [22, 24, 91], "group_var": [22, 24, 91], "groupabl": [22, 24, 40, 91, 98], "groupable_element_typ": [22, 24, 49, 97], "groupbi": [17, 20, 22, 24, 27, 48, 53, 56, 83, 88, 100], "groupby_reduction_typ": [22, 24], "groupbyclass": [20, 24, 40, 57, 90, 98], "grow": [24, 37, 87], "guarante": [17, 24, 50, 53, 86, 95, 100], "guid": [58, 73, 75, 76, 77], "guidelin": [62, 100], "guido": [24, 35], "gumbel": [36, 42, 95], "gz": [73, 75, 76, 77], "gzip": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70], "h": [21, 24, 34, 35, 41, 55, 82, 92, 99], "h5": [24, 27, 37, 84], "h5l": [24, 27], "h5py": [79, 84], "ha": [0, 4, 8, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 48, 49, 53, 55, 56, 58, 60, 62, 63, 67, 68, 78, 84, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97], "half": [3, 5, 21, 24, 34, 35, 36, 42, 95], "hand": [3, 24, 52, 62, 93], "handl": [17, 18, 20, 24, 35, 53, 58, 69, 84, 88, 90, 94, 100], "handled_funct": 4, "handler": [20, 21, 22, 24, 34, 35, 46, 49], "happen": [58, 62], "has_non_float_nul": [24, 27, 84], "has_repeat_label": [24, 49], "hash": [17, 24, 35, 48, 50, 53, 86], "hasnan": [24, 49], "have": [0, 1, 3, 4, 8, 11, 17, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 48, 49, 53, 54, 55, 56, 58, 60, 61, 62, 63, 64, 66, 67, 68, 70, 75, 76, 77, 78, 79, 84, 87, 88, 89, 90, 91, 94, 95, 96, 97], "hd15iqr": 59, "hdf5": [1, 17, 20, 22, 24, 25, 27, 37, 48, 53, 67, 69, 70, 71, 75, 79, 84, 91, 100], "hdf5_output": [20, 24], "hdf_output": [20, 24], "head": [20, 22, 24, 49, 62, 83, 91], "header": [20, 24, 25, 27, 37, 53, 84], "healthcheck": 18, "heavi": [24, 38], "hei": 62, "hello": [24, 35, 53, 84, 100], "hello3": 77, "help": [0, 19, 24, 78], "helper": [19, 24, 56], "henc": [24, 35], "here": [1, 24, 35, 53, 56, 59, 60, 63, 64, 65, 66, 68, 70, 75, 76, 77, 78, 79, 80, 81, 99], "heroic": 61, "hex": [21, 24, 34, 35], "hexadecim": [21, 24, 34, 35], "hexidecim": 47, "hf": [24, 38], "hff": [24, 38], "hfmd": [24, 38], "hi": [24, 35], "hide": [24, 35], "hierarch": [3, 24], "hierarchi": [24, 35], "high": [3, 19, 20, 24, 35, 36, 37, 38, 42, 66, 89, 95], "higher": [24, 35], "highest": [20, 24, 35, 37, 38], "highli": 76, "highlight": [1, 62, 66], "hist": [24, 35, 46], "hist_al": [24, 41], "hist_fil": 23, "histogram": [24, 35, 41, 46, 83], "histogram2d": [24, 35, 92], "histogramdd": [24, 35], "histor": [24, 35], "histori": [0, 18, 24, 57, 62], "historyaccessor": 23, "historyretriev": 23, "histtyp": 46, "hit": 63, "hog": 64, "hold": [24, 35, 46, 94], "hole": [24, 49], "home": [24, 35, 47, 75, 78], "homebrew": [63, 75], "homepag": 75, "homogen": [20, 24, 90], "hong_kong": [24, 55], "horizont": [24, 48, 49, 96, 97], "host": [18, 20, 24, 47, 49, 75], "hostnam": [1, 17, 18, 20, 24, 27, 37, 48, 53, 63, 73, 82, 99], "hour": [24, 55], "hous": 80, "how": [0, 4, 8, 17, 19, 20, 24, 25, 27, 35, 37, 48, 53, 58, 59, 62, 67, 79, 91, 94], "howev": [22, 24, 35, 37, 68, 75, 79, 80, 87, 88, 91], "ht": 59, "html": [11, 20, 24, 35, 44, 49, 56, 58, 75], "htop": 80, "http": [0, 11, 20, 24, 35, 44, 49, 56, 58, 76, 77], "human": [17, 24, 26, 37, 53], "hundr": 84, "hyperbol": [7, 24, 35], "hyperlink": 62, "hypervisor": 59, "hypothet": [22, 24, 29, 37, 87, 91], "hz_actual": 59, "hz_actual_friendli": 59, "hz_advertis": 59, "hz_advertised_friendli": 59, "i": [0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99], "i2": [24, 25, 35], "i4": [24, 35], "i7": 59, "i_cpi": [24, 25], "iat": [24, 49], "ibpb": 59, "ibr": 59, "ibv": 60, "iconv": [1, 75, 79], "id": [18, 59, 80, 91], "idea": [0, 62, 64, 67, 84], "ideal": [0, 62], "ident": [20, 21, 24, 34, 35, 36, 42, 46, 54, 56, 87, 94, 95], "identif": [24, 30], "identifi": [0, 3, 17, 24, 27, 35, 37, 51, 94], "idn2": [1, 75, 79], "idna": 59, "idx": [3, 20, 22, 24, 25, 66, 91], "idx1": 56, "idx2": [22, 24, 56, 91], "ie": [24, 38], "ieee": [24, 35, 90, 94], "ieeestd": [24, 35], "iexp": [24, 35], "iff": [3, 17, 24, 25, 37, 49, 53, 55, 87, 92], "ignor": [11, 14, 20, 21, 22, 24, 27, 34, 35, 54, 55, 84, 90, 94], "ignore_index": [20, 24], "ii16": [24, 35], "ii32": [24, 35], "iinfo": [6, 24, 35], "iinfo_object": 6, "iloc": [24, 49, 54], "imag": [7, 21, 24, 34, 35], "imagin": 91, "imaginari": [7, 21, 24, 34, 35], "imit": [24, 27], "immun": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 91], "immut": [21, 22, 24, 34, 35], "imnotok": 18, "imok": 18, "impact": [17, 22, 24, 25, 27, 35, 37, 48, 61, 62, 64, 84, 91], "implement": [0, 4, 5, 7, 10, 17, 18, 19, 20, 21, 23, 24, 34, 35, 36, 37, 40, 42, 46, 47, 48, 49, 53, 58, 67, 73, 87, 89, 99, 100], "implements_numpi": 4, "impli": [3, 24, 54, 93], "implicit": 94, "import": [17, 19, 20, 24, 25, 27, 35, 37, 41, 44, 45, 46, 47, 49, 53, 54, 56, 58, 62, 68, 73, 75, 78, 90, 92, 99], "import_data": [24, 27, 69, 84], "importerror": [24, 37], "impos": [24, 55], "improv": [17, 24, 40, 49, 62, 63, 78, 89], "in1d": [17, 24, 40, 58, 66, 83, 88, 98, 100], "in1d_interv": [3, 24], "inaccess": [17, 20, 24, 25, 27, 37, 48, 53], "inadvert": [19, 24], "inappropri": [3, 24], "includ": [0, 1, 3, 15, 20, 22, 24, 25, 26, 27, 35, 37, 49, 53, 55, 59, 62, 67, 68, 73, 75, 76, 78, 84, 87, 90, 91, 94, 96], "include_initi": 15, "includedelimit": [24, 53, 100], "inclus": [3, 5, 20, 24, 35, 36, 37, 38, 42, 55, 87, 89, 93, 95], "incompat": [24, 35, 76], "incorpor": 94, "increas": [24, 48, 75, 80, 96], "increment": [61, 62], "ind": 93, "independ": [24, 27, 36, 42, 47, 84, 95], "index": [2, 3, 4, 5, 8, 12, 17, 19, 20, 21, 22, 24, 27, 29, 31, 34, 35, 37, 38, 40, 48, 49, 53, 54, 56, 57, 59, 66, 75, 82, 83, 84, 87, 88, 89, 91, 92, 96, 97, 100], "index_label": [24, 49], "index_s": [59, 82], "index_valu": [24, 54], "indexerror": [24, 49], "indexing_funct": [8, 57], "indexof1d": [24, 40], "indic": [0, 3, 4, 6, 8, 9, 12, 13, 14, 17, 18, 19, 20, 22, 24, 25, 27, 29, 31, 32, 35, 37, 39, 40, 48, 49, 50, 53, 55, 56, 66, 68, 86, 87, 88, 90, 91, 92, 93, 94, 96, 97, 98, 100], "indici": [31, 100], "individu": [24, 43, 60, 100], "inds2": 56, "ineffiec": 70, "inexact": [24, 35], "inf": [24, 35], "infer": [5, 17, 20, 21, 22, 24, 25, 27, 34, 35, 37, 38, 53, 68, 84], "inferred_typ": [17, 24, 25, 37, 53, 54], "infin": [21, 24, 34, 35], "infinit": [7, 22, 24, 35, 37, 87, 91], "info": [0, 1, 17, 20, 24, 26, 30, 37, 53], "infoclass": [24, 57], "inform": [0, 1, 4, 7, 8, 17, 18, 22, 24, 26, 35, 36, 37, 42, 53, 59, 62, 63, 64, 66, 67, 68, 70, 71, 73, 75, 76, 77, 78, 79, 88, 95, 96, 98, 100], "infrastructur": [1, 58], "infti": [24, 35], "ing": [24, 53, 100], "ingest": [84, 100], "inherit": [22, 24, 46, 91, 94], "ini": [0, 59], "init": [22, 24, 77, 91], "initi": [5, 15, 17, 18, 21, 24, 34, 35, 36, 37, 38, 42, 51, 59, 77, 82, 88, 89, 94, 95, 99], "initialdata": [20, 24, 90], "inner": [4, 8, 16, 20, 24, 29], "inplac": [20, 24, 90], "input": [5, 11, 12, 15, 17, 19, 20, 21, 22, 24, 25, 34, 35, 37, 38, 39, 40, 48, 49, 50, 53, 54, 55, 56, 58, 62, 84, 86, 87, 88, 91, 94, 97, 98, 100], "insensit": [24, 25, 37, 53, 59], "insert": [11, 12, 21, 24, 34, 35, 53, 58, 100], "insid": [24, 35], "inspect": [78, 84], "inst": [21, 24, 34, 35], "instal": [1, 24, 27, 37, 63, 80, 99], "instanc": [17, 19, 20, 21, 22, 24, 34, 35, 37, 38, 46, 49, 51, 53, 59, 70, 75, 78, 84, 87, 90, 91, 92, 94, 100], "instanti": [21, 24, 34, 35, 58], "instantiateandregist": 58, "instead": [17, 19, 20, 22, 24, 27, 35, 36, 37, 42, 53, 59, 82, 84, 87, 88, 91, 95, 100], "instruct": [1, 24, 53, 73, 75, 76, 77, 79, 80, 81, 99], "insuffici": [24, 35], "int": [3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 31, 32, 34, 35, 36, 37, 38, 39, 42, 44, 46, 47, 48, 49, 51, 52, 53, 55, 56, 58, 68, 84, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "int16": [21, 24, 34, 35, 36, 42, 92], "int16dtyp": [24, 35], "int32": [21, 24, 34, 35, 36, 42, 92], "int32dtyp": [24, 35], "int64": [3, 17, 19, 20, 21, 22, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 40, 42, 48, 50, 52, 53, 54, 55, 58, 59, 66, 67, 68, 82, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 98, 100], "int64dtyp": [24, 35], "int8": [21, 24, 34, 35, 36, 42, 92], "int8dtyp": [24, 35], "int_": [21, 24, 34, 35], "int_scalar": [17, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 48, 50, 51, 53, 55, 87, 89, 91, 92, 94], "int_typ": [24, 35], "intc": [21, 24, 34, 35], "intdtyp": [24, 35], "integ": [1, 4, 8, 9, 11, 17, 19, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 39, 42, 46, 54, 55, 68, 83, 87, 88, 89, 90, 91, 94, 96, 98, 100], "integr": [0, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 62, 84, 89, 91], "intel": 59, "intend": [0, 17, 19, 20, 24, 35, 37, 48, 53, 54, 67, 73, 76, 77, 85, 90, 97], "intens": [24, 50, 66, 86, 89], "intention": [21, 34], "interact": [63, 67, 71, 72, 73, 77, 79], "interest": 66, "interfac": [0, 62], "interleav": [17, 20, 24, 40, 49, 89], "intermedi": [3, 24], "intern": [1, 4, 8, 21, 24, 29, 34, 35, 37, 53, 54, 58, 62], "interoper": 0, "interpret": [18, 20, 21, 24, 27, 34, 35, 46, 59, 84, 99], "intersect": [20, 21, 22, 24, 34, 35, 40, 48, 66, 83, 98], "intersect1d": [17, 24, 40, 48, 58, 66, 83, 96, 98], "intersect_df": [20, 24], "interv": [3, 5, 24, 35, 36, 38, 42, 46, 55, 89, 92, 95], "interval_lookup": [3, 24], "intp": [21, 24, 34, 35], "intptr_t": [21, 24, 34, 35], "introduc": 11, "introduct": 66, "inttyp": [21, 24, 34, 35], "intx": [20, 24], "inv": [36, 42, 95], "invalid": [24, 27, 84], "invari": 1, "invers": [13, 20, 24, 35, 36, 42, 46, 56, 90, 95], "inverse_indic": 13, "invert": [22, 24, 40, 98], "invert_permut": [20, 24, 56], "invok": [24, 36, 38, 42, 75], "involv": [4, 8, 63, 81], "invpcid": 59, "invpcid_singl": 59, "io": [24, 35, 57, 58, 59, 69, 70, 71], "io_compress": 59, "io_files_per_loc": 59, "io_only_delet": 59, "io_only_read": 59, "io_only_writ": 59, "io_path": 59, "io_util": [24, 57], "ior": [24, 53, 100], "ip": [19, 24], "ip2": [19, 24], "ip_address": [19, 24, 25, 85], "ipaddress": [19, 24], "ipv4": [19, 24, 27], "ipv6": [19, 24], "ipython": [18, 23, 73], "iqr": 59, "iqr_outli": 59, "is_cosort": [3, 24], "is_float": 56, "is_int": 56, "is_integ": [21, 24, 34, 35], "is_ipv4": [19, 24], "is_ipv6": [19, 24], "is_leap_year": [24, 55], "is_numer": 56, "is_regist": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 56, 83, 91], "is_sort": [24, 37, 83, 87, 92], "isaac": [31, 100], "isalnum": [24, 53], "isalpha": [24, 53], "isbool": 68, "isdecim": [24, 53], "isdigit": [24, 53], "isdisjoint": [21, 22, 24, 34, 35], "isdtyp": 6, "isempti": [24, 53], "isf": 46, "isfinit": [7, 24, 35], "isin": [20, 24, 49], "isinf": [7, 24, 35], "isinst": [17, 24, 35, 38, 58], "islow": [24, 53], "isn": [24, 35, 64], "isna": [17, 20, 24, 49], "isnan": [7, 24, 35], "isnul": [24, 49], "iso": [24, 35], "isocalendar": [24, 55], "isort": [0, 79], "isscalar": [24, 35], "issctyp": [24, 35], "isspac": [24, 53], "issu": [17, 20, 22, 24, 35, 58, 62, 75, 80, 91, 96], "issubclass": [24, 35], "issubclass_": [24, 35], "issubdtyp": [24, 35], "issubsctyp": [24, 35], "issubset": [21, 22, 24, 34, 35], "issuperset": [21, 22, 24, 34, 35], "issupportedfloat": [21, 24, 34, 35], "issupportedint": [21, 24, 34, 35], "issupportednumb": [21, 24, 34, 35], "istitl": [24, 53], "isupp": [24, 53], "item": [3, 4, 8, 17, 20, 21, 22, 24, 34, 35, 37, 38, 40, 49, 54, 56, 88, 90, 91, 97, 98], "items": [21, 24, 34, 35, 37, 38, 51, 53, 83, 84, 94], "itemset": [21, 24, 34, 35], "iter": [20, 21, 22, 24, 27, 34, 35, 38, 50, 54, 59, 83, 84, 86], "iter1": [24, 54], "iter2": [24, 54], "ith": [17, 24, 48, 53], "its": [3, 7, 17, 21, 24, 25, 34, 35, 37, 40, 48, 49, 53, 58, 62, 68, 77, 87, 94, 96, 97, 100], "itself": [24, 35, 36, 37, 42, 53, 54, 62, 95, 100], "j": [24, 48, 60, 61, 76, 77, 96], "j16": 61, "jake": 66, "jane": 66, "john": 66, "join": [20, 24, 48, 53, 57, 83], "join_on_eq_with_dt": [24, 29], "json": [17, 18, 24, 26, 37, 47, 53, 58, 79], "judici": [24, 35], "jupyt": [18, 23, 73, 79], "just": [24, 35, 63, 64, 94, 95], "k": [5, 21, 24, 34, 35, 36, 37, 42, 46, 59, 87, 92, 95], "kb": [18, 20, 24, 25, 49, 56], "keep": [0, 3, 12, 15, 16, 20, 22, 24, 35, 66, 77, 80, 84, 90, 91], "keepdim": [12, 15, 16], "keepparti": [24, 53, 100], "kei": [3, 17, 20, 21, 22, 24, 25, 26, 27, 28, 34, 35, 40, 49, 54, 66, 68, 78, 80, 85, 90, 91, 97, 98], "kept": [20, 22, 24, 35, 48, 90, 91], "kextrememsg": 78, "key_": 68, "keyerror": [21, 24, 34, 35, 49], "keyfil": 1, "keynam": 56, "keys1": [3, 24], "keys2": [3, 24], "keyword": [0, 16, 17, 20, 21, 24, 34, 35, 36, 42, 46, 48, 49, 54, 89, 95, 97], "kind": [6, 21, 24, 34, 35, 39], "kitwar": 76, "know": [4, 8, 63, 73], "known": [0, 24, 27, 35, 84], "kurt": 46, "kurtosi": 46, "kwarg": [16, 17, 20, 21, 22, 24, 34, 35, 38, 43, 46, 49, 54, 55, 56, 88, 89, 91], "kwd": 46, "kwoqnphz": [24, 38], "l": [4, 8, 21, 24, 27, 34, 35, 55, 60, 62, 66, 67, 75, 84], "l1_data_cache_s": 59, "l1_instruction_cache_s": 59, "l2_cache_associ": 59, "l2_cache_line_s": 59, "l2_cache_s": 59, "l3_cache_s": 59, "l_name": 66, "label": [0, 17, 20, 22, 24, 25, 41, 46, 49, 54, 88, 90, 91, 97], "lack": [21, 24, 34, 35], "lahf_lm": 59, "laid": 0, "lam": [36, 42, 95], "lambda": [20, 24, 36, 42, 44, 95], "lambda_": [24, 44], "lang": 76, "larg": [4, 8, 17, 21, 24, 34, 35, 36, 42, 59, 75, 87, 95], "larger": [17, 20, 22, 24, 35, 37, 38, 53, 62, 66, 84, 88, 91, 94, 100], "largest": [24, 35, 36, 37, 42, 49, 87, 95, 97], "last": [11, 12, 16, 20, 21, 22, 24, 34, 35, 37, 38, 49, 50, 53, 54, 62, 78, 86, 90, 91, 97, 99, 100], "later": [20, 24, 35, 37, 53, 79], "latest": [11, 24, 56, 58, 73, 76, 77, 80], "latter": [18, 100], "launch": [58, 80, 83], "layer": 84, "layout": [24, 51, 52], "lb": 46, "ld15iqr": 59, "ld_library_path": 1, "lead": [24, 35, 37, 53], "learn": [24, 55, 58, 73], "least": [0, 19, 20, 21, 22, 24, 34, 35, 37, 48, 50, 53, 86, 91, 96], "leav": [0, 24, 35, 92], "left": [0, 3, 7, 12, 19, 20, 24, 35, 37, 46, 50, 52, 53, 54, 55, 86, 92, 100], "left_align": [3, 24], "left_df": [20, 24], "left_suffix": [20, 24], "legend": 46, "leibniz": [31, 100], "len": [22, 24, 37, 48, 53, 87, 91, 93, 96, 100], "len_suffix": [24, 48], "length": [0, 3, 11, 17, 20, 21, 22, 24, 25, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 42, 47, 48, 49, 53, 59, 82, 84, 87, 89, 91, 96, 97, 98, 100], "length_or_data": [24, 35], "less": [7, 17, 20, 22, 24, 25, 35, 36, 37, 42, 48, 53, 91, 95], "less_equ": 7, "lesser": 59, "let": 66, "letter": [24, 53], "level": [1, 24, 25, 30, 35, 40, 49, 54, 58, 59, 63, 67, 68, 75, 76, 77, 78, 81, 84, 97, 98], "levelnam": 24, "leverag": [61, 76], "lexicograph": [24, 50, 62, 86], "lhdf5": 1, "lhdf5_hl": 1, "lib": [1, 75, 80, 98], "libiconv": 79, "libidn2": 79, "librari": [0, 1, 58, 75, 80, 100], "libtic": 80, "libtinfow": 80, "licens": 76, "liconv": 1, "lidn2": 1, "lie": [17, 24, 35, 53], "life": [77, 79], "lifo": [21, 24, 34, 35], "like": [0, 2, 3, 4, 8, 19, 20, 21, 22, 24, 34, 35, 36, 42, 55, 58, 60, 62, 63, 64, 66, 69, 73, 75, 78, 80, 84, 85, 90, 91, 93, 95, 97, 99, 100], "likelihood": [22, 24, 37, 44, 87, 91], "lim": 93, "limit": [0, 4, 16, 17, 24, 29, 35, 36, 37, 38, 42, 53, 55, 67, 70, 73, 80, 84, 88, 90, 94, 95, 100], "linalg": [8, 57], "line": [0, 24, 28, 35, 63, 67, 73, 78, 99], "linear": [24, 35, 100], "linearli": [24, 38, 55, 89], "linefe": [24, 35], "lineno": 24, "link": [0, 1, 24, 27, 55, 62, 75, 76], "linkifi": 79, "linspac": [5, 22, 24, 35, 38, 46, 83, 87, 89, 91, 94], "linter": 0, "linux": [21, 24, 34, 35, 47, 59, 75, 80, 81], "linux64": 76, "list": [0, 3, 4, 5, 8, 11, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 34, 35, 37, 38, 39, 40, 41, 46, 48, 49, 51, 53, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 71, 73, 78, 81, 84, 89, 90, 91, 92, 93, 94, 96, 97, 98, 100], "list_registri": [24, 26, 37], "list_symbol_t": [24, 26], "listen": [73, 99], "liter": [12, 21, 24, 34, 35, 39, 46, 88, 100], "littl": [21, 24, 34, 35], "live": [76, 77], "ll": [63, 64, 75], "llvm": [76, 77, 80], "lm": 59, "ln": [36, 42, 80, 95], "lname": 66, "lo": [24, 35], "load": [17, 20, 24, 25, 27, 37, 48, 53, 67, 68, 70, 71, 80, 84], "load_al": [17, 20, 24, 25, 27, 37, 53, 71], "loc": [24, 36, 42, 46, 49, 95], "local": [0, 1, 4, 8, 17, 18, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 55, 56, 59, 60, 68, 73, 75, 76, 77, 84, 89, 91, 97, 99], "locale_hostnam": 18, "locale_id": 18, "localhost": [18, 73, 99], "locat": [1, 12, 22, 24, 25, 35, 36, 37, 42, 46, 47, 49, 53, 59, 62, 64, 75, 80, 87, 91, 95, 97, 100], "locationsinfo": 32, "log": [1, 7, 22, 24, 30, 35, 36, 38, 41, 42, 44, 45, 46, 53, 83, 87, 91, 95], "log10": [7, 24, 35], "log1p": [7, 24, 35], "log2": [7, 24, 35], "log_lvl": [24, 30], "log_msg": [24, 30], "logaddexp": 7, "logarithm": [7, 24, 35, 36, 42, 87, 95], "logcdf": 46, "logformat": 24, "logger": [17, 22, 24, 32, 48, 53, 57, 83, 91], "logic": [3, 7, 17, 24, 35, 36, 38, 42, 48, 53, 83, 89, 92, 96], "logical_and": 7, "logical_not": 7, "logical_or": 7, "logical_xor": 7, "logist": [36, 42, 83], "loglevel": [24, 30], "logmean": [24, 38], "lognorm": [24, 36, 38, 42, 83], "logpdf": 46, "logsf": 46, "logstd": [24, 38], "long": [21, 24, 34, 35, 48, 53, 64, 96], "longcomplex": [24, 35], "longdoubl": [24, 35], "longdoubledtyp": [24, 35], "longdtyp": [24, 35], "longer": [20, 24, 38, 68, 79, 90], "longfloat": [24, 35], "longlong": [24, 35], "longlongdtyp": [24, 35], "longnam": 46, "look": [0, 1, 24, 35, 58, 62, 63, 66, 78, 80, 84, 99], "lookahead": [17, 24, 53, 88, 100], "lookbehind": [17, 24, 53, 88, 100], "lookup": [3, 24, 25, 49], "loop": 1, "loos": 62, "lose": [24, 35], "loss": 96, "lot": 59, "love": 0, "low": [3, 19, 20, 24, 35, 36, 37, 38, 42, 66, 84, 89, 95], "lower": [5, 20, 24, 35, 36, 42, 53, 58, 68, 90, 95], "lower_bounds_inclus": [3, 24], "lowercamelcas": 0, "lowercas": [24, 38, 53], "lowest": [3, 20, 24, 36, 37, 38, 42, 95], "ls_csv": [24, 27, 67, 71], "lst": [24, 49], "lstick": [24, 53, 83, 100], "lt": 80, "ludmmgtb": [24, 38], "lw": 46, "lz": [24, 37], "lz4": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70], "lzmq": 1, "m": [0, 21, 24, 25, 31, 34, 35, 46, 48, 55, 59, 75, 80, 100], "m1": 66, "m2": [24, 25, 66], "m4": 76, "mac": [75, 77], "machep": [24, 35], "machin": [18, 24, 35, 59, 60, 63, 76, 77, 99], "machine_info": 59, "maco": [47, 76, 81], "macosx": 77, "made": [19, 20, 21, 24, 34, 35, 53, 100], "mai": [17, 20, 24, 25, 27, 35, 36, 37, 38, 39, 40, 42, 49, 53, 54, 58, 66, 68, 75, 77, 79, 80, 84, 88, 89, 90, 94, 100], "main": [5, 24, 35, 59, 62, 68], "mainli": 1, "maintain": [12, 24, 25, 27, 48, 69, 84], "major": [62, 67, 85, 90, 97], "make": [0, 1, 11, 17, 19, 20, 24, 27, 35, 36, 42, 46, 49, 55, 58, 59, 60, 61, 62, 64, 73, 75, 76, 77, 78, 80, 88, 90, 95], "makebinari": 61, "makefil": [73, 75], "malform": [24, 38, 84], "manag": [75, 76, 77, 79, 81], "mandatori": [21, 34], "mani": [3, 17, 20, 24, 35, 59, 88, 91], "manipul": 0, "manipulation_funct": [8, 57], "manner": [36, 42], "mantissa": [21, 24, 34, 35], "manual": [24, 35, 58, 77, 79], "map": [3, 17, 18, 19, 20, 21, 24, 25, 27, 28, 34, 35, 36, 42, 49, 53, 56, 90, 95, 100], "mapper": [20, 24, 90], "mark": 68, "markdown": [0, 20, 24, 49], "mask": [20, 24, 35, 48, 49, 53, 96], "mass": [36, 42, 95], "master": [0, 62, 75], "match": [1, 5, 11, 17, 20, 22, 24, 25, 27, 32, 35, 37, 38, 48, 49, 53, 54, 55, 56, 57, 59, 83, 84, 87, 89, 91, 94, 97, 99], "match_bool": 32, "match_ind": 32, "match_typ": [31, 32, 83, 100], "matcher": [24, 57], "matchtyp": [31, 32, 100], "math": [31, 100], "mathemat": 87, "mathjax": 79, "matlab": 93, "matmul": [10, 24, 35], "matplotlib": [24, 35, 41, 46, 79, 92], "matric": [5, 24, 35, 52, 56], "matrix": [10, 20, 22, 24, 35, 52, 56, 91], "matrix_transpos": 10, "matter": 63, "max": [6, 15, 20, 21, 22, 24, 34, 35, 37, 48, 49, 53, 59, 83, 87, 91, 92, 100], "max_bit": [24, 37, 38, 51, 59, 84, 89, 94], "max_list_s": [24, 25, 85], "max_tim": 59, "max_work": [24, 35], "maxbit": 59, "maxexp": [24, 35], "maxima": [22, 24, 91], "maximum": [1, 12, 15, 16, 18, 20, 22, 24, 25, 35, 36, 37, 38, 42, 56, 59, 84, 87, 89, 90, 91, 92], "maximum_sctyp": [24, 35], "maxk": [24, 37, 78, 83, 87, 92], "maxkmsg": 78, "maxlen": [24, 38], "maxmum": [24, 37, 87], "maxsplit": [24, 32, 53], "maxtaskpar": 18, "maxtransferbyt": [4, 8, 17, 20, 24, 37, 38, 53, 54, 55, 84, 88, 90, 94, 100], "mb": [18, 20, 24, 25, 49, 56], "mca": 59, "mce": 59, "md": [75, 76, 77], "mean": [15, 18, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 46, 47, 48, 49, 53, 59, 83, 84, 87, 91, 92, 95], "mean_shim": 15, "measur": [59, 82], "median": [20, 22, 24, 35, 36, 42, 46, 59, 83, 91, 95], "meet": 0, "megabyt": [20, 24, 90], "member": [0, 21, 24, 34, 35], "membership": [3, 22, 24, 40, 91, 98], "memori": [17, 18, 20, 24, 25, 27, 37, 48, 49, 53, 54, 60, 64, 65, 68, 73, 75, 76, 77, 80, 84, 88, 94, 100], "memory_usag": [20, 24, 25, 49], "memory_usage_info": [20, 24], "memoryview": [21, 24, 34, 35], "mention": [0, 64], "mere": [24, 53], "merg": [17, 20, 24, 56, 62], "mesg": [24, 35], "meshgrid": 5, "messag": [1, 17, 18, 20, 24, 25, 30, 35, 37, 38, 48, 53, 54, 58, 73, 84], "messagearg": 58, "meta": 58, "metadata": [24, 27], "method": [2, 4, 17, 18, 19, 20, 21, 22, 23, 24, 27, 34, 35, 36, 37, 38, 42, 46, 47, 48, 49, 53, 54, 58, 61, 66, 67, 83, 84, 88, 89, 91, 92, 94, 95], "method1": [24, 35], "method2": [24, 35], "mi": [17, 24, 25, 49, 55], "mib": 59, "microsecond": [24, 55], "microsoft": [59, 80], "middl": [24, 35], "midnight": [24, 55], "might": [24, 49, 75, 77, 78], "milli": [24, 29], "million": [24, 35, 37, 87], "millisecond": [24, 55], "mimic": [36, 42, 95], "min": [6, 15, 20, 21, 22, 24, 34, 35, 37, 48, 49, 59, 83, 87, 91, 92], "min_digit": [24, 35], "min_round": 59, "min_tim": 59, "mind": [0, 66, 80], "mine": 64, "minexp": [24, 35], "miniforg": 75, "minim": [4, 20, 24, 63, 64, 89, 90], "minima": [22, 24, 91], "minimum": [12, 15, 16, 22, 24, 35, 37, 38, 76, 87, 91, 92], "mink": [24, 37, 78, 83, 87, 92], "minkmsg": 78, "minlen": [24, 38], "minor": 62, "mintypecod": [24, 35], "minu": [24, 35], "minut": [24, 55], "mismatch": [20, 22, 24, 75, 91], "miss": [3, 17, 20, 24, 35, 49, 88], "mistak": 62, "mix": [24, 53, 55, 59], "mixtur": [36, 42, 95], "mkdir": [20, 24], "mm": 62, "mmx": 59, "mod": [24, 37, 44], "modal": [22, 24, 91], "mode": [1, 16, 17, 19, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 83, 89, 91], "model": [59, 95], "modif": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 78, 90, 91], "modifi": [20, 24, 35, 44, 63, 90], "modul": [24, 58, 63, 64, 73, 84, 100], "modular": [24, 37, 64], "modulenotfounderror": [24, 37], "moment": 46, "moment_typ": 46, "momtyp": 46, "monoton": [24, 37, 87, 92], "month": [24, 55, 62], "more": [0, 1, 3, 4, 7, 8, 11, 17, 20, 21, 22, 24, 25, 27, 34, 35, 37, 46, 49, 53, 55, 58, 59, 60, 62, 63, 64, 66, 68, 70, 71, 73, 75, 76, 77, 79, 84, 88, 90, 91, 94, 96, 100], "most": [0, 1, 19, 22, 24, 32, 35, 49, 53, 54, 59, 61, 62, 66, 68, 73, 75, 77, 80, 84, 89, 91, 94, 97, 100], "most_common": [22, 24, 56, 83, 91], "mostli": [19, 24, 54], "motion": 1, "movb": 59, "move": [11, 24, 50, 56, 64, 66, 86, 89, 96], "moveaxi": 11, "movement": 89, "mpi": 84, "msb_left": [19, 24], "msg": [24, 35], "msgarg": 58, "msgtupl": 58, "msi": 59, "msr": 59, "mt": [4, 8], "mtrr": 59, "mu": [24, 36, 38, 42, 95], "much": [0, 3, 17, 20, 24, 27, 37, 48, 53, 61, 66, 68, 84, 88, 94, 100], "muller": [36, 42, 95], "multi": [3, 19, 22, 24, 27, 40, 49, 66, 75, 85, 89, 91, 94, 97, 98], "multia": [24, 40, 98], "multib": [24, 40, 98], "multidimension": [24, 35, 53, 100], "multiindex": [20, 24, 25, 49, 85, 97], "multipl": [3, 11, 20, 24, 27, 35, 40, 48, 55, 59, 60, 66, 68, 70, 71, 78, 82, 84, 85, 87, 90, 96], "multiplex": 87, "multipli": [7, 22, 24, 36, 42, 52, 58, 91, 95], "must": [1, 3, 9, 11, 17, 18, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 48, 49, 53, 54, 55, 58, 60, 63, 66, 67, 73, 76, 78, 84, 87, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100], "mutual": 1, "mv": [46, 63, 64], "mvsk": 46, "my": [24, 53, 63, 84, 100], "my_data": [20, 24], "my_data_locale0000": [20, 24], "my_dir": [20, 24], "my_path": [20, 24], "my_table_nam": [20, 24], "my_zero": [24, 37], "myarrai": [4, 24, 56], "mydtyp": [24, 37, 51, 94], "mypi": [0, 79], "myst": 79, "n": [4, 8, 11, 16, 17, 20, 22, 24, 27, 35, 36, 37, 38, 39, 40, 42, 48, 49, 53, 55, 67, 77, 79, 82, 87, 88, 89, 90, 91, 95, 96, 97], "n_col": 5, "n_row": 5, "na": [17, 20, 24, 49, 68], "na_cod": 68, "naiv": [24, 55], "name": [0, 1, 2, 3, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 30, 34, 35, 36, 37, 38, 42, 46, 48, 49, 51, 53, 54, 55, 56, 58, 59, 60, 62, 66, 67, 68, 70, 75, 77, 78, 79, 83, 84, 85, 88, 89, 90, 91, 95, 97], "name_dict": [36, 42, 95], "name_prefix": [24, 27, 37, 84], "name_prefix_local": [24, 27, 37], "namedtupl": 13, "nameserv": 80, "namespac": [2, 4, 8, 24, 27], "namewidth": [19, 24], "nan": [7, 20, 21, 22, 24, 34, 35, 49, 56, 90, 91, 94], "nanosecond": [24, 38, 55], "nativ": [21, 22, 24, 34, 35, 69, 70, 77, 84, 91, 96], "natur": [7, 24, 35, 87], "navalu": [17, 24, 88], "navig": [59, 62, 75, 76, 77, 79], "nbin": [24, 35, 92], "nbyte": [17, 20, 21, 24, 25, 34, 35, 37, 38, 48, 49, 53, 56, 84], "ncx2": 46, "nd": [18, 24, 35, 58], "ndarrai": [4, 5, 8, 17, 21, 24, 34, 35, 37, 38, 41, 48, 53, 54, 66, 84, 87, 88, 94, 96, 100], "ndim": [4, 8, 11, 17, 21, 24, 25, 27, 34, 35, 37, 49, 51, 53, 58, 83, 88, 94], "nearest": [24, 35], "necessari": [0, 24, 35, 58, 62, 75, 80], "necessarili": [17, 24, 35, 49, 53], "need": [0, 4, 17, 20, 24, 27, 35, 37, 48, 49, 51, 53, 58, 59, 62, 63, 64, 67, 75, 76, 77, 78, 80, 84, 90, 97], "neg": [5, 7, 20, 22, 24, 35, 36, 38, 42, 48, 61, 89, 91, 93, 95, 96], "negat": 7, "negep": [24, 35], "neglig": [17, 24, 53], "neither": [17, 24, 25, 35, 37, 38, 53, 55, 89, 100], "nest": [4, 8, 24, 27, 68, 84], "nestedsequ": 5, "never": [24, 35, 94], "new": [0, 5, 11, 17, 20, 21, 22, 24, 25, 27, 28, 30, 31, 32, 34, 35, 36, 37, 41, 42, 46, 48, 49, 51, 53, 56, 58, 62, 63, 64, 79, 90, 91, 94, 95, 96, 97, 100], "new_categori": [17, 24], "new_dtyp": [21, 24, 34, 35], "new_nam": [24, 35], "new_ord": [21, 24, 34, 35], "new_str": [24, 53, 100], "newbyteord": [21, 24, 34, 35], "newer": 76, "newfig": [24, 41], "newli": [20, 24], "newlin": [20, 24, 25, 27, 35, 37, 53, 67], "newton": [31, 100], "nexp": [24, 35], "next": [24, 35, 62, 64, 75, 78, 99], "nextaft": [24, 35], "neyman": [24, 44], "ngram": [24, 48, 83], "ngroup": [22, 24, 83, 91], "nice": 0, "nightli": 1, "ninf": [24, 35], "nkei": [22, 24, 49, 83, 91], "nl": [60, 73, 99], "nlevel": [17, 24, 25, 83, 88], "nmant": [24, 35], "nnz": [22, 24, 51], "node": [4, 8, 17, 20, 24, 27, 37, 48, 53, 59, 68, 82, 84], "node01": [73, 99], "non": [1, 3, 12, 17, 20, 22, 24, 27, 32, 35, 36, 37, 38, 40, 42, 46, 49, 50, 52, 53, 61, 84, 86, 87, 89, 91, 92, 93, 95, 100], "non_empti": [24, 48], "noncentr": 46, "none": [3, 4, 5, 8, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 46, 48, 49, 51, 53, 54, 55, 56, 59, 76, 77, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 99], "nonetyp": [24, 35, 36, 42], "nonexist": [20, 24, 90], "nonuniqueerror": [3, 24], "nonzero": [12, 21, 22, 24, 32, 34, 35, 53, 100], "nopl": 59, "nor": [17, 24, 25, 37, 38, 53, 89, 100], "norepeat": [24, 48, 96], "normal": [17, 18, 19, 20, 22, 24, 35, 36, 37, 38, 42, 55, 83, 87, 88, 90, 91], "not_alnum": [24, 53], "not_alpha": [24, 53], "not_decim": [24, 53], "not_digit": [24, 53], "not_empti": [24, 53], "not_equ": 7, "not_spac": [24, 53], "notabl": 100, "notat": [24, 35], "note": [0, 1, 2, 3, 4, 8, 14, 17, 18, 19, 20, 22, 24, 25, 27, 28, 35, 36, 37, 38, 40, 41, 42, 44, 46, 47, 48, 49, 50, 53, 54, 55, 56, 58, 60, 64, 66, 68, 70, 75, 77, 78, 80, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "notebook": [18, 23, 73], "notebookhistoryretriev": 23, "notic": [58, 66], "notifi": 68, "notimplementederror": [24, 35, 92], "notion": [4, 8], "notna": [20, 24, 49], "notnul": [24, 49], "nov": 59, "now": [17, 19, 20, 22, 24, 25, 35, 36, 37, 42, 48, 49, 51, 52, 53, 55, 56, 63, 64, 67, 70, 75, 76, 77, 91], "np": [4, 7, 8, 17, 20, 21, 22, 24, 29, 34, 35, 37, 38, 39, 41, 45, 46, 48, 49, 53, 54, 55, 56, 66, 84, 87, 88, 89, 90, 91, 92, 94, 96, 100], "np_arr": 66, "nparrai": [24, 54], "null": [17, 20, 21, 22, 24, 27, 34, 35, 53, 68, 84, 88, 100], "num": [5, 18, 21, 24, 34, 35], "num_command": [18, 23], "num_match": [24, 32, 53, 100], "numarg": 46, "numba": [24, 37], "number": [0, 1, 3, 5, 11, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 32, 34, 35, 36, 37, 38, 42, 46, 48, 49, 52, 53, 54, 55, 56, 59, 60, 62, 63, 64, 66, 68, 76, 78, 80, 82, 84, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "number_format_str": [21, 24, 34, 35], "number_of_substit": [24, 53, 100], "numbers2": [24, 25], "numer": [3, 20, 24, 27, 35, 37, 38, 41, 49, 50, 56, 57, 68, 83, 84, 86, 88, 94, 97, 100], "numeric_and_bool_scalar": [21, 24, 34, 35, 37], "numeric_onli": [20, 24], "numeric_scalar": [21, 24, 34, 35, 36, 37, 38, 42, 87, 89, 95], "numericdtyp": [21, 24, 34, 35], "numid": 91, "numlocal": [17, 18, 20, 24, 25, 27, 37, 48, 53, 99], "numpi": [0, 4, 5, 8, 17, 19, 20, 21, 24, 25, 29, 32, 37, 38, 42, 44, 45, 46, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 66, 79, 82, 84, 87, 88, 89, 92, 93, 94, 95, 96, 98, 100], "numpu": 18, "numpy_funct": 4, "numpy_scalar": [21, 24, 34, 35, 37, 87], "numpydoc": 58, "nuniqu": [20, 22, 24, 48, 83, 91], "nx": [24, 35, 59], "ny": [24, 35], "nzero": [24, 35], "o": [17, 20, 22, 24, 25, 35, 37, 47, 48, 53, 81, 83, 91], "o0": 1, "o1": 1, "obj": [5, 24, 25, 27, 35, 39, 54, 56], "obj2sctyp": [24, 35], "object": [2, 3, 4, 5, 8, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 46, 47, 48, 49, 53, 54, 55, 56, 58, 67, 68, 69, 70, 71, 80, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "object_": [24, 35], "objectdtyp": [24, 35], "objtyp": [17, 20, 22, 24, 25, 32, 37, 48, 49, 53, 68], "observ": [0, 24, 36, 37, 42, 44, 87, 95], "obtain": [24, 32, 35, 53, 100], "occasion": 58, "occupi": [24, 35], "occur": [18, 20, 22, 24, 27, 32, 35, 36, 37, 39, 42, 49, 53, 75, 91, 92, 95, 97, 100], "occurr": [3, 13, 21, 24, 32, 34, 35, 37, 40, 53, 87, 92, 100], "odd": [24, 35, 37], "oerror": 28, "off": [24, 53, 63, 100], "offer": [85, 90, 97, 100], "offset": [17, 22, 24, 27, 35, 38, 53, 68, 84, 88, 98, 100], "offset_alias": [24, 55], "offset_attrib": [24, 53], "often": [17, 24, 88, 92], "ok": 62, "old": [17, 24, 62], "old_func": [24, 35], "old_nam": [24, 35], "older": [24, 25, 37, 68, 76], "olduint": [24, 35], "omit": [24, 35, 53, 55, 59, 68], "onc": [0, 20, 22, 24, 27, 37, 49, 53, 60, 61, 62, 64, 66, 67, 70, 75, 80, 91], "one": [0, 1, 2, 3, 4, 5, 8, 11, 17, 20, 21, 22, 24, 25, 27, 28, 34, 35, 36, 37, 38, 40, 42, 46, 48, 49, 51, 53, 58, 59, 62, 64, 66, 67, 68, 70, 73, 76, 77, 78, 79, 80, 84, 87, 88, 89, 90, 91, 95, 96, 98, 100], "one_two": [24, 53, 100], "onelin": 62, "ones": [1, 5, 11, 18, 20, 21, 24, 34, 35, 38, 49, 59, 63, 82, 83, 87, 89], "ones_lik": [5, 24, 38, 83, 89], "onli": [3, 4, 8, 16, 17, 20, 22, 24, 25, 27, 29, 31, 35, 36, 37, 38, 40, 42, 48, 49, 50, 51, 53, 54, 56, 58, 59, 61, 63, 64, 66, 68, 70, 75, 78, 79, 81, 82, 84, 85, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 100], "onlin": [62, 80], "onto": [20, 24, 53, 100], "op": [17, 19, 20, 24, 27, 37, 48, 53, 59], "open": [0, 3, 5, 17, 20, 24, 25, 27, 28, 35, 36, 37, 42, 48, 49, 53, 55, 80, 95], "opeq": [19, 24, 37], "opeqop": [24, 37], "oper": [17, 18, 19, 20, 22, 24, 25, 27, 35, 37, 47, 48, 50, 51, 53, 58, 59, 62, 69, 73, 79, 81, 82, 83, 86, 90, 91, 93, 99], "opposit": [21, 24, 34, 35], "opt": [75, 76, 77], "optim": 63, "option": [1, 3, 5, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 48, 49, 53, 54, 55, 58, 59, 62, 68, 75, 76, 79, 82, 84, 87, 89, 90, 91, 95, 97, 98, 99, 100], "order": [0, 4, 8, 11, 12, 14, 16, 17, 19, 20, 21, 22, 24, 27, 34, 35, 37, 38, 40, 44, 46, 48, 49, 50, 53, 54, 56, 60, 68, 70, 86, 88, 89, 90, 91, 92, 93, 96, 97, 100], "ordin": [24, 35], "org": [11, 20, 24, 35, 44, 49, 56, 58], "orient": [70, 88, 90, 94, 100], "orig": [24, 53, 100], "orig_kei": [22, 24, 91], "origin": [11, 17, 19, 20, 21, 22, 24, 25, 27, 31, 34, 35, 37, 40, 48, 49, 53, 55, 87, 88, 89, 90, 91, 96, 100], "origin_indic": [24, 48, 53, 96], "oserror": 28, "osxsav": 59, "other": [3, 5, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 42, 48, 50, 53, 55, 59, 63, 64, 66, 84, 85, 86, 87, 88, 91, 95, 96, 98, 100], "other_df": [20, 24], "otherwis": [0, 3, 5, 12, 15, 17, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 42, 46, 48, 49, 53, 56, 81, 84, 88, 90, 91, 94, 95, 96, 98, 100], "our": [0, 24, 37, 58, 59, 61, 62, 66, 68, 73, 75, 80, 81, 84], "out": [0, 15, 18, 20, 21, 24, 34, 35, 48, 63, 64, 67, 68, 70, 75, 78, 92, 93, 96], "outer": [4, 8, 20, 24, 93], "outlier": 59, "outlin": [62, 68], "outperform": [24, 37, 87], "output": [0, 1, 5, 12, 15, 17, 19, 20, 22, 24, 25, 27, 35, 36, 37, 39, 42, 48, 49, 53, 54, 62, 66, 70, 73, 84, 87, 91, 92, 94, 95, 98, 99], "outsid": [0, 24, 35, 67, 78], "outstand": 0, "over": [3, 17, 20, 24, 27, 35, 36, 37, 42, 48, 53, 58, 82, 87, 88, 90, 92, 94, 95, 96, 100], "overflow": [17, 24, 35, 37, 53, 84, 88, 94, 100], "overflowerror": [21, 24, 34, 35], "overlap": [3, 20, 24, 32, 53, 100], "overload": [22, 24, 35, 91], "overnight": 64, "overrid": [17, 19, 24, 37, 38, 53, 63, 84, 88, 94, 100], "overridden": [24, 38, 47], "overview": [24, 35, 59], "overwhelm": [24, 38, 84], "overwrit": [17, 20, 22, 24, 25, 27, 35, 37, 48, 53, 91, 94], "overwritten": [17, 20, 24, 25, 27, 35, 37, 48, 53, 68, 70], "own": [0, 1, 24, 55, 96, 100], "p": [3, 24, 36, 37, 38, 42, 44, 95], "packag": [76, 77, 79, 81], "pad": [16, 19, 24, 35, 62], "pad_left": [24, 35], "pad_right": [24, 35], "pad_width": 16, "padchar": [19, 24], "pae": 59, "page": [57, 62, 75], "pai": 59, "pair": [21, 24, 28, 29, 34, 35, 48, 96], "pairwis": [20, 24, 35], "panda": [0, 17, 20, 24, 25, 27, 38, 49, 54, 55, 58, 69, 71, 79, 84, 85, 88, 90], "parallel": [61, 84, 94, 98], "parallel_start_test": 0, "param": [2, 17, 21, 24, 25, 27, 34, 35, 37, 48, 53, 54, 58, 59], "paramet": [0, 3, 5, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 77, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "parameter": [36, 42, 95], "parameter_class": 18, "parent": [1, 20, 24, 32], "parent_entry_nam": [31, 32], "pariti": [24, 37], "parquet": [17, 20, 22, 24, 25, 27, 37, 48, 53, 59, 67, 69, 71, 84, 91], "parquet_output": [20, 24], "pars": [18, 19, 20, 24, 25, 37, 49, 51, 99], "parse_hdf_categor": [17, 24], "parseabl": [24, 38, 89], "parser": 79, "part": [0, 4, 7, 8, 21, 24, 34, 35, 48, 53, 80, 100], "parti": [24, 35, 75], "particular": [4, 11, 20, 24, 35, 46, 49, 58, 78], "particularli": [76, 78], "partit": [24, 53, 100], "paruqet": 70, "pass": [0, 1, 3, 17, 19, 20, 22, 24, 27, 35, 36, 37, 42, 48, 49, 53, 54, 62, 84, 90, 91, 97], "password": [1, 20, 24, 49, 80], "past": [24, 35, 64], "pat": 59, "path": [20, 24, 25, 27, 28, 35, 37, 47, 59, 64, 73, 75, 76, 77, 78, 80, 84], "path_prefix": [24, 27], "path_to_ark": 77, "path_to_arkouda": 79, "path_to_chpl": 77, "pathlib": [20, 24, 28, 35, 47], "pattern": [24, 31, 32, 53, 62, 66, 91, 100], "pb": 18, "pcg64": [36, 42], "pcid": 59, "pclmulqdq": 59, "pct_avail_mem": 18, "pd": [17, 20, 24, 27, 38, 49, 54, 55, 56, 66, 84, 88, 90], "pd_df": [20, 24, 66, 90], "pda": [22, 24, 35, 37, 38, 50, 55, 56, 58, 86, 87, 89, 92, 94, 98], "pda1": [24, 37, 40, 98], "pda2": [24, 37, 40, 98], "pda_a": [24, 35], "pda_b": [24, 35], "pdaleft": [24, 35], "pdaright": [24, 35], "pdarrai": [3, 5, 17, 18, 19, 20, 22, 24, 25, 27, 29, 31, 32, 35, 36, 37, 38, 39, 40, 42, 44, 45, 48, 49, 50, 51, 53, 54, 55, 56, 58, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 95, 96, 97, 98, 100], "pdarrayclass": [17, 19, 20, 24, 25, 27, 29, 31, 32, 35, 36, 38, 39, 40, 42, 45, 48, 49, 50, 51, 53, 56, 57, 90], "pdarraycr": [24, 37, 57], "pdarraymanipul": [24, 57], "pdarraysetop": [24, 48, 57, 58, 96], "pdconcat": [24, 49, 97], "pdf": 46, "pdpe1gb": 59, "pdrrai": [24, 35, 38, 84], "pearson": [20, 24, 37, 44], "peel": [24, 53, 83, 100], "pep": [24, 35], "pep8": 0, "per": [1, 17, 18, 20, 22, 24, 25, 27, 37, 48, 53, 59, 64, 68, 78, 84, 87, 91], "percent": [18, 46], "percent_transfer_limit": 56, "percentag": [18, 56], "percentil": 46, "perf_count": 59, "perform": [17, 20, 22, 24, 25, 27, 29, 35, 36, 37, 40, 42, 48, 49, 53, 54, 59, 61, 62, 63, 66, 67, 69, 75, 83, 84, 87, 89, 90, 91, 94, 95], "period": [24, 55], "perl": 76, "perm": [20, 24, 50, 56, 86, 90], "perm_arri": [20, 24, 90], "perm_df": [20, 24, 90], "permiss": [17, 24, 25, 37, 48, 53], "permut": [11, 17, 20, 22, 24, 36, 42, 50, 53, 56, 68, 83, 86, 88, 91, 98], "permute_dim": 11, "permute_sampl": [22, 24, 91], "person": 0, "pexpect": 79, "pge": 59, "physic": [18, 31, 100], "physicalmemori": 18, "pi": [24, 35, 36, 42, 95], "piec": 63, "pierce314159": 0, "pig": [20, 24, 49], "pinf": [24, 35], "pip": [76, 77], "pipe": 100, "pipelin": [84, 100], "place": [17, 19, 20, 22, 24, 25, 27, 30, 35, 36, 37, 42, 47, 48, 49, 53, 55, 56, 60, 64, 87, 90, 91, 95], "placement": [24, 35], "plan": [80, 81, 92, 94], "platform": [21, 24, 34, 35, 47], "player": [36, 42, 95], "pleas": [0, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 48, 49, 53, 55, 60, 62, 63, 66, 68, 70, 71, 75, 76, 77, 78, 88, 90, 91], "plot": [24, 35, 46, 57, 84, 92], "plot_dist": [24, 41], "plt": [24, 35, 41, 46, 92], "plu": [24, 35], "pni": 59, "point": [7, 20, 21, 24, 25, 29, 34, 35, 36, 37, 38, 42, 46, 49, 51, 80, 89, 90, 94], "pointer": [21, 24, 34, 35], "poisson": [36, 42, 83], "polyfit": [24, 35], "pop": [21, 24, 34, 35], "popcnt": 59, "popcount": [21, 24, 34, 35, 37], "popitem": [21, 24, 34, 35], "popul": [22, 24, 28, 32, 37, 87, 91], "port": [1, 17, 18, 20, 24, 27, 37, 48, 49, 53, 63, 73, 82, 99], "portion": [24, 35, 68], "portland": [20, 24], "pos_dt": [24, 29], "posit": [5, 7, 11, 20, 21, 22, 24, 31, 32, 34, 35, 37, 49, 53, 91, 93, 97, 100], "position": [20, 24], "positon": [24, 53, 100], "possibl": [0, 20, 21, 24, 27, 34, 35, 46, 48, 53, 55, 58, 59, 62, 66, 75, 80, 84, 96, 100], "possibli": 58, "post": [0, 24, 35, 62], "postit": [24, 53, 100], "potenti": [20, 24, 35, 37, 75], "pow": 7, "power": [7, 24, 35, 37, 44, 72, 93], "power_diverg": [24, 44], "power_divergenceresult": [24, 44], "powershel": 80, "pp": [24, 35], "ppf": 46, "pr": [0, 62], "practic": [0, 22, 24, 35, 37, 78, 87, 91], "pre": [17, 24, 56, 88], "preced": [21, 24, 34, 35, 46], "precis": [21, 24, 27, 34, 35, 54, 84, 94], "pred": [24, 29], "predefin": [24, 35], "predic": [24, 29], "prefer": [0, 77, 79, 81, 95], "prefix": [17, 20, 22, 24, 25, 27, 37, 48, 53, 55, 83, 91, 100], "prefix_path": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53, 91], "prepar": [20, 22, 24, 75, 91], "prepend": [11, 16, 24, 48, 53, 83, 100], "prepend_singl": [24, 48, 83, 96], "prerequisit": [75, 76, 77], "present": [0, 3, 17, 19, 20, 21, 24, 25, 27, 34, 35, 37, 40, 48, 49, 53, 66, 68, 84, 92, 98], "preserv": [20, 24, 35, 49, 97, 100], "pretti": 64, "pretty_print_info": [17, 24, 37, 53], "pretty_print_inform": [24, 26], "prev": 62, "prevent": [19, 24, 27, 37, 48, 67, 68, 76, 96], "previou": [62, 64, 77], "previous": [17, 20, 22, 24, 25, 27, 37, 48, 49, 53, 55, 91], "primarili": [24, 35, 84], "print": [0, 1, 17, 18, 20, 24, 26, 35, 37, 43, 49, 53, 80, 99], "print_server_command": 18, "printabl": [24, 38], "printit": 0, "prior": 78, "probabl": [17, 20, 22, 24, 36, 42, 46, 53, 91, 95], "problem": [0, 24, 35, 36, 42, 59, 82, 95], "problem_s": 59, "proc": [0, 58], "proce": [17, 24, 35, 37, 38, 53, 84, 88, 94, 100], "procedur": [0, 58], "proceed": 75, "process": [18, 24, 26, 27, 35, 49, 51, 58, 65, 68, 73, 80, 84, 96, 100], "processor": [18, 59], "prod": [15, 20, 21, 22, 24, 34, 35, 37, 48, 49, 83, 87, 91, 92], "produc": [17, 24, 53, 54, 88, 95, 100], "product": [7, 10, 15, 22, 24, 35, 36, 37, 38, 42, 52, 84, 87, 91, 92, 95], "profil": 23, "program": [0, 17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 73, 91, 99], "progress": 77, "project": [0, 20, 24, 49, 59, 62, 75], "promot": [4, 24, 38, 58], "promote_dtyp": [24, 38], "promote_to_common_dtyp": [24, 38], "proof": [19, 24], "proper": [24, 35, 48, 53, 56, 96], "properli": [0, 63, 68, 76, 77], "properti": [2, 4, 8, 17, 20, 24, 25, 35, 37, 48, 49, 53, 55, 58, 68], "protect": [17, 24, 37, 38, 53, 84, 88, 94, 100], "provid": [0, 6, 17, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 39, 42, 48, 49, 53, 54, 56, 58, 59, 61, 66, 67, 68, 70, 71, 75, 76, 77, 79, 84, 87, 90, 91, 95, 96], "prune": 79, "pse": 59, "pse36": 59, "pseudo": 95, "pti": 59, "ptp": [21, 24, 34, 35], "publish": 62, "pull": [24, 27, 38, 58, 62, 68, 89], "pure": [24, 35], "purg": [24, 53], "purge_cached_regex_pattern": [24, 53], "purpos": [24, 35, 59, 62, 85, 90, 97], "push": [62, 75], "put": [20, 21, 22, 24, 34, 35, 64, 91], "putmask": [24, 35], "pvalu": [24, 44], "pwd": [76, 77], "pwr": [24, 37], "py": [0, 1, 58, 59, 63, 78, 79, 82], "py_incref": [24, 35], "pyarrow": [79, 84], "pycharm": 0, "pydata": [20, 24, 49], "pyfiglet": 79, "pypi": [20, 24, 49], "pyplot": [24, 35, 41, 46, 92], "pytabl": 79, "pytest": [0, 65, 79], "python": [3, 4, 8, 17, 18, 19, 21, 23, 24, 34, 35, 37, 38, 40, 47, 49, 53, 59, 72, 75, 80, 81, 83, 84, 87, 88, 89, 90, 93, 94, 100], "python3": [59, 63, 75, 76], "python_build": 59, "python_compil": 59, "python_implement": 59, "python_implementation_vers": 59, "python_vers": 59, "pythonpath": [76, 77], "pytype_readi": [24, 35], "pytypeobject": [24, 35], "pyzmq": 79, "pzero": [24, 35], "q": [24, 35, 46], "q1": 59, "q3": 59, "quadrupl": [24, 35], "qualifi": [20, 24], "queri": [3, 24, 40, 84], "quetzal": [20, 24, 49], "quick": [18, 63], "quickli": [20, 24, 60, 90], "quickstart": [76, 77, 81], "quit": [0, 73], "quotient": [24, 37], "r": [0, 20, 24, 35, 46, 59, 62, 66, 76, 77, 82], "rad2deg": [24, 35], "radian": [24, 35], "radix": [24, 50, 86], "radixsortlsd": [24, 50, 86], "rai": [24, 35], "rais": [3, 4, 8, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 40, 42, 47, 48, 49, 50, 51, 52, 53, 55, 56, 58, 84, 86, 87, 88, 89, 90, 91, 92, 94, 96, 97, 98, 99, 100], "ram": 75, "ran": [59, 63], "randint": [3, 18, 22, 24, 35, 36, 38, 40, 42, 50, 66, 83, 86, 87, 89, 91, 92], "randn": [24, 41], "random": [20, 22, 24, 35, 38, 41, 46, 52, 57, 59, 82, 83, 91], "random_sparse_matrix": 52, "random_st": [20, 22, 24, 46, 91], "random_strings_lognorm": [24, 38], "random_strings_uniform": [24, 38], "randomli": [20, 24, 36, 42, 95], "rang": [3, 11, 16, 17, 20, 24, 25, 27, 29, 35, 36, 37, 38, 42, 48, 49, 52, 53, 55, 82, 84, 87, 89, 90, 92, 95, 97, 100], "rank": [17, 18, 24, 35, 36, 37, 38, 42, 51, 53, 58, 83, 84, 88, 89, 93, 95], "rankwarn": [24, 35], "rasi": [17, 24, 53, 88, 100], "rate": [36, 42, 59, 95], "rather": [4, 8, 17, 20, 24, 35, 53], "ratio": [21, 24, 34, 35], "ravel": [21, 24, 34, 35], "raw": [24, 53, 100], "rc": 77, "rdrand": 59, "rdrnd": 59, "rdseed": 59, "rdtscp": 59, "re": [0, 11, 17, 18, 20, 22, 24, 31, 35, 75, 91, 99, 100], "re2": [17, 24, 53, 75, 88, 100], "reach": 0, "reachabl": 99, "reactiv": 77, "read": [4, 8, 17, 20, 24, 25, 27, 28, 35, 37, 44, 49, 53, 67, 68, 69, 70, 100], "read_": [24, 27], "read_all_test": 1, "read_csv": [20, 24, 27, 67, 71], "read_hdf": [24, 27, 48, 71, 84], "read_nest": [24, 27, 84], "read_parquet": [24, 27, 71, 84], "read_path": [24, 27, 84], "read_tagged_data": [24, 27], "read_zarr": [24, 27], "readabl": [17, 24, 26, 27, 37, 53, 68, 84], "readalltest": 1, "readi": [0, 60, 62, 76, 77], "readm": 1, "readthedoc": 58, "real": [0, 7, 21, 24, 34, 35, 36, 38, 42, 58, 62, 68], "realist": [17, 24, 53], "realli": [0, 24, 53], "reason": [24, 35, 62, 64, 77], "rebas": 0, "rebind": [24, 35], "rebuild": [22, 24, 58, 61, 63, 64, 91], "rebuilt": 63, "receiv": [17, 18, 20, 24, 25, 27, 37, 48, 53, 84, 94, 99], "receive_arrai": [17, 20, 24, 37, 48, 53], "receive_datafram": [24, 27], "recent": [24, 54, 62], "recogn": [21, 34], "recommend": [0, 24, 35, 36, 42, 60, 64, 70, 76, 79, 80, 81, 90, 95, 96], "recompil": 64, "recomput": [17, 24, 27], "reconnect": [24, 37], "reconstitut": [17, 24], "reconstruct": 13, "record": [24, 27], "recurs": [24, 38, 84], "red": [24, 25], "reduc": [20, 22, 24, 35, 63, 65, 91], "reduct": [22, 24, 37, 82, 83, 91, 92], "redund": [21, 34], "ref": 58, "refer": [0, 5, 20, 22, 24, 35, 44, 49, 54, 63, 66, 77, 79, 91], "referenc": [20, 24], "reflect": [20, 24, 77, 90, 96], "reformat": [0, 84], "regard": 76, "regardless": [24, 54], "regex": [17, 24, 53, 88, 100], "regex_max_captur": 1, "regex_split": [24, 53], "regist": [1, 4, 17, 19, 20, 22, 24, 25, 26, 37, 48, 49, 53, 55, 56, 58, 83, 91], "register_al": [24, 56], "registerablepiec": [17, 24], "registercommand": 58, "registerd": [24, 49], "registered_nam": [17, 19, 24, 25, 37, 48, 53], "registeredsymbol": [24, 26], "registerfunct": 78, "registr": [18, 24, 37, 53, 58, 75], "registrationerror": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 91], "registri": [17, 20, 22, 24, 25, 26, 37, 49, 53, 55, 56, 91], "regular": [17, 24, 53, 83, 88], "rel": [24, 54], "relat": [59, 62, 66], "releas": [17, 20, 21, 24, 25, 27, 34, 35, 37, 48, 53, 59, 64, 65, 73, 76, 77, 95], "release_d": 73, "reli": [17, 24, 25, 37, 48, 53, 91], "remain": [17, 20, 24, 25, 27, 35, 37, 48, 53, 76, 84, 85, 90, 97], "remaind": [7, 24, 37, 53, 100], "remap": [17, 24], "rememb": [64, 66], "remot": [24, 35, 62, 76, 77, 99], "remov": [3, 11, 17, 20, 21, 24, 25, 27, 34, 35, 37, 39, 40, 48, 53, 59, 63, 79, 90, 96, 100], "remove_miss": [3, 24, 40], "remove_repeat": [24, 48, 83, 96], "renam": [20, 24], "reorder": [11, 24, 35], "rep": [24, 35], "rep_good": 59, "rep_msg": [17, 19, 20, 22, 24, 25, 48, 53, 78], "repack": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53], "repeat": [1, 11, 17, 21, 24, 34, 35, 48, 88, 96], "repeatedli": [24, 35], "repetit": 11, "repl": [23, 24, 32, 53, 100], "replac": [3, 20, 21, 22, 24, 27, 32, 34, 36, 37, 42, 48, 53, 60, 62, 68, 77, 78, 79, 91, 95, 96, 100], "repli": 58, "replic": [22, 24, 91], "repmsg": [24, 49, 51, 58], "repo": [24, 35, 76, 77, 81], "repons": [24, 25, 37, 53], "report": [21, 22, 24, 34, 35, 64, 79], "report_mem": 56, "repr": [20, 21, 22, 24, 34, 35, 46, 49], "repres": [17, 19, 21, 22, 24, 34, 35, 46, 48, 49, 53, 55, 59, 68, 88, 91, 100], "represent": [19, 20, 21, 24, 34, 35, 37], "reproduc": [0, 20, 22, 24, 36, 42, 65, 91, 95], "request": [20, 22, 24, 28, 35, 37, 38, 53, 58, 62, 89, 90, 91], "requir": [0, 3, 4, 8, 15, 18, 20, 22, 24, 25, 27, 29, 35, 37, 38, 49, 60, 61, 63, 64, 68, 69, 70, 73, 75, 78, 84, 89, 90, 91], "requiredpiec": [17, 24], "rerun": 75, "reset_categori": [17, 24], "reset_index": [20, 24, 90], "reshap": [11, 21, 24, 34, 35, 37, 39, 83], "resid": [24, 37, 51, 53, 94], "resili": [24, 50, 86], "resiz": [21, 24, 34, 35], "resolut": [24, 35], "resolv": [0, 61, 80], "resolve_scalar_dtyp": [21, 24, 34, 35], "respect": [20, 24, 35, 37, 38, 40, 46, 54, 55, 62, 84, 89], "respons": [18, 20, 24, 53, 58], "rest": [24, 49], "restart": 80, "restor": [24, 27], "restrict": [4, 8], "result": [3, 5, 6, 11, 12, 15, 16, 17, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 40, 41, 42, 44, 46, 48, 49, 51, 53, 54, 55, 58, 59, 66, 67, 68, 69, 77, 84, 87, 89, 90, 91, 94, 95, 96, 97, 100], "result_array_on": [24, 29], "result_limit": [24, 29], "result_typ": 6, "ret": 58, "retain": [24, 35, 37, 56, 87], "retain_index": [20, 24, 90], "retriev": [18, 23, 24, 26, 37, 47, 49, 62], "return": [3, 4, 5, 6, 8, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 58, 67, 69, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "return_count": [24, 35, 92], "return_group": [22, 24, 98], "return_group_origin": [31, 100], "return_indic": [22, 24, 91, 98], "return_length": [24, 29], "return_match_origin": [24, 31, 32, 53, 100], "return_multipl": [24, 48, 96], "return_num_sub": 32, "return_obj": [24, 27, 84], "return_origin": [24, 48, 53, 96], "return_seg": [24, 32, 53, 100], "return_valid": [24, 35, 94], "revarg": [3, 24], "revers": [4, 8, 11, 19, 22, 24, 35], "review": 62, "revindic": [3, 24], "revkei": [3, 24], "rf": 75, "rh": 76, "right": [3, 7, 12, 19, 20, 24, 35, 36, 37, 42, 46, 50, 52, 53, 54, 55, 62, 86, 90, 93, 99, 100], "right_align": [3, 24], "right_df": [20, 24], "right_suffix": [20, 24], "risk": [24, 35, 68], "rm": 75, "rng": [24, 36, 42, 55, 95], "role": 1, "roll": 11, "root": [7, 17, 19, 20, 22, 24, 25, 37, 49, 55, 59, 68, 76, 84, 87, 91], "rot": [24, 37], "rotat": [24, 35, 37], "rotl": [24, 37], "rotr": [24, 37], "roughli": [24, 35], "round": [7, 21, 24, 34, 35, 59], "rout": 80, "routin": [24, 35], "row": [3, 5, 20, 22, 24, 25, 27, 35, 37, 39, 40, 48, 49, 50, 52, 53, 54, 57, 66, 67, 84, 86, 90, 91, 96, 98], "row_numb": [22, 24], "row_start": [22, 24], "rpartit": [24, 53, 100], "rpath": 75, "rpeel": [24, 53, 83, 100], "rtol": [24, 54], "rule": [4, 24, 35, 94], "run": [17, 18, 20, 24, 27, 35, 37, 48, 53, 63, 64, 66, 73, 75, 76, 77, 79, 80, 82, 84, 88, 94, 96, 99, 100], "runtim": [18, 21, 24, 27, 34, 61, 84], "runtimeerror": [17, 18, 20, 22, 24, 25, 26, 27, 31, 35, 37, 38, 40, 48, 49, 51, 53, 55, 84, 87, 88, 89, 91, 92, 94, 98, 99, 100], "runtimewarn": [24, 27, 84], "ruok": 18, "rv": 46, "rv_continu": 46, "s1": [24, 35, 87], "s2": [24, 25, 35, 49, 53, 87], "s3": [20, 24, 49], "s5": [24, 35], "s_complement": [24, 35], "s_cpy": [24, 53], "sa": [24, 56], "sacrific": 100, "safe": [24, 35, 39, 62, 94], "sai": 99, "salari": 66, "same": [3, 11, 16, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 47, 48, 49, 50, 51, 53, 54, 55, 58, 62, 66, 67, 68, 70, 76, 77, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 100], "same_kind": [24, 39], "sampl": [20, 22, 24, 35, 36, 38, 42, 83, 91, 95], "satisfi": [3, 20, 24, 27], "save": [17, 20, 22, 24, 25, 27, 37, 48, 53, 59, 60, 62, 63, 68, 69, 70, 84, 88, 91, 98], "save_al": [24, 25, 27, 37, 71], "save_offset": [24, 53], "saveusedmodul": [63, 64, 78], "sb": [24, 56], "scalar": [3, 4, 5, 8, 15, 16, 17, 20, 21, 24, 34, 35, 37, 38, 48, 49, 59, 82, 83, 88, 92, 93, 96, 97], "scalar_arrai": [24, 38], "scalardtyp": [21, 24, 34, 35], "scalartyp": [24, 35], "scale": [17, 24, 36, 41, 42, 44, 46, 61, 66, 72, 95], "scaler": [24, 49, 97], "scan": 83, "scatter": [59, 83], "schema": 84, "scheme": [24, 35, 62], "scienc": 91, "scientif": [24, 35], "scipi": [0, 24, 57, 79], "scl": 76, "scope": [0, 78], "script": [58, 63, 77, 78, 82], "scroll": 75, "sctype": [24, 35], "sctype2char": [24, 35], "sctypedict": [24, 35], "se": [22, 24, 37, 87, 91], "search": [3, 12, 17, 24, 31, 40, 53, 83, 88], "search_bool": 32, "search_ind": 32, "search_interv": [3, 24], "searching_funct": [8, 57], "searchsort": [12, 21, 24, 34, 35], "sec": [24, 55, 59], "second": [3, 4, 8, 18, 24, 28, 35, 38, 40, 49, 53, 54, 55, 56, 58, 59, 63, 66, 87, 89, 94, 97, 98, 99, 100], "secret": 47, "section": [1, 24, 35, 59, 61, 62, 63, 64, 66, 68, 73, 75, 79, 87], "secur": [24, 35, 57], "see": [0, 1, 3, 4, 7, 8, 11, 20, 21, 22, 24, 34, 35, 36, 37, 41, 42, 46, 49, 53, 55, 56, 58, 59, 62, 63, 64, 73, 75, 78, 84, 87, 88, 91, 92, 94, 95, 96, 97, 98, 100], "seealso": [24, 25], "seed": [3, 20, 22, 24, 36, 38, 40, 42, 46, 59, 82, 89, 91, 95], "seen": [18, 99], "seg": 56, "seg_a": [24, 48, 96], "seg_b": [24, 48, 96], "seg_suffix": [24, 48], "segarr": [24, 48, 96], "segarrai": [3, 22, 24, 27, 35, 49, 54, 57, 83, 84, 90, 91, 97], "segment": [3, 17, 20, 22, 24, 27, 29, 48, 53, 56, 68, 83, 84, 88, 91, 96, 98, 100], "segment_nam": [24, 48], "segstr": [24, 53], "select": [12, 18, 20, 22, 23, 24, 27, 48, 49, 58, 62, 75, 81, 90, 91, 96], "select_from": [3, 24, 40], "self": [17, 20, 24, 37, 48, 53, 84, 85, 88, 90, 94, 95, 96, 97, 100], "send": [17, 18, 20, 24, 27, 37, 38, 48, 53, 58, 84, 90, 99], "send_arrai": [24, 27], "sens": [20, 24, 49], "sensit": [24, 55], "sent": [24, 27, 69], "sep": 59, "separ": [1, 4, 19, 20, 24, 25, 27, 28, 35, 36, 37, 42, 46, 53, 59, 67, 68, 78, 84, 94, 95, 100], "seq": [24, 54], "sequenc": [3, 5, 17, 19, 20, 21, 24, 25, 34, 35, 36, 37, 38, 39, 40, 42, 48, 50, 51, 54, 56, 86, 89, 91, 92, 94, 95, 96, 98, 100], "sequenti": [24, 27, 84], "seri": [2, 20, 24, 25, 38, 54, 55, 56, 57], "seriesdtyp": [21, 24, 34, 35], "serv": 81, "server": [0, 1, 4, 8, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 30, 31, 34, 35, 36, 37, 38, 42, 47, 48, 49, 51, 53, 55, 61, 63, 64, 76, 77, 80, 82, 83, 87, 88, 89, 90, 91, 92, 94, 95, 96, 100], "server_util": [0, 1], "serverdaemon": 58, "serverhostnam": 18, "servermodul": [1, 24, 27, 63, 64, 78], "serverport": 18, "session": [63, 73], "set": [1, 3, 17, 19, 20, 21, 22, 24, 25, 27, 30, 34, 35, 37, 38, 40, 47, 48, 49, 53, 55, 58, 59, 60, 62, 67, 68, 75, 76, 77, 78, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 100], "set_categori": [17, 24], "set_dtyp": [24, 25, 85], "set_funct": [8, 57], "set_jth": [24, 48, 83, 96], "set_xlim": 46, "setchplenv": [76, 77], "setdefault": [21, 24, 34, 35], "setdiff": [24, 48, 83, 96], "setdiff1d": [24, 40, 48, 58, 66, 83, 96, 98], "setfield": [21, 24, 34, 35], "setflag": [21, 24, 34, 35], "setop": 83, "setup": [1, 75, 80], "setxor": [24, 48, 83, 96], "setxor1d": [24, 40, 48, 58, 66, 83, 96, 98], "sever": [58, 66, 68, 84, 87, 89], "sf": 46, "sh": [76, 77], "shallow": [21, 22, 24, 34, 35, 90], "shape": [3, 4, 5, 8, 11, 17, 20, 21, 24, 25, 27, 34, 35, 36, 37, 39, 40, 42, 46, 49, 51, 53, 56, 83, 87, 88, 94, 95], "share": [17, 20, 22, 24, 25, 37, 48, 53, 54, 62, 80, 91], "shell": [18, 23, 24, 27, 77, 84], "shellhistoryretriev": 23, "shift": [7, 11, 46], "ship": [75, 79], "short": [21, 24, 34, 35], "shortdtyp": [24, 35], "shortest": [24, 35], "shorthand": [21, 24, 34, 37, 53], "should": [0, 1, 4, 8, 17, 20, 21, 22, 24, 27, 34, 35, 37, 38, 49, 51, 53, 54, 56, 58, 62, 63, 64, 66, 67, 68, 69, 73, 75, 76, 77, 79, 80, 84, 90, 91, 94, 99], "shouldn": [63, 64], "show": [20, 24, 27, 35, 41, 46, 54, 75, 84, 91], "show_int": [19, 24], "shown": 99, "shuffl": [36, 42, 83], "shut": [18, 73, 78], "shutdown": [18, 63, 64, 78], "side": [1, 12, 17, 18, 20, 22, 24, 25, 26, 27, 31, 35, 36, 37, 38, 42, 48, 49, 51, 53, 55, 58, 62, 63, 73, 78, 80, 84, 87, 88, 91, 92, 93, 94, 95, 96, 99, 100], "sigma": [24, 36, 38, 42, 95], "sign": [7, 21, 24, 27, 34, 35, 36, 37, 42, 84, 90, 94, 95], "signal": [21, 34], "signatur": [23, 58], "signedinteg": [21, 24, 34, 35], "signific": [19, 24, 35, 37, 50, 62, 78, 86, 87], "significantli": [17, 24, 35, 63, 88], "similar": [0, 24, 27, 35, 53, 59, 66, 84, 94, 96, 100], "similarli": [59, 66], "simpl": [0, 66, 78, 92], "simplest": 59, "simpli": [17, 18, 20, 24, 35, 89], "simplifi": [0, 59], "simul": [76, 77], "sin": [7, 24, 35, 83, 87], "sinc": [1, 4, 24, 35, 36, 42, 64, 88, 90, 94, 100], "sine": [7, 24, 35, 87], "singl": [0, 2, 3, 4, 8, 16, 17, 19, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 40, 42, 48, 53, 63, 64, 66, 68, 70, 75, 78, 82, 84, 89, 90, 91, 93, 95, 96, 98], "singlecomplex": [21, 24, 34, 35], "singleton": [11, 12, 15, 16, 24, 37], "sinh": [7, 24, 35], "siphash": [24, 35], "siphash128": [17, 24, 53], "site": 75, "situat": [24, 38], "six": [24, 51, 53, 100], "size": [3, 4, 8, 11, 17, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 40, 42, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 66, 69, 70, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 100], "skew": [24, 46], "skip": [1, 21, 22, 24, 27, 34, 53, 76, 84, 91, 98, 100], "skipna": [22, 24, 91], "slice": [17, 20, 24, 37, 39, 66, 83, 88, 90, 96, 100], "slice_bit": [24, 37], "slightli": [20, 24, 27, 90], "slot": [24, 35], "slower": [17, 24, 100], "small": [20, 24, 35, 49, 68, 84], "smaller": [24, 49, 62, 67, 84], "smallest": [20, 22, 24, 35, 37, 49, 87, 91, 97], "smallest_norm": [6, 24, 35], "smallest_subnorm": [24, 35], "smap": 59, "smemtrack": 1, "smep": 59, "smith": 66, "snappi": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70, 75], "snapshot": [24, 27], "so": [0, 1, 14, 17, 19, 20, 22, 24, 27, 35, 36, 37, 42, 48, 49, 53, 59, 61, 62, 63, 64, 73, 78, 79, 80, 84, 87, 90, 91, 95, 97, 98], "socket": [18, 99], "softwar": 76, "solut": [24, 35], "some": [0, 3, 4, 17, 20, 24, 35, 40, 46, 60, 66, 70, 75, 88, 90, 96, 100], "someon": [0, 62], "someth": [62, 63, 80, 99], "sometim": [46, 78, 94], "somewhat": 61, "somewher": 58, "sort": [1, 3, 12, 14, 17, 20, 21, 22, 24, 34, 35, 37, 40, 48, 49, 53, 54, 56, 57, 62, 82, 83, 87, 88, 89, 91, 92, 98, 100], "sort_index": [20, 24, 49, 97], "sort_valu": [17, 20, 24, 49, 90, 97], "sorted_df1": [20, 24, 90], "sorted_df2": [20, 24, 90], "sorter": 12, "sorting_funct": [8, 57], "sortingalgorithm": [24, 50, 86], "sought": [24, 53, 100], "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 68, 73, 75, 76, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 99, 100], "space": [0, 1, 3, 5, 24, 35, 38, 40, 51, 53, 55, 59, 75, 78, 89, 92, 100], "span": [24, 53, 100], "sparrai": [24, 51, 52], "sparrayclass": [24, 52, 57], "spars": [3, 22, 24, 51, 52, 56, 91, 94], "sparse_matrix_matrix_mult": 52, "sparse_sum_help": 56, "sparsematrix": [24, 57], "special": [19, 21, 24, 34, 35, 44, 46, 49, 53, 57, 94, 97], "special_objtyp": [19, 24, 55], "special_str": [24, 53], "specif": [0, 4, 8, 20, 21, 24, 27, 34, 35, 36, 42, 46, 54, 64, 67, 68, 69, 76, 78, 83, 84, 90, 95], "specifi": [1, 3, 4, 5, 6, 8, 9, 11, 14, 16, 19, 20, 21, 22, 24, 25, 27, 28, 34, 35, 36, 37, 38, 39, 41, 42, 46, 48, 49, 52, 53, 54, 55, 56, 58, 59, 63, 69, 84, 87, 89, 90, 91, 95, 96], "speed": [17, 24, 40, 61, 65, 78, 88, 89, 98], "sphinx": [57, 75, 79], "splash": 1, "split": [24, 32, 53, 62, 83], "spread": 84, "sqrt": [7, 22, 24, 36, 37, 42, 87, 91, 95], "squar": [7, 22, 24, 35, 36, 37, 42, 44, 46, 87, 91, 95], "squared_test": [24, 44], "squash": 0, "squeez": [11, 21, 24, 34, 35], "src": [58, 78], "ss": 59, "ssbd": 59, "sse": 59, "sse2": 59, "sse4_1": 59, "sse4_2": 59, "ssegmentedstr": [24, 53], "ssh": 1, "ssse3": 59, "st": 58, "stabl": [14, 24, 50, 86], "stack": [11, 24, 39, 100], "stale": 75, "standard": [0, 4, 15, 17, 22, 24, 35, 36, 37, 38, 42, 46, 55, 58, 59, 60, 87, 91, 92, 95], "standard_exponenti": [36, 42, 83], "standard_norm": [24, 36, 38, 42, 83], "standardize_categori": [17, 24], "start": [0, 3, 4, 5, 8, 17, 20, 21, 22, 24, 25, 29, 31, 32, 34, 35, 37, 38, 48, 49, 50, 53, 55, 68, 83, 86, 88, 89, 91, 93, 96, 100], "startswith": [17, 24, 53, 83, 88, 100], "startup": [1, 73, 83], "stat": [24, 44, 57, 59], "state": [17, 24, 36, 42, 53, 62, 95], "static": [17, 24, 25, 37, 48, 53, 91], "statist": [22, 24, 37, 44, 59, 83, 87, 91], "statistical_funct": [8, 57], "statu": 18, "std": [15, 20, 21, 22, 24, 34, 35, 37, 46, 49, 55, 83, 87, 91, 92], "stddev": 59, "stddev_outli": 59, "stdev": [36, 42, 95], "stdout": [24, 35], "step": [0, 5, 21, 22, 24, 34, 35, 59, 60, 61, 64, 75, 78, 81, 98, 99], "stepfil": 46, "stibp": 59, "stick": [24, 53, 64, 83, 100], "still": [68, 100], "stop": [5, 18, 21, 24, 34, 35, 38, 89, 93], "storag": [20, 24, 49, 59], "storage_opt": [20, 24, 49], "store": [4, 8, 12, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 38, 42, 47, 53, 58, 59, 67, 68, 71, 80, 84, 88, 89, 91, 96, 100], "store_path": [24, 27], "str": [2, 4, 5, 6, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 41, 42, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 59, 67, 84, 87, 88, 89, 90, 91, 94, 95, 99, 100], "str_": [21, 24, 34, 35, 92], "str_acc": [24, 49], "str_scalar": [17, 21, 24, 32, 34, 35, 53, 88, 100], "straight": 62, "strategi": [24, 35, 79, 80, 84], "strdtype": [24, 35], "stream": [4, 8, 36, 42, 63, 95], "streamhandl": 24, "strict": [20, 21, 22, 24, 34, 35, 46, 49, 54, 94], "strict_typ": [24, 27], "stricter": [24, 35], "stricttyp": [24, 27, 84], "stride": [20, 21, 24, 29, 34, 35, 38, 89, 90, 93], "string": [0, 1, 3, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 34, 35, 37, 38, 40, 44, 46, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 62, 78, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 96, 97, 98], "string_": [24, 35], "string_oper": [2, 24], "stringa": [24, 53], "stringaccessor": [2, 24], "stringb": [24, 53], "stringc": [24, 53], "stringifi": [20, 24, 90], "stringio": [24, 35], "strings0": [24, 53], "strings1": [24, 53], "strings2": [24, 53], "strings_arrai": [24, 53, 68], "strings_encodedecod": 59, "strings_end": [24, 53, 100], "strings_pdarrai": [24, 53], "strings_start": [24, 53, 100], "strip": [21, 24, 34, 35, 53], "strive": 62, "strongli": [24, 35], "structur": [17, 20, 24, 35, 48, 66, 70, 90, 91, 94, 96, 100], "strucutur": 96, "stub": 79, "style": [0, 17, 19, 20, 22, 24, 25, 35, 37, 48, 49, 53, 55, 90, 91, 94], "sub": [21, 24, 32, 34, 35, 48, 53, 83, 100], "subclass": [4, 21, 24, 34, 35], "subdir": 76, "subdirectori": 58, "subdomain": [4, 8], "subdtyp": [24, 35], "subject": [1, 24, 55], "subn": [24, 53, 83, 100], "subnorm": [24, 35], "subplot": 46, "subsequ": [24, 35, 68], "subset": [4, 17, 18, 20, 23, 24, 48, 78, 87, 90, 96], "substanti": 62, "substitu": [24, 53, 100], "substitut": [24, 32, 53, 73, 75, 100], "substr": [17, 19, 24, 53, 83, 88], "subsystem": 80, "subtract": 7, "subtyp": [24, 35], "succeed": [24, 35, 94], "success": [17, 18, 20, 24, 25, 27, 29, 35, 37, 48, 53, 94, 99], "successfulli": 77, "sudo": 80, "suffici": [24, 35], "suffix": [20, 24, 27, 48, 53, 68, 83, 100], "suggest": [64, 80], "suitabl": 12, "sum": [7, 15, 20, 21, 22, 24, 34, 35, 36, 37, 42, 48, 49, 55, 56, 83, 87, 91, 92, 95], "summar": [83, 84], "summari": [0, 20, 24], "super": 0, "supercomput": 72, "suppli": [22, 24, 27, 35, 38, 48, 68, 70, 71, 89, 90], "support": [0, 3, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 34, 35, 36, 37, 38, 40, 42, 47, 48, 49, 51, 53, 55, 58, 66, 69, 73, 75, 76, 77, 85, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 100], "supported_opeq": [24, 55], "supported_scalar": [24, 49], "supported_with_datetim": [24, 55], "supported_with_pdarrai": [24, 55], "supported_with_r_datetim": [24, 55], "supported_with_r_pdarrai": [24, 55], "supported_with_r_timedelta": [24, 55], "supported_with_timedelta": [24, 55], "supportsbufferprotocol": 5, "suppress": [20, 24, 35], "sure": [0, 20, 24, 25, 27, 37, 53, 62, 80], "surround": [0, 21, 24, 34, 35, 46], "surviv": [3, 24, 46], "swap": [21, 24, 34, 35], "swapax": [21, 24, 34, 35], "switch": 78, "sy": [20, 21, 22, 24, 34, 35, 46, 49], "symbol": [18, 24, 26, 37, 48, 53, 58, 94], "symentri": 58, "symlink": 80, "symmetr": [3, 21, 22, 24, 34, 35, 40, 48, 66, 83, 98], "symmetric_differ": [21, 22, 24, 34, 35], "symtab": 58, "symtabl": 18, "sync": 77, "synchron": [17, 24], "syntax": 93, "syscal": 59, "system": [1, 17, 24, 35, 36, 37, 42, 47, 53, 58, 59, 75, 77, 78, 79, 80, 81, 84, 87, 88, 94, 95, 99, 100], "t": [0, 3, 4, 8, 20, 21, 24, 27, 34, 35, 40, 53, 55, 58, 62, 63, 64, 75, 76, 77, 80, 82, 100], "t1": [24, 29, 35], "t2": [24, 29, 35], "t3": [24, 35], "tab": [0, 62, 75], "tabl": [3, 18, 20, 24, 26, 37, 48, 49, 53, 58, 59, 94, 96], "tablefmt": [20, 24, 49], "tablul": [20, 24, 49], "tabul": [20, 24, 49, 79], "tag": [0, 24, 27, 30, 62, 64], "tag_data": [24, 27], "tagdata": [24, 27], "taht": 84, "tail": [20, 22, 24, 38, 49, 83, 91], "take": [0, 9, 19, 21, 22, 24, 30, 34, 35, 36, 37, 42, 46, 58, 60, 61, 63, 64, 66, 69, 84, 91, 95], "taken": [62, 78], "tan": [7, 24, 35], "tangent": [7, 24, 35], "tanh": [7, 24, 35], "tar": [73, 75, 76, 77], "target": [24, 28, 35, 38, 59, 61, 62, 75, 84, 89, 93, 94], "task": [1, 18], "tb": 18, "tblgen": 80, "tcp": [18, 73, 99], "team": 62, "technic": [24, 27], "techniqu": 64, "tell": [24, 27, 58, 59, 84], "temp_c": [20, 24], "temp_f": [20, 24], "temp_k": [20, 24], "temporari": [24, 35], "temporarili": 75, "tend": 61, "tensor": [5, 22, 24, 35, 91], "tensordot": 10, "term": [3, 24, 40], "termin": [24, 27, 68, 73, 80, 99], "test": [3, 17, 20, 24, 27, 35, 40, 44, 57, 60, 62, 63, 64, 66, 73, 78, 90, 98], "test_": 0, "test_command": 78, "test_data_url": 1, "testmsg": 78, "text": [24, 35, 62, 67, 84], "texttt": [36, 42, 95], "th": [4, 5, 8, 11, 16, 24, 35, 48, 87, 96], "than": [3, 4, 8, 11, 17, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 48, 49, 50, 53, 60, 62, 63, 70, 84, 86, 88, 89, 90, 91, 94, 95, 98, 100], "thei": [1, 11, 17, 18, 19, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 54, 55, 56, 60, 62, 67, 68, 69, 76, 77, 84, 88, 91, 97], "them": [1, 20, 24, 27, 40, 46, 53, 62, 76, 84, 90, 98], "therefor": 68, "thi": [0, 1, 4, 5, 8, 11, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 27, 30, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 75, 76, 77, 78, 80, 81, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "thin": [19, 24], "thing": [0, 4, 8, 66], "third": [24, 35, 38, 62, 75, 89], "thirti": [3, 24], "those": [0, 4, 8, 16, 24, 35, 50, 66, 76, 78, 86, 93], "though": [20, 24, 66], "thousand": 84, "three": [3, 24, 35, 38, 40, 53, 55, 58, 75, 89, 93, 94, 100], "three_____four____f": [24, 53, 100], "thresh": [20, 24], "threshold": 100, "thrift": 75, "through": [1, 24, 35, 54, 58, 60, 62, 73, 77], "throw": [11, 58], "thrown": [17, 20, 24, 25, 26, 27, 31, 37, 38, 48, 49, 51, 53, 84, 87, 88, 92, 94, 100], "thu": [4, 8, 24, 27, 38, 50, 68, 69, 86, 96], "tiebreak": [3, 24], "tile": 11, "time": [1, 17, 18, 20, 22, 24, 25, 27, 29, 35, 36, 37, 42, 48, 49, 53, 55, 59, 61, 63, 64, 67, 68, 70, 78, 82, 84, 88, 91, 92, 95, 96, 98, 100], "timeclass": [24, 27, 57], "timedelta": [24, 27, 35, 38, 55], "timedelta64": [24, 35, 55], "timedelta64dtyp": [24, 35], "timedelta_rang": [24, 55], "timedeltaindex": [24, 55], "timeout": [1, 18, 99], "timer": 59, "times2": 58, "timeseri": [24, 55], "timestamp": [24, 29], "timezon": [24, 55], "tini": [24, 35], "tip": [65, 75], "titl": [0, 24, 35, 53, 62], "titlecas": [24, 53], "tm": [24, 54, 59], "tmp": [24, 35], "to_csv": [20, 24, 25, 27, 37, 53, 67, 71], "to_cuda": [24, 37], "to_datafram": [24, 49], "to_datetim": [24, 38], "to_devic": [4, 8], "to_dict": [24, 25], "to_hdf": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53, 68, 71, 83, 84, 91], "to_list": [3, 17, 19, 24, 25, 37, 48, 49, 53, 66, 84, 94, 96, 100], "to_markdown": [20, 24, 49], "to_ndarrai": [4, 8, 17, 19, 24, 25, 35, 37, 38, 41, 48, 49, 53, 55, 66, 83, 84, 88, 92, 94, 96, 100], "to_panda": [17, 20, 24, 25, 49, 55, 66, 90, 97], "to_parqet": [24, 37], "to_parquet": [17, 20, 24, 25, 27, 37, 48, 53, 70, 71, 84], "to_pdarrai": [24, 51], "to_str": [17, 24], "to_zarr": [24, 27], "tobyt": [21, 24, 34, 35], "toencod": [24, 53], "tofil": [21, 24, 34, 35], "togeth": [17, 20, 22, 24, 53, 56, 90, 91, 98], "token": [1, 18, 47, 73, 99], "token_hex": 47, "token_str": 73, "token_valu": [18, 99], "toleft": [24, 53, 100], "toler": [24, 54], "tolist": [4, 8, 21, 24, 34, 35], "too": [4, 8, 24, 35, 61, 84], "tooharderror": [24, 35], "tool": [0, 75, 77], "toolset": 66, "top": [24, 49, 58, 63, 68, 75, 76, 77, 80, 81, 97], "topn": [24, 49, 97], "tostr": [21, 24, 34, 35], "total": [18, 20, 22, 24, 27, 35, 53, 59, 84, 91], "total_mem": 18, "total_second": [24, 55], "totestmsg": 78, "touch": 93, "toward": [21, 24, 34, 35, 38, 46], "tp_doc": [24, 35], "trace": [21, 24, 34, 35], "traceback": [24, 54], "track": [0, 63, 70], "trail": [21, 24, 34, 35, 37, 53], "trait": 23, "transfer": [17, 20, 24, 27, 37, 48, 53, 59, 84, 88, 90, 94, 96, 100], "transfer_r": 59, "transform": [24, 25, 36, 42, 95], "transit": 66, "transpos": [4, 8, 21, 24, 34, 35, 48, 84], "treat": [3, 19, 20, 21, 24, 34, 35, 50, 59, 66, 86, 90], "trial": [59, 82], "triangl": [24, 35], "tril": [5, 24, 35], "trim": [24, 35], "triu": [5, 24, 35], "trivial": [3, 24], "true": [1, 3, 5, 6, 12, 14, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 46, 48, 49, 53, 54, 55, 56, 59, 66, 77, 84, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "true_": [24, 35], "true_dt": [24, 29], "trunc": [7, 24, 35], "truncat": [7, 17, 19, 21, 22, 24, 25, 27, 34, 35, 37, 46, 48, 53, 68, 70, 91], "try": [0, 21, 24, 25, 27, 34, 35, 37, 75, 80], "tsc": 59, "tukei": [24, 44], "tune": 1, "tunnel": 1, "tup": [24, 39], "tupl": [3, 4, 5, 6, 8, 11, 12, 13, 15, 16, 17, 19, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 39, 40, 42, 48, 49, 51, 53, 56, 66, 84, 87, 88, 89, 90, 91, 92, 94, 97, 98, 100], "turn": [21, 24, 34, 35, 49, 63, 73, 97], "tutori": 80, "tvkj": [24, 38], "tvkjte": [24, 38], "twenti": [3, 24], "twice": [24, 38, 84], "two": [3, 7, 10, 16, 17, 19, 20, 21, 22, 24, 25, 29, 34, 35, 37, 38, 40, 48, 49, 52, 53, 54, 55, 56, 58, 66, 67, 78, 84, 87, 89, 91, 98, 100], "txt": [1, 24, 35], "typ": [21, 34], "type": [2, 3, 4, 5, 6, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 69, 75, 79, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 95, 96, 97, 98, 99, 100], "typechar": [24, 35], "typecheck": 58, "typecod": [24, 35], "typeerror": [3, 17, 19, 20, 22, 24, 25, 27, 29, 30, 35, 36, 37, 38, 40, 42, 48, 49, 50, 53, 55, 56, 58, 84, 86, 87, 88, 89, 91, 92, 97, 98, 100], "typeguard": 79, "typehint": 79, "typenam": [24, 35], "typevar": 94, "typic": [0, 19, 24, 35, 58, 63, 64, 88], "tz": [24, 55], "tzinfo": [24, 55], "u": [0, 19, 21, 24, 34, 35, 38, 55, 62, 76, 77, 84], "u0": [20, 24, 25], "u0009": [24, 53], "u0009nu000bu000cu000d": [24, 53], "u000b": [24, 53], "u000c": [24, 53], "u000d": [24, 53], "u5": [24, 53, 84, 100], "ub": 46, "ubuntu": 80, "ubyt": [21, 24, 34, 35], "ubytedtyp": [24, 35], "ucs4": [21, 24, 34, 35], "ui": 1, "uint": [3, 20, 21, 24, 27, 34, 35, 37, 38, 53, 67], "uint16": [21, 24, 34, 35, 36, 42, 92], "uint16dtyp": [24, 35], "uint32": [21, 24, 27, 34, 35, 36, 42, 84, 92], "uint32dtyp": [24, 35], "uint64": [3, 19, 21, 22, 24, 34, 35, 36, 37, 38, 42, 50, 59, 68, 82, 86, 87, 89, 90, 92, 94], "uint64dtyp": [24, 35], "uint8": [21, 24, 34, 35, 36, 42, 53, 68, 92, 94, 100], "uint8dtyp": [24, 35], "uintc": [21, 24, 34, 35], "uintdtyp": [24, 35], "uintp": [21, 24, 34, 35], "uintptr_t": [21, 24, 34, 35], "ulongdtyp": [24, 35], "ulonglong": [24, 35], "ulonglongdtyp": [24, 35], "unabl": [17, 19, 20, 22, 24, 25, 37, 49, 53, 55, 91], "unaffect": 59, "unalt": [36, 42], "unbias": [22, 24, 35, 37, 87, 91], "unchang": [17, 21, 24, 34], "uncompress": [24, 35], "undefin": [24, 36, 38, 42, 89], "under": [0, 2, 17, 19, 20, 22, 24, 25, 27, 37, 38, 48, 49, 53, 55, 59, 62, 84, 88, 91, 94, 100], "under_flat": [24, 53, 100], "under_map": [24, 53, 100], "underflow": [24, 35, 94], "underli": [17, 19, 20, 22, 24, 25, 35, 36, 42, 48, 49, 54, 55, 91, 95], "underneath": 62, "underscor": [4, 8], "undoubl": 58, "unequ": [24, 35, 87], "unicod": [21, 24, 34, 35], "unicode_": [21, 24, 34, 35], "uniform": [24, 35, 36, 38, 42, 50, 83, 84, 86, 87, 89], "uniformli": [24, 36, 38, 42, 52, 89, 95], "uniniti": [24, 37], "uninterpret": [24, 35, 94], "union": [5, 17, 18, 20, 21, 22, 24, 26, 27, 29, 34, 35, 36, 37, 38, 39, 40, 42, 48, 50, 52, 53, 66, 83, 84, 86, 87, 88, 89, 91, 92, 94, 97, 98, 100], "union1d": [17, 24, 40, 48, 58, 66, 83, 96, 98], "uniqu": [3, 11, 13, 17, 20, 21, 22, 24, 34, 35, 37, 40, 48, 49, 53, 66, 68, 83, 84, 88, 91, 92, 93, 96, 97, 98, 100], "unique_al": 13, "unique_count": 13, "unique_invers": 13, "unique_kei": [22, 24, 83, 91], "unique_key_idx": 68, "unique_valu": [13, 24, 35, 37, 92], "uniqueallresult": 13, "uniquecountsresult": 13, "uniqueinverseresult": 13, "unit": [0, 1, 18, 20, 24, 25, 35, 49, 54, 55, 56], "unknown": [20, 24, 25, 27, 37, 38, 53], "unless": [1, 20, 22, 24, 27, 35, 36, 42, 53, 91, 95, 100], "unlik": [20, 21, 24, 27, 34, 35, 53, 55], "unlimit": [20, 24], "unnecessari": 64, "unord": [21, 22, 24, 34, 35, 48], "unpack": [24, 53, 73, 77, 100], "unregist": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 56, 83, 91], "unregister_al": [24, 56], "unregister_categorical_by_nam": [17, 24], "unregister_dataframe_by_nam": [20, 24], "unregister_groupby_by_nam": [22, 24, 83, 91], "unregister_pdarray_by_nam": [24, 37], "unregister_segarray_by_nam": [24, 48], "unregister_strings_by_nam": [24, 53], "unrel": 89, "unsaf": [24, 39], "unset": [63, 77], "unsign": [21, 24, 34, 35, 90], "unsignedinteg": [21, 24, 34, 35], "unsort": [20, 24, 90], "unsqueez": [3, 24], "unstabl": [36, 42], "unstack": 11, "unstructur": [24, 35], "unsupport": [22, 24, 27, 47, 50, 84, 98], "unsupportedoper": 28, "unsupportedopt": 28, "unsur": 0, "until": [17, 19, 20, 22, 24, 25, 35, 37, 48, 49, 53, 55, 64, 91], "unus": [17, 24, 27, 39, 84], "up": [1, 3, 17, 18, 20, 22, 24, 27, 35, 37, 40, 48, 53, 58, 60, 61, 64, 65, 75, 76, 77, 78, 84, 87, 88, 89, 98, 100], "updat": [17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 41, 48, 49, 53, 55, 70, 75, 76, 80, 84, 91], "update_hdf": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53], "update_nrow": [20, 24], "upgrad": [75, 79], "upon": [24, 35, 53, 77, 78, 81, 87], "upper": [5, 24, 35, 36, 42, 53, 62, 95], "upper_bounds_exclus": [3, 24], "upper_bounds_inclus": [3, 24], "uppercamelcas": 0, "uppercas": [24, 38, 53], "upstream": [62, 76, 77], "url": [1, 18, 20, 24, 35, 49, 73, 75, 99], "urlnam": [24, 35], "us": [0, 1, 3, 4, 5, 8, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 30, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 46, 47, 48, 49, 50, 53, 54, 55, 56, 58, 59, 60, 61, 62, 65, 67, 68, 69, 70, 76, 77, 80, 81, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "usag": [4, 8, 20, 24, 25, 49, 65, 73, 82, 96, 99], "use_seri": [20, 24, 90], "usedmodul": [63, 64, 78], "usehash": [24, 53], "user": [0, 1, 17, 19, 20, 21, 22, 24, 25, 27, 30, 34, 35, 37, 38, 41, 47, 48, 49, 51, 53, 55, 56, 59, 62, 65, 66, 68, 69, 71, 73, 75, 76, 77, 78, 79, 80, 81, 84, 88, 91, 94, 100], "user_defined_nam": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 91], "userdict": [20, 24, 43], "userid": [20, 24, 90, 91], "usernam": [20, 24, 47, 49, 90], "username_token": 47, "userwarn": [24, 35], "ushort": [21, 24, 34, 35], "ushortdtyp": [24, 35], "usual": [0, 20, 22, 24, 91], "utf": [20, 24, 27, 53], "utf8proc": 75, "util": [0, 24, 27, 57, 62, 75, 76, 77], "utility_funct": [8, 57], "v": [0, 21, 22, 24, 34, 35, 46, 48, 62, 76, 82, 91, 96], "v1": [24, 44], "v10": [24, 35], "v2": [22, 24, 91], "v2022": 62, "v2023": 64, "v5": [24, 35], "val": [3, 21, 22, 24, 34, 35, 46, 48, 49, 56, 91, 96], "val1": 56, "val2": 56, "val_suffix": [24, 48], "valid": [3, 17, 21, 24, 27, 34, 35, 38, 46, 49, 51, 53, 84, 88, 94, 100], "validate_kei": [24, 49], "validate_v": [24, 49], "vals1": 56, "vals2": 56, "valsiz": [24, 48], "valu": [3, 4, 5, 7, 8, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 34, 35, 36, 37, 38, 40, 42, 44, 46, 48, 49, 51, 53, 54, 55, 56, 58, 59, 66, 68, 70, 77, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 94, 95, 96, 98, 99, 100], "valuabl": 78, "value_count": [24, 35, 37, 49, 83, 92, 97], "value_label": [24, 49], "value_nam": [24, 48], "value_s": [59, 82], "valueerror": [3, 4, 8, 11, 17, 18, 20, 21, 22, 24, 25, 27, 28, 29, 34, 35, 36, 37, 38, 40, 42, 48, 49, 50, 51, 52, 53, 84, 86, 87, 88, 89, 91, 92, 96, 97, 99, 100], "values2": [22, 24, 91], "valuetypeerror": [24, 35], "vandermond": [24, 35], "vanish": [21, 34], "var": [0, 1, 15, 20, 21, 22, 24, 34, 35, 37, 46, 49, 58, 83, 87, 91, 92], "vari": [24, 35, 37, 54, 66, 75, 77, 79, 81, 96], "variabl": [0, 22, 24, 27, 29, 36, 37, 42, 46, 47, 48, 53, 58, 59, 60, 76, 77, 78, 87, 91, 95, 96, 100], "varianc": [15, 22, 24, 36, 37, 42, 46, 87, 91, 92, 95], "variat": 46, "varieti": [36, 42, 95], "variou": [1, 67], "vcxsrv": 80, "ve": [64, 75, 76, 77], "vecdot": [10, 24, 35], "vecentropi": 46, "vector": [5, 19, 22, 24, 35, 83, 91], "vendor_id_raw": 59, "venv": 75, "verbos": [1, 24, 26, 30], "veri": [0, 20, 24, 35, 66, 89, 90], "verifi": [0, 1, 20, 24, 69, 80, 84, 90], "versa": [84, 90], "version": [0, 17, 20, 21, 24, 34, 35, 44, 56, 59, 62, 68, 73, 75, 76, 77, 79, 80], "version_info": [21, 34], "versionad": [24, 35], "versu": [24, 27, 84], "vertic": [24, 39, 48, 49, 96], "verticl": [24, 49, 97], "via": [0, 1, 17, 20, 21, 22, 24, 34, 35, 37, 38, 53, 75, 76, 77, 84, 88, 91, 93, 94, 95, 100], "vice": [84, 90], "view": [4, 8, 21, 24, 34, 35, 62, 66, 71, 75, 81, 94], "violat": [24, 35], "virtual": 75, "visibl": [17, 18, 24, 25, 27, 37, 48, 53, 99], "visit": [73, 76, 77], "visual": [24, 41], "vm": 80, "vme": 59, "void": [24, 35], "voiddtyp": [24, 35], "vstack": [24, 39], "vsxrrl": [24, 38], "w": [17, 22, 24, 25, 31, 35, 37, 53, 55, 91, 100], "wa": [0, 17, 18, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 48, 49, 53, 55, 63, 68, 69, 75, 77, 84, 91, 94, 96], "wai": [18, 24, 35, 36, 42, 59, 63, 68, 73, 78, 87, 88, 89, 90, 94, 95, 100], "walk": [58, 60, 73], "want": [0, 1, 20, 21, 24, 34, 58, 73, 77, 79, 80, 90], "warmup": 59, "warn": [1, 5, 7, 10, 11, 24, 27, 30, 35, 53, 84, 100], "warn_on_python": [24, 35], "we": [0, 1, 3, 4, 20, 21, 24, 25, 27, 34, 35, 36, 37, 40, 42, 53, 54, 56, 58, 59, 60, 62, 64, 66, 67, 70, 75, 76, 77, 79, 80, 92, 94, 95], "web": [0, 62], "week": [24, 55, 91], "weekdai": [24, 55], "weekofyear": [24, 55], "weight": [20, 22, 24, 36, 42, 91, 95], "welcom": 0, "well": [19, 24, 35, 54, 59, 66, 79], "went": 99, "were": [3, 22, 24, 25, 27, 35, 37, 48, 53, 63, 78, 91, 96, 100], "wget": 76, "what": [0, 21, 24, 34, 35, 36, 39, 42, 48, 58, 62, 63, 64, 78, 99], "wheel": 75, "when": [0, 1, 3, 12, 17, 18, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 40, 48, 49, 51, 53, 54, 55, 56, 58, 59, 62, 63, 64, 66, 68, 70, 75, 77, 78, 79, 80, 84, 87, 88, 90, 91, 94, 96, 98], "whenev": [24, 35, 100], "where": [1, 3, 4, 8, 11, 12, 17, 18, 20, 22, 24, 25, 27, 28, 29, 35, 36, 37, 38, 40, 42, 47, 48, 53, 56, 58, 59, 60, 61, 68, 73, 76, 77, 83, 84, 89, 91, 92, 93, 94, 95, 96, 98, 99, 100], "wherea": 100, "wherev": 64, "whether": [5, 6, 11, 12, 14, 15, 16, 17, 20, 21, 22, 24, 25, 27, 29, 31, 34, 35, 37, 40, 48, 49, 53, 54, 55, 66, 84, 88, 96, 97, 98, 100], "which": [0, 3, 5, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 39, 40, 42, 48, 49, 50, 53, 54, 55, 59, 61, 62, 64, 66, 75, 76, 77, 78, 82, 84, 86, 87, 88, 89, 90, 91, 94, 95, 96, 98, 99, 100], "whichev": 80, "whicn": [18, 99], "while": [3, 24, 27, 50, 58, 64, 68, 70, 75, 80, 84, 86], "whitespac": [21, 24, 27, 34, 35, 46, 53], "whl": 75, "who": [0, 76, 77], "whole": [24, 53, 62, 100], "whose": [5, 11, 20, 21, 24, 34, 35, 48, 49, 53, 97], "why": 58, "wide": [36, 42, 95, 100], "width": [19, 24, 35, 100], "wiki": [0, 24, 35, 44], "wikipedia": [24, 35, 44], "window": [24, 29, 47, 73, 81], "wise": [7, 17, 24, 35, 37, 39, 83], "wish": 78, "within": [5, 11, 17, 18, 20, 22, 23, 24, 25, 27, 35, 36, 37, 38, 42, 48, 53, 59, 68, 70, 89, 90, 91, 95, 96], "without": [5, 17, 24, 27, 35, 36, 37, 42, 64, 75, 84, 90, 95], "won": 64, "word": [3, 24, 36, 42, 95], "work": [0, 17, 20, 24, 27, 37, 40, 43, 53, 63, 66, 68, 70, 76, 77, 78, 84, 88, 90, 93, 98, 100], "workflow": [0, 24, 27, 56, 62, 78, 84], "workhors": 91, "world": [24, 36, 42, 53, 84, 95, 100], "worri": 63, "wors": 63, "would": [12, 24, 35, 56, 60, 64, 69, 84, 87, 91], "wrap": 58, "wraparound": 59, "wrapper": [4, 5, 7, 8, 19, 21, 24, 34, 35, 54, 94], "writ": 70, "write": [1, 4, 8, 17, 20, 24, 25, 27, 28, 30, 35, 37, 48, 49, 53, 58, 59, 62, 67, 84], "write_fil": [24, 27, 84], "write_line_to_fil": 28, "write_log": [24, 30], "writeln": 0, "written": [17, 20, 22, 24, 25, 27, 28, 30, 35, 37, 48, 49, 53, 58, 67, 68, 69, 70, 71, 75, 84, 91, 94], "wrong": [24, 27, 99], "wrote": 0, "wsl": [75, 80], "wsl2": [59, 81], "wslconfig": 80, "wt": [20, 24, 49], "www": [24, 35], "x": [0, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24, 27, 34, 35, 36, 37, 41, 42, 44, 45, 46, 48, 53, 56, 58, 66, 80, 84, 87, 88, 90, 91, 94, 95, 96, 100], "x00": [21, 24, 34, 35], "x00b": [21, 24, 34, 35], "x00c": [21, 24, 34, 35], "x1": [7, 10, 12, 24, 35], "x2": [7, 10, 12, 24, 35], "x410": 80, "x61": [24, 35], "x62": [24, 35], "x63": [24, 35], "x64": [24, 35], "x86": 76, "x86_64": [21, 24, 34, 35, 59, 76, 80], "x_edg": [24, 35], "xgetbv1": 59, "xlabel": [24, 41], "xlogi": [24, 45], "xor": [7, 20, 22, 24, 37, 48, 83, 91], "xore": [24, 35], "xsave": 59, "xsavec": 59, "xsaveopt": 59, "xserver": 80, "xtol": 46, "xtopologi": 59, "xvf": 76, "xy": 5, "xzf": [73, 77], "y": [21, 24, 34, 35, 37, 41, 44, 45, 46, 58, 60, 76], "y_edg": [24, 35], "yaml": 79, "yaml_fil": 79, "ye": 60, "year": [24, 55], "yet": [3, 5, 7, 10, 24, 48, 75, 84], "yield": [1, 17, 20, 24, 25, 27, 35, 37, 48, 53, 90, 93], "yml": [73, 76, 77, 79], "you": [0, 1, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 48, 49, 53, 55, 58, 59, 60, 62, 63, 64, 65, 66, 68, 69, 73, 75, 76, 77, 78, 79, 80, 81, 90, 91, 93], "your": [0, 1, 20, 24, 25, 27, 35, 37, 53, 60, 61, 62, 64, 65, 73, 75, 76, 77, 78, 79, 80, 81, 90, 99, 100], "your_fork": [76, 77], "your_machin": 73, "yum": 76, "yyyi": 62, "z": [24, 35], "zarr": [4, 8, 24, 27], "zarrai": [24, 27], "zarrmsg": [24, 27], "zero": [5, 12, 21, 22, 24, 34, 35, 37, 38, 46, 52, 62, 83, 89, 91, 93, 94], "zero_up": [3, 24], "zerodivisionerror": [24, 37, 38, 89], "zeromq": [75, 79], "zeros_lik": [5, 24, 38, 83, 89], "zig": [36, 42, 95], "ziggurat": [36, 42, 95], "zip": 73, "zmq": [1, 75], "zmqchannel": [18, 99], "zone": [24, 55], "zsh": 77, "zshrc": 77, "zstd": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70], "\u00b2": [24, 53]}, "titles": ["Contributing", "Environment Variables", "arkouda.accessor", "arkouda.alignment", "arkouda.array_api.array_object", "arkouda.array_api.creation_functions", "arkouda.array_api.data_type_functions", "arkouda.array_api.elementwise_functions", "arkouda.array_api", "arkouda.array_api.indexing_functions", "arkouda.array_api.linalg", "arkouda.array_api.manipulation_functions", "arkouda.array_api.searching_functions", "arkouda.array_api.set_functions", "arkouda.array_api.sorting_functions", "arkouda.array_api.statistical_functions", "arkouda.array_api.utility_functions", "arkouda.categorical", "arkouda.client", "arkouda.client_dtypes", "arkouda.dataframe", "arkouda.dtypes", "arkouda.groupbyclass", "arkouda.history", "arkouda", "arkouda.index", "arkouda.infoclass", "arkouda.io", "arkouda.io_util", "arkouda.join", "arkouda.logger", "arkouda.match", "arkouda.matcher", "arkouda.numeric", "arkouda.numpy.dtypes", "arkouda.numpy", "arkouda.numpy.random", "arkouda.pdarrayclass", "arkouda.pdarraycreation", "arkouda.pdarraymanipulation", "arkouda.pdarraysetops", "arkouda.plotting", "arkouda.random", "arkouda.row", "arkouda.scipy", "arkouda.scipy.special", "arkouda.scipy.stats", "arkouda.security", "arkouda.segarray", "arkouda.series", "arkouda.sorting", "arkouda.sparrayclass", "arkouda.sparsematrix", "arkouda.strings", "arkouda.testing", "arkouda.timeclass", "arkouda.util", "API Reference", "Adding Your First Feature", "PyTest Benchmarks", "GASNet Development", "Reducing Memory Usage of Arkouda Builds", "Release Process", "Speeding up Arkouda Compilation", "Tips for Reproducing User Bugs", "Developer Documentation", "Examples", "CSV", "HDF5", "Import/Export", "Parquet", "File I/O", "Arkouda Documentation", "Quickstart", "Chapel API Reference", "Building the Server", "Linux", "MacOS", "Modular Server Builds", "Requirements", "Windows (WSL2)", "Installation", "Performance Testing", "Usage Guide", "Data I/O", "Indexs in Arkouda", "Sorting", "Arithmetic and Numeric Operations", "Categoricals", "Creating Arrays", "DataFrames in Arkouda", "GroupBy", "Summarizing Data", "Indexing and Assignment", "The pdarray class", "Random in Arkouda", "SegArrays in Arkouda", "Series in Arkouda", "Array Set Operations", "Startup", "Strings in Arkouda"], "titleterms": {"3": [73, 99], "The": [59, 94], "access": 96, "accessor": 2, "ad": [0, 1, 58, 78], "align": 3, "all": 75, "alwai": 63, "an": 78, "anaconda": [76, 77, 79], "api": [57, 67, 68, 69, 70, 71, 74], "append": [90, 96], "argsort": [82, 85], "argument": [59, 82], "arithmet": 87, "arkouda": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 61, 63, 66, 67, 68, 70, 72, 73, 75, 76, 77, 78, 85, 90, 95, 96, 97, 99, 100], "arrai": [66, 89, 96, 98], "array_api": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "array_object": 4, "arrow": 75, "assign": 93, "attribut": [4, 24, 26, 35, 47, 48, 68], "basic": 66, "benchmark": 59, "between": 84, "bug": [0, 64], "build": [60, 61, 63, 64, 75, 77, 78], "cast": 94, "categor": [17, 68, 70, 88], "chang": 85, "chapel": [0, 1, 60, 74, 75, 76, 77], "choic": 95, "class": [2, 4, 6, 8, 13, 17, 19, 20, 21, 22, 23, 24, 25, 30, 31, 32, 34, 35, 36, 37, 42, 43, 44, 46, 48, 49, 51, 53, 55, 94], "client": [1, 18, 58, 73, 84, 99], "client_dtyp": 19, "clone": [76, 77], "code": 0, "column": 90, "compil": [1, 63], "compress": 70, "concat": 85, "concaten": [89, 90], "conda": 75, "configur": [60, 68, 75, 78], "connect": [73, 99], "constant": 89, "construct": 88, "content": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "contribut": 0, "convent": 0, "copi": 90, "core": 0, "count": [92, 97], "creat": [66, 89], "creation": [66, 95], "creation_funct": 5, "csv": 67, "custom": 78, "data": [67, 68, 70, 84, 90, 92, 94], "data_type_funct": 6, "datafram": [20, 66, 67, 68, 70, 90], "dataset": 84, "dedupl": [90, 96], "depend": [1, 73, 75, 79], "descript": 92, "develop": [0, 60, 65, 79], "diff": 62, "differ": 96, "directori": 1, "disconnect": 73, "disk": 84, "distribut": [68, 75], "document": [65, 72, 75], "drop": 90, "dtype": [21, 34, 85], "effici": 64, "element": [87, 96], "elementwise_funct": 7, "environ": [1, 60, 63, 75, 76, 77], "exampl": [58, 66, 67], "except": [3, 24, 37], "exponenti": 95, "export": [66, 69, 71, 84], "express": 100, "featur": [0, 58, 85, 90, 95, 97], "file": [59, 67, 68, 71, 78, 84], "filter": 90, "first": 58, "flag": 1, "flatten": 100, "format": [67, 71, 84], "from": [1, 77, 84], "full": [59, 64], "function": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 26, 27, 28, 29, 30, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 47, 48, 50, 51, 52, 54, 55, 56, 58, 71, 87], "gasnet": 60, "gather": [82, 93], "gener": [62, 71], "get": 75, "git": 62, "groupbi": [66, 68, 90, 91], "groupbyclass": 22, "guid": [81, 83], "hdf5": 68, "head": [90, 97], "header": 67, "histogram": 92, "histori": 23, "homebrew": 77, "i": [71, 84, 100], "import": [66, 69, 71, 84], "index": [25, 67, 68, 70, 85, 90, 93], "indexing_funct": 9, "individu": 75, "infoclass": 26, "instal": [73, 75, 76, 77, 79, 81], "instruct": 62, "integ": [93, 95], "integr": 97, "interact": 66, "interfac": 58, "intersect": 96, "io": 27, "io_util": 28, "issu": 0, "iter": [88, 90, 94, 96, 100], "join": [29, 100], "json": 59, "l": 71, "larg": 84, "launch": [73, 99], "legaci": 68, "linalg": 10, "lint": 0, "linux": 76, "list": 79, "log": 62, "logger": 30, "logic": 93, "logist": 95, "lognorm": 95, "lookup": [85, 97], "maco": 77, "makefil": 1, "manipulation_funct": 11, "manual": 75, "map": 66, "match": [31, 100], "matcher": 32, "memori": 61, "merg": 0, "metadata": 68, "method": [96, 100], "mode": [68, 70], "modul": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 78], "modular": [63, 75, 78], "name": [82, 94], "new": 78, "next": [76, 77], "ngram": 96, "normal": 95, "note": 62, "numer": [33, 87], "numpi": [34, 35, 36], "o": [71, 84, 100], "object": [66, 100], "onli": 0, "oper": [66, 87, 88, 94, 96, 98, 100], "output": 59, "outsid": 1, "overview": 81, "packag": [8, 21, 24, 42, 54, 75], "panda": [66, 97], "parquet": 70, "path": 1, "pdarrai": [66, 67, 68, 70, 93, 94], "pdarrayclass": 37, "pdarraycr": 38, "pdarraymanipul": 39, "pdarraysetop": 40, "perform": [82, 96, 100], "permut": [90, 95], "pip": [75, 79], "plot": 41, "poisson": 95, "posit": 82, "prefix": 96, "prepend": 96, "preprocess": 84, "process": [0, 62, 78], "pull": 0, "py": 75, "pytest": 59, "python": [0, 1, 58, 66, 73, 76, 77, 79, 99], "python3": 0, "quickstart": 73, "random": [36, 42, 89, 95], "rank": 94, "read": [59, 71, 84], "recommend": [75, 77], "reduc": [61, 82], "reduct": 87, "refer": [57, 67, 68, 69, 70, 74], "regular": [89, 100], "releas": [0, 62], "renam": 90, "report": 0, "repositori": [76, 77], "reproduc": 64, "request": 0, "requir": [79, 81], "reset": 90, "reshap": 94, "review": 0, "rhel": 76, "row": 43, "run": [0, 1, 59, 60, 78], "save": [64, 78], "scalar": 87, "scan": [82, 87], "scatter": [82, 93], "schema": 68, "scipi": [44, 45, 46], "search": 100, "searching_funct": 12, "secur": 47, "segarrai": [48, 68, 70, 96], "seri": [49, 97], "server": [58, 73, 75, 78, 84, 99], "set": [63, 66, 96, 98], "set_funct": 13, "setop": 96, "shuffl": 95, "shutdown": 73, "singl": 59, "size": 96, "slice": 93, "sort": [50, 86, 90, 97], "sorting_funct": 14, "sourc": 77, "sparrayclass": 51, "sparsematrix": 52, "special": 45, "specif": [79, 96, 100], "specifi": 78, "speed": 63, "split": 100, "src": 1, "standard_exponenti": 95, "standard_norm": 95, "start": 75, "startup": 99, "stat": 46, "statist": 92, "statistical_funct": 15, "step": [62, 76, 77], "stream": 82, "string": [53, 67, 68, 70, 100], "sub": 96, "submodul": [8, 24, 35, 44], "subpackag": 24, "substr": 100, "suffix": 96, "suit": 59, "summar": 92, "support": [67, 68, 70, 71, 84], "symmetr": 96, "system": 63, "tail": [90, 97], "team": 0, "test": [0, 1, 54, 59, 82], "timeclass": 55, "tip": 64, "troubleshoot": 75, "type": [67, 68, 70, 90, 94], "ubuntu": 76, "uniform": 95, "union": 96, "up": 63, "updat": [77, 79], "us": [63, 66, 73, 75, 78, 79], "usag": [61, 83], "user": 64, "util": 56, "utility_funct": 16, "valu": [92, 97], "variabl": [1, 63], "vector": 87, "where": 87, "window": 80, "wise": 87, "without": 67, "write": [0, 68, 70, 71], "wsl2": 80, "your": 58}}) \ No newline at end of file +Search.setIndex({"alltitles": {"API Reference": [[57, null], [67, "api-reference"], [68, "api-reference"], [69, "api-reference"], [70, "api-reference"]], "Access/Set Specific Elements in Sub-Array": [[96, "access-set-specific-elements-in-sub-array"]], "Adding Functionality to the Arkouda Server": [[58, "adding-functionality-to-the-arkouda-server"]], "Adding Issues": [[0, "adding-issues"]], "Adding Python Functionality (Client Interface)": [[58, "adding-python-functionality-client-interface"]], "Adding Your First Feature": [[58, null]], "Adding a Module from Outside the Arkouda src Directory": [[1, "adding-a-module-from-outside-the-arkouda-src-directory"]], "Adding new modules into the build process": [[78, "adding-new-modules-into-the-build-process"]], "All Dependencies": [[75, "all-dependencies"]], "Anaconda": [[77, "anaconda"]], "Append": [[90, "append"]], "Append & Prepend": [[96, "append-prepend"]], "ArgSort": [[85, "argsort"]], "Argsort": [[82, "argsort"]], "Arithmetic and Numeric Operations": [[87, null]], "Arkouda Arrays": [[66, "arkouda-arrays"]], "Arkouda DataFrames": [[66, "arkouda-dataframes"]], "Arkouda Documentation": [[72, null]], "Arkouda Formatted File": [[67, "arkouda-formatted-file"]], "Array Set Operations": [[98, null]], "Arrow Install Troubleshooting": [[75, "arrow-install-troubleshooting"]], "Attributes": [[4, "attributes"], [24, "attributes"], [26, "attributes"], [35, "attributes"], [47, "attributes"], [48, "attributes"]], "Basic Interaction": [[66, "basic-interaction"]], "Benchmark Arguments": [[59, "benchmark-arguments"]], "Between client and server": [[84, "between-client-and-server"]], "Bug Reports": [[0, "bug-reports"]], "Build Arkouda": [[60, "build-arkouda"]], "Build Chapel with GASNet": [[60, "build-chapel-with-gasnet"]], "Build from Source (Recommended)": [[77, "build-from-source-recommended"]], "Build the Server": [[75, "build-the-server"]], "Building the Arkouda Documentation": [[75, "building-the-arkouda-documentation"]], "Building the Server": [[75, null]], "CSV": [[67, null]], "Categorical": [[68, "categorical"], [68, "id3"], [70, "categorical"]], "Categoricals": [[88, null]], "Change Dtype": [[85, "change-dtype"]], "Chapel": [[0, "chapel"]], "Chapel API Reference": [[74, null]], "Chapel Compiler Flags": [[1, "chapel-compiler-flags"]], "Chapel Installation": [[76, "chapel-installation"]], "Classes": [[2, "classes"], [4, "classes"], [6, "classes"], [8, "classes"], [13, "classes"], [17, "classes"], [19, "classes"], [20, "classes"], [21, "classes"], [22, "classes"], [23, "classes"], [24, "classes"], [25, "classes"], [30, "classes"], [31, "classes"], [32, "classes"], [34, "classes"], [35, "classes"], [36, "classes"], [37, "classes"], [42, "classes"], [43, "classes"], [44, "classes"], [46, "classes"], [48, "classes"], [49, "classes"], [51, "classes"], [53, "classes"], [55, "classes"]], "Clone Arkouda Repository": [[76, "clone-arkouda-repository"], [77, "clone-arkouda-repository"]], "Coding Conventions and Linting": [[0, "coding-conventions-and-linting"]], "Compilation / Makefile": [[1, "compilation-makefile"]], "Compression": [[70, "compression"]], "Concat": [[85, "concat"]], "Concatenate": [[90, "concatenate"]], "Concatenation": [[89, "concatenation"]], "Connect a Python 3 client": [[99, "connect-a-python-3-client"]], "Connect the Python 3 Client": [[73, "connect-the-python-3-client"]], "Constant": [[89, "constant"]], "Construction": [[88, "construction"]], "Contributing": [[0, null]], "Copy": [[90, "copy"]], "Core Development Team Only": [[0, "core-development-team-only"]], "Creating & Using a DataFrame": [[66, "creating-using-a-dataframe"]], "Creating Arrays": [[89, null]], "Creation": [[95, "creation"]], "Data Distribution": [[68, "data-distribution"]], "Data Formatting": [[67, "data-formatting"]], "Data I/O": [[84, null]], "Data Preprocessing": [[84, "data-preprocessing"]], "Data Schema": [[68, "data-schema"]], "Data Type": [[94, "data-type"]], "Data Types": [[90, "data-types"]], "DataFrame": [[67, "dataframe"], [68, "dataframe"], [70, "dataframe"]], "DataFrames": [[66, "dataframes"]], "DataFrames in Arkouda": [[90, null]], "Deduplication": [[90, "deduplication"], [96, "deduplication"]], "Dependencies": [[75, "dependencies"]], "Dependency Configuration": [[75, "dependency-configuration"]], "Dependency List": [[79, "dependency-list"]], "Dependency Paths": [[1, "dependency-paths"]], "Descriptive Statistics": [[92, "descriptive-statistics"]], "Developer Documentation": [[65, null]], "Developer Specific": [[79, "developer-specific"]], "Developing Arkouda": [[0, "developing-arkouda"]], "Diff the git logs": [[62, "diff-the-git-logs"]], "Distributable Package": [[75, "distributable-package"]], "Drop": [[90, "drop"]], "Element-wise Functions": [[87, "element-wise-functions"]], "Environment Configuration": [[60, "environment-configuration"]], "Environment Variables": [[1, null]], "Environment Variables to Always Set": [[63, "environment-variables-to-always-set"]], "Example": [[58, "example"], [58, "id1"]], "Example Files": [[67, "example-files"]], "Examples": [[66, null]], "Exceptions": [[3, "exceptions"], [24, "exceptions"], [37, "exceptions"]], "Export": [[69, "export"]], "Exporting pdarray Objects": [[66, "exporting-pdarray-objects"]], "Exporting to Pandas": [[66, "exporting-to-pandas"]], "Feature Requests": [[0, "feature-requests"]], "Features": [[85, "features"], [90, "features"], [95, "features"], [97, "features"]], "File Configuration": [[68, "file-configuration"]], "File Formatting": [[67, "file-formatting"]], "File I/O": [[71, null]], "File Without Header": [[67, "file-without-header"]], "Filter": [[90, "filter"]], "Flattening": [[100, "flattening"]], "Functions": [[2, "functions"], [3, "functions"], [4, "functions"], [5, "functions"], [6, "functions"], [7, "functions"], [9, "functions"], [10, "functions"], [11, "functions"], [12, "functions"], [13, "functions"], [14, "functions"], [15, "functions"], [16, "functions"], [18, "functions"], [19, "functions"], [20, "functions"], [21, "functions"], [22, "functions"], [24, "functions"], [26, "functions"], [27, "functions"], [28, "functions"], [29, "functions"], [30, "functions"], [34, "functions"], [35, "functions"], [36, "functions"], [37, "functions"], [38, "functions"], [39, "functions"], [40, "functions"], [41, "functions"], [42, "functions"], [44, "functions"], [45, "functions"], [47, "functions"], [48, "functions"], [50, "functions"], [51, "functions"], [52, "functions"], [54, "functions"], [55, "functions"], [56, "functions"]], "GASNet Development": [[60, null]], "Gather": [[82, "gather"]], "Gather/Scatter (pdarray)": [[93, "gather-scatter-pdarray"]], "General I/O API": [[71, "general-i-o-api"]], "Generating release notes": [[62, "generating-release-notes"]], "Getting Started": [[75, "getting-started"]], "GroupBy": [[66, "groupby"], [68, "groupby"], [68, "id5"], [90, "groupby"], [91, null]], "HDF5": [[68, null]], "Head/Tail": [[97, "head-tail"]], "Histogram": [[92, "histogram"]], "Homebrew": [[77, "homebrew"]], "I/O": [[100, "i-o"]], "Import": [[69, "import"]], "Import/Export": [[69, null], [84, "import-export"]], "Import/Export Support": [[71, "import-export-support"]], "Importing Pandas DataFrame": [[66, "importing-pandas-dataframe"]], "Index": [[67, "index"], [68, "index"], [70, "index"]], "Indexing and Assignment": [[93, null]], "Indexs in Arkouda": [[85, null]], "Individual Installs": [[75, "individual-installs"]], "Install Arkouda": [[73, "install-arkouda"]], "Install Chapel": [[77, "install-chapel"]], "Install Chapel (RHEL)": [[76, "install-chapel-rhel"]], "Install Chapel (Ubuntu)": [[76, "install-chapel-ubuntu"]], "Install Dependencies": [[73, "install-dependencies"]], "Install Guides": [[81, "install-guides"]], "Installation": [[81, null]], "Installing Dependencies Manually": [[75, "installing-dependencies-manually"]], "Installing/Updating Python Dependencies": [[79, "installing-updating-python-dependencies"]], "Integer": [[93, "integer"]], "Integer pdarray index": [[93, "integer-pdarray-index"]], "Intersect": [[96, "intersect"]], "Iteration": [[88, "iteration"], [90, "iteration"], [94, "iteration"], [96, "iteration"], [100, "iteration"]], "Large Datasets": [[84, "large-datasets"]], "Launch arkouda server": [[99, "launch-arkouda-server"]], "Launching the Server": [[73, "launching-the-server"]], "Legacy File Support": [[68, "legacy-file-support"]], "Linux": [[76, null]], "Logical indexing": [[93, "logical-indexing"]], "Lookup": [[85, "lookup"], [97, "lookup"], [97, "id1"]], "MacOS": [[77, null]], "Match Object": [[100, "match-object"]], "Merging Pull Requests": [[0, "merging-pull-requests"]], "MetaData Attributes": [[68, "metadata-attributes"]], "Modular Building": [[75, "modular-building"]], "Modular Server Builds": [[78, null]], "Module Contents": [[2, "module-contents"], [3, "module-contents"], [4, "module-contents"], [5, "module-contents"], [6, "module-contents"], [7, "module-contents"], [9, "module-contents"], [10, "module-contents"], [11, "module-contents"], [12, "module-contents"], [13, "module-contents"], [14, "module-contents"], [15, "module-contents"], [16, "module-contents"], [17, "module-contents"], [18, "module-contents"], [19, "module-contents"], [20, "module-contents"], [22, "module-contents"], [23, "module-contents"], [25, "module-contents"], [26, "module-contents"], [27, "module-contents"], [28, "module-contents"], [29, "module-contents"], [30, "module-contents"], [31, "module-contents"], [32, "module-contents"], [34, "module-contents"], [35, "module-contents"], [36, "module-contents"], [37, "module-contents"], [38, "module-contents"], [39, "module-contents"], [40, "module-contents"], [41, "module-contents"], [43, "module-contents"], [44, "module-contents"], [45, "module-contents"], [46, "module-contents"], [47, "module-contents"], [48, "module-contents"], [49, "module-contents"], [50, "module-contents"], [51, "module-contents"], [52, "module-contents"], [53, "module-contents"], [55, "module-contents"], [56, "module-contents"]], "NGrams": [[96, "ngrams"]], "Name": [[94, "name"]], "Named Arguments": [[82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"]], "Next Steps": [[76, "next-steps"], [77, "next-steps"]], "Operation": [[96, "operation"]], "Operations": [[88, "operations"], [100, "operations"]], "Operators": [[94, "operators"]], "Overview": [[81, "overview"]], "Package Contents": [[8, "package-contents"], [21, "package-contents"], [24, "package-contents"], [42, "package-contents"], [54, "package-contents"]], "Pandas Integration": [[97, "pandas-integration"]], "Parquet": [[70, null]], "Performance": [[96, "performance"], [100, "performance"]], "Performance Testing": [[82, null]], "Permutations": [[90, "permutations"]], "Positional Arguments": [[82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"]], "Prefix & Suffix": [[96, "prefix-suffix"]], "PyTest Benchmarks": [[59, null]], "Python Client": [[1, "python-client"]], "Python Dependencies": [[79, "python-dependencies"]], "Python Environment - Anaconda": [[77, "python-environment-anaconda"]], "Python Environment - Anaconda (Linux)": [[76, "python-environment-anaconda-linux"]], "Python Mapping": [[66, "python-mapping"]], "Python3": [[0, "python3"]], "Quickstart": [[73, null]], "Random": [[89, "random"]], "Random in Arkouda": [[95, null]], "Rank": [[94, "rank"]], "Read": [[71, "read"]], "Reading data from disk": [[84, "reading-data-from-disk"]], "Reading the JSON Output": [[59, "reading-the-json-output"]], "Reduce": [[82, "reduce"]], "Reducing Memory Usage of Arkouda Builds": [[61, null]], "Reductions": [[87, "reductions"]], "Regular": [[89, "regular"]], "Regular Expressions": [[100, "regular-expressions"]], "Release Process": [[0, "release-process"], [62, null]], "Rename Columns": [[90, "rename-columns"]], "Reproducing User Bugs Efficiently": [[64, "reproducing-user-bugs-efficiently"]], "Requirements": [[79, null], [81, "requirements"]], "Reset Indexes": [[90, "reset-indexes"]], "Reshape": [[94, "reshape"]], "Reviewing Pull Requests": [[0, "reviewing-pull-requests"]], "Run Arkouda": [[60, "run-arkouda"]], "Running": [[1, "running"]], "Running Single Files or Tests": [[59, "running-single-files-or-tests"]], "Running The Full Suite": [[59, "running-the-full-suite"]], "Running chapel tests": [[0, "running-chapel-tests"]], "Running python tests": [[0, "running-python-tests"]], "Saving Full Builds": [[64, "saving-full-builds"]], "Saving modules used in an Arkouda server run": [[78, "saving-modules-used-in-an-arkouda-server-run"]], "Scan": [[82, "scan"]], "Scans": [[87, "scans"]], "Scatter": [[82, "scatter"]], "SegArray": [[68, "segarray"], [68, "id4"], [70, "segarray"]], "SegArray SetOps": [[96, "segarray-setops"]], "SegArray Specific Methods": [[96, "segarray-specific-methods"]], "SegArrays in Arkouda": [[96, null]], "Series in Arkouda": [[97, null]], "Set Difference": [[96, "set-difference"]], "Shutdown/Disconnect": [[73, "shutdown-disconnect"]], "Slice": [[93, "slice"]], "Sorting": [[86, null], [90, "sorting"], [97, "sorting"]], "Specifying a custom configuration file": [[78, "specifying-a-custom-configuration-file"]], "Speeding up Arkouda Compilation": [[63, null]], "Splitting and joining": [[100, "splitting-and-joining"]], "Startup": [[99, null]], "Step-by-step instructions": [[62, "step-by-step-instructions"]], "Stream": [[82, "stream"]], "String-Specific Methods": [[100, "string-specific-methods"]], "Strings": [[67, "strings"], [68, "strings"], [68, "id2"], [70, "strings"]], "Strings in Arkouda": [[100, null]], "Sub-array of Size": [[96, "sub-array-of-size"]], "Submodules": [[8, "submodules"], [24, "submodules"], [35, "submodules"], [44, "submodules"]], "Subpackages": [[24, "subpackages"]], "Substring search": [[100, "substring-search"]], "Summarizing Data": [[92, null]], "Support Arkouda Data Types": [[67, "support-arkouda-data-types"]], "Supported Arkouda Data Types": [[68, "supported-arkouda-data-types"], [70, "supported-arkouda-data-types"]], "Supported File Formats": [[84, "supported-file-formats"]], "Supported File Formats:": [[71, null]], "Supported Write Modes": [[68, "supported-write-modes"], [70, "supported-write-modes"]], "Symmetric Difference": [[96, "symmetric-difference"]], "Tail/Head of Data": [[90, "tail-head-of-data"]], "Testing": [[0, "testing"], [1, "testing"]], "The pdarray class": [[94, null]], "Tips for Reproducing User Bugs": [[64, null]], "Type Casting": [[94, "type-casting"]], "Union": [[96, "union"]], "Updating Environment": [[77, "updating-environment"]], "Usage Guide": [[83, null]], "Using Anaconda": [[79, "using-anaconda"]], "Using Arkouda": [[73, "using-arkouda"]], "Using Environment Installed Dependencies (Recommended)": [[75, "using-environment-installed-dependencies-recommended"]], "Using Pip": [[79, "using-pip"]], "Using conda": [[75, "using-conda"]], "Using pip": [[75, "using-pip"]], "Using the Modular Build System": [[63, "using-the-modular-build-system"]], "Value Counts": [[92, "value-counts"], [97, "value-counts"]], "Vector and Scalar Arithmetic": [[87, "vector-and-scalar-arithmetic"]], "Where": [[87, "where"]], "Windows (WSL2)": [[80, null]], "Write": [[71, "write"]], "Writing Pull Requests": [[0, "writing-pull-requests"]], "arkouda": [[24, null]], "arkouda.accessor": [[2, null]], "arkouda.alignment": [[3, null]], "arkouda.array_api": [[8, null]], "arkouda.array_api.array_object": [[4, null]], "arkouda.array_api.creation_functions": [[5, null]], "arkouda.array_api.data_type_functions": [[6, null]], "arkouda.array_api.elementwise_functions": [[7, null]], "arkouda.array_api.indexing_functions": [[9, null]], "arkouda.array_api.linalg": [[10, null]], "arkouda.array_api.manipulation_functions": [[11, null]], "arkouda.array_api.searching_functions": [[12, null]], "arkouda.array_api.set_functions": [[13, null]], "arkouda.array_api.sorting_functions": [[14, null]], "arkouda.array_api.statistical_functions": [[15, null]], "arkouda.array_api.utility_functions": [[16, null]], "arkouda.categorical": [[17, null]], "arkouda.client": [[18, null]], "arkouda.client_dtypes": [[19, null]], "arkouda.dataframe": [[20, null]], "arkouda.dtypes": [[21, null]], "arkouda.groupbyclass": [[22, null]], "arkouda.history": [[23, null]], "arkouda.index": [[25, null]], "arkouda.infoclass": [[26, null]], "arkouda.io": [[27, null]], "arkouda.io_util": [[28, null]], "arkouda.join": [[29, null]], "arkouda.logger": [[30, null]], "arkouda.match": [[31, null]], "arkouda.matcher": [[32, null]], "arkouda.numeric": [[33, null]], "arkouda.numpy": [[35, null]], "arkouda.numpy.dtypes": [[34, null]], "arkouda.numpy.random": [[36, null]], "arkouda.pdarrayclass": [[37, null]], "arkouda.pdarraycreation": [[38, null]], "arkouda.pdarraymanipulation": [[39, null]], "arkouda.pdarraysetops": [[40, null]], "arkouda.plotting": [[41, null]], "arkouda.random": [[42, null]], "arkouda.row": [[43, null]], "arkouda.scipy": [[44, null]], "arkouda.scipy.special": [[45, null]], "arkouda.scipy.stats": [[46, null]], "arkouda.security": [[47, null]], "arkouda.segarray": [[48, null]], "arkouda.series": [[49, null]], "arkouda.sorting": [[50, null]], "arkouda.sparrayclass": [[51, null]], "arkouda.sparsematrix": [[52, null]], "arkouda.strings": [[53, null]], "arkouda.testing": [[54, null]], "arkouda.timeclass": [[55, null]], "arkouda.util": [[56, null]], "choice": [[95, "choice"]], "exponential": [[95, "exponential"]], "installing the chapel-py dependency": [[75, "installing-the-chapel-py-dependency"]], "installing the chapel-py dependency manually": [[75, "installing-the-chapel-py-dependency-manually"]], "integers": [[95, "integers"]], "logistic": [[95, "logistic"]], "lognormal": [[95, "lognormal"]], "ls Functionality": [[71, "ls-functionality"]], "normal": [[95, "normal"]], "pdarray": [[67, "pdarray"], [68, "pdarray"], [68, "id1"], [70, "pdarray"]], "pdarray Creation": [[66, "pdarray-creation"]], "pdarray Set operations": [[66, "pdarray-set-operations"]], "pdarrays": [[66, "pdarrays"]], "permutation": [[95, "permutation"]], "poisson": [[95, "poisson"]], "random": [[95, "random"]], "shuffle": [[95, "shuffle"]], "standard_exponential": [[95, "standard-exponential"]], "standard_normal": [[95, "standard-normal"]], "uniform": [[95, "uniform"]]}, "docnames": ["CONTRIBUTING_LINK", "ENVIRONMENT", "autoapi/arkouda/accessor/index", "autoapi/arkouda/alignment/index", "autoapi/arkouda/array_api/array_object/index", "autoapi/arkouda/array_api/creation_functions/index", "autoapi/arkouda/array_api/data_type_functions/index", "autoapi/arkouda/array_api/elementwise_functions/index", "autoapi/arkouda/array_api/index", "autoapi/arkouda/array_api/indexing_functions/index", "autoapi/arkouda/array_api/linalg/index", "autoapi/arkouda/array_api/manipulation_functions/index", "autoapi/arkouda/array_api/searching_functions/index", "autoapi/arkouda/array_api/set_functions/index", "autoapi/arkouda/array_api/sorting_functions/index", "autoapi/arkouda/array_api/statistical_functions/index", "autoapi/arkouda/array_api/utility_functions/index", "autoapi/arkouda/categorical/index", "autoapi/arkouda/client/index", "autoapi/arkouda/client_dtypes/index", "autoapi/arkouda/dataframe/index", "autoapi/arkouda/dtypes/index", "autoapi/arkouda/groupbyclass/index", "autoapi/arkouda/history/index", "autoapi/arkouda/index", "autoapi/arkouda/index/index", "autoapi/arkouda/infoclass/index", "autoapi/arkouda/io/index", "autoapi/arkouda/io_util/index", "autoapi/arkouda/join/index", "autoapi/arkouda/logger/index", "autoapi/arkouda/match/index", "autoapi/arkouda/matcher/index", "autoapi/arkouda/numeric/index", "autoapi/arkouda/numpy/dtypes/index", "autoapi/arkouda/numpy/index", "autoapi/arkouda/numpy/random/index", "autoapi/arkouda/pdarrayclass/index", "autoapi/arkouda/pdarraycreation/index", "autoapi/arkouda/pdarraymanipulation/index", "autoapi/arkouda/pdarraysetops/index", "autoapi/arkouda/plotting/index", "autoapi/arkouda/random/index", "autoapi/arkouda/row/index", "autoapi/arkouda/scipy/index", "autoapi/arkouda/scipy/special/index", "autoapi/arkouda/scipy/stats/index", "autoapi/arkouda/security/index", "autoapi/arkouda/segarray/index", "autoapi/arkouda/series/index", "autoapi/arkouda/sorting/index", "autoapi/arkouda/sparrayclass/index", "autoapi/arkouda/sparsematrix/index", "autoapi/arkouda/strings/index", "autoapi/arkouda/testing/index", "autoapi/arkouda/timeclass/index", "autoapi/arkouda/util/index", "autoapi/index", "developer/ADDING_FEATURES", "developer/BENCHMARK", "developer/GASNET", "developer/MEMORY", "developer/RELEASE_PROCESS", "developer/TIPS", "developer/USER_BUGS", "developer/dev_menu", "examples", "file_io/CSV", "file_io/HDF5", "file_io/IMPORT_EXPORT", "file_io/PARQUET", "file_io/io_menu", "index", "quickstart", "server/index", "setup/BUILD", "setup/LINUX_INSTALL", "setup/MAC_INSTALL", "setup/MODULAR", "setup/REQUIREMENTS", "setup/WINDOWS_INSTALL", "setup/install_menu", "setup/testing", "usage", "usage/IO", "usage/Index", "usage/argsort", "usage/arithmetic", "usage/categorical", "usage/creation", "usage/dataframe", "usage/groupby", "usage/histogram", "usage/indexing", "usage/pdarray", "usage/random", "usage/segarray", "usage/series", "usage/setops", "usage/startup", "usage/strings"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1}, "filenames": ["CONTRIBUTING_LINK.md", "ENVIRONMENT.md", "autoapi/arkouda/accessor/index.rst", "autoapi/arkouda/alignment/index.rst", "autoapi/arkouda/array_api/array_object/index.rst", "autoapi/arkouda/array_api/creation_functions/index.rst", "autoapi/arkouda/array_api/data_type_functions/index.rst", "autoapi/arkouda/array_api/elementwise_functions/index.rst", "autoapi/arkouda/array_api/index.rst", "autoapi/arkouda/array_api/indexing_functions/index.rst", "autoapi/arkouda/array_api/linalg/index.rst", "autoapi/arkouda/array_api/manipulation_functions/index.rst", "autoapi/arkouda/array_api/searching_functions/index.rst", "autoapi/arkouda/array_api/set_functions/index.rst", "autoapi/arkouda/array_api/sorting_functions/index.rst", "autoapi/arkouda/array_api/statistical_functions/index.rst", "autoapi/arkouda/array_api/utility_functions/index.rst", "autoapi/arkouda/categorical/index.rst", "autoapi/arkouda/client/index.rst", "autoapi/arkouda/client_dtypes/index.rst", "autoapi/arkouda/dataframe/index.rst", "autoapi/arkouda/dtypes/index.rst", "autoapi/arkouda/groupbyclass/index.rst", "autoapi/arkouda/history/index.rst", "autoapi/arkouda/index.rst", "autoapi/arkouda/index/index.rst", "autoapi/arkouda/infoclass/index.rst", "autoapi/arkouda/io/index.rst", "autoapi/arkouda/io_util/index.rst", "autoapi/arkouda/join/index.rst", "autoapi/arkouda/logger/index.rst", "autoapi/arkouda/match/index.rst", "autoapi/arkouda/matcher/index.rst", "autoapi/arkouda/numeric/index.rst", "autoapi/arkouda/numpy/dtypes/index.rst", "autoapi/arkouda/numpy/index.rst", "autoapi/arkouda/numpy/random/index.rst", "autoapi/arkouda/pdarrayclass/index.rst", "autoapi/arkouda/pdarraycreation/index.rst", "autoapi/arkouda/pdarraymanipulation/index.rst", "autoapi/arkouda/pdarraysetops/index.rst", "autoapi/arkouda/plotting/index.rst", "autoapi/arkouda/random/index.rst", "autoapi/arkouda/row/index.rst", "autoapi/arkouda/scipy/index.rst", "autoapi/arkouda/scipy/special/index.rst", "autoapi/arkouda/scipy/stats/index.rst", "autoapi/arkouda/security/index.rst", "autoapi/arkouda/segarray/index.rst", "autoapi/arkouda/series/index.rst", "autoapi/arkouda/sorting/index.rst", "autoapi/arkouda/sparrayclass/index.rst", "autoapi/arkouda/sparsematrix/index.rst", "autoapi/arkouda/strings/index.rst", "autoapi/arkouda/testing/index.rst", "autoapi/arkouda/timeclass/index.rst", "autoapi/arkouda/util/index.rst", "autoapi/index.rst", "developer/ADDING_FEATURES.md", "developer/BENCHMARK.md", "developer/GASNET.md", "developer/MEMORY.md", "developer/RELEASE_PROCESS.md", "developer/TIPS.md", "developer/USER_BUGS.md", "developer/dev_menu.rst", "examples.rst", "file_io/CSV.md", "file_io/HDF5.md", "file_io/IMPORT_EXPORT.md", "file_io/PARQUET.md", "file_io/io_menu.rst", "index.rst", "quickstart.rst", "server/index.rst", "setup/BUILD.md", "setup/LINUX_INSTALL.md", "setup/MAC_INSTALL.md", "setup/MODULAR.md", "setup/REQUIREMENTS.md", "setup/WINDOWS_INSTALL.md", "setup/install_menu.rst", "setup/testing.rst", "usage.rst", "usage/IO.rst", "usage/Index.rst", "usage/argsort.rst", "usage/arithmetic.rst", "usage/categorical.rst", "usage/creation.rst", "usage/dataframe.rst", "usage/groupby.rst", "usage/histogram.rst", "usage/indexing.rst", "usage/pdarray.rst", "usage/random.rst", "usage/segarray.rst", "usage/series.rst", "usage/setops.rst", "usage/startup.rst", "usage/strings.rst"], "indexentries": {"a() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.a", false]], "abs() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.abs", false]], "abs() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.abs", false], [24, "id798", false]], "abs() (in module arkouda)": [[24, "arkouda.abs", false], [87, "arkouda.abs", false]], "abs() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.abs", false]], "abs() (in module arkouda.numpy)": [[35, "arkouda.numpy.abs", false]], "abspath() (arkouda.datasource method)": [[24, "arkouda.DataSource.abspath", false]], "abspath() (arkouda.numpy.datasource method)": [[35, "arkouda.numpy.DataSource.abspath", false]], "acos() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.acos", false]], "acosh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.acosh", false]], "add() (arkouda.series method)": [[24, "arkouda.Series.add", false]], "add() (arkouda.series.series method)": [[49, "arkouda.series.Series.add", false]], "add() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.add", false]], "add_newdoc() (in module arkouda)": [[24, "arkouda.add_newdoc", false]], "add_newdoc() (in module arkouda.numpy)": [[35, "arkouda.numpy.add_newdoc", false]], "aggregate() (arkouda.groupby method)": [[24, "arkouda.GroupBy.aggregate", false], [24, "id258", false], [24, "id305", false], [24, "id352", false], [24, "id399", false], [24, "id446", false], [91, "arkouda.GroupBy.aggregate", false]], "aggregate() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.aggregate", false]], "aggregate() (arkouda.segarray method)": [[24, "arkouda.SegArray.aggregate", false]], "aggregate() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.aggregate", false]], "akabs() (in module arkouda)": [[24, "arkouda.akabs", false]], "akbool (class in arkouda)": [[24, "arkouda.akbool", false], [24, "id819", false]], "akcast() (in module arkouda)": [[24, "arkouda.akcast", false], [24, "id820", false]], "akfloat64 (class in arkouda)": [[24, "arkouda.akfloat64", false], [24, "id821", false]], "akint64 (class in arkouda)": [[24, "arkouda.akint64", false], [24, "id826", false], [24, "id828", false]], "akuint64 (class in arkouda)": [[24, "arkouda.akuint64", false], [24, "id830", false], [24, "id832", false]], "align() (in module arkouda)": [[24, "arkouda.align", false]], "align() (in module arkouda.alignment)": [[3, "arkouda.alignment.align", false]], "all() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.all", false]], "all() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.all", false], [24, "id124", false]], "all() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.all", false]], "all() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.all", false]], "all() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.all", false]], "all() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.all", false]], "all() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.all", false]], "all() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.all", false]], "all() (arkouda.groupby method)": [[24, "arkouda.GroupBy.all", false], [24, "id259", false], [24, "id306", false], [24, "id353", false], [24, "id400", false], [24, "id447", false], [91, "arkouda.GroupBy.all", false]], "all() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.all", false]], "all() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.all", false]], "all() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.all", false]], "all() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.all", false]], "all() (arkouda.pdarray method)": [[24, "arkouda.pdarray.all", false], [24, "id1001", false], [24, "id1072", false], [24, "id1143", false], [24, "id1214", false], [24, "id930", false], [92, "arkouda.pdarray.all", false]], "all() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.all", false]], "all() (arkouda.segarray method)": [[24, "arkouda.SegArray.all", false]], "all() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.all", false]], "all() (arkouda.str_ method)": [[24, "arkouda.str_.all", false], [24, "id1290", false]], "all() (in module arkouda)": [[24, "arkouda.all", false], [87, "arkouda.all", false]], "all() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.all", false]], "all() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.all", false]], "all_scalars (class in arkouda)": [[24, "arkouda.all_scalars", false]], "all_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.all_scalars", false]], "all_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.all_scalars", false]], "all_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.all_scalars", false]], "allsymbols (in module arkouda)": [[24, "arkouda.AllSymbols", false]], "allsymbols (in module arkouda.infoclass)": [[26, "arkouda.infoclass.AllSymbols", false]], "and() (arkouda.groupby method)": [[24, "arkouda.GroupBy.AND", false], [24, "id254", false], [24, "id301", false], [24, "id348", false], [24, "id395", false], [24, "id442", false], [91, "arkouda.GroupBy.AND", false]], "and() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.AND", false]], "and() (arkouda.segarray method)": [[24, "arkouda.SegArray.AND", false]], "and() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.AND", false]], "annotations (class in arkouda.dtypes)": [[21, "arkouda.dtypes.annotations", false]], "annotations (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.annotations", false]], "any() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.any", false]], "any() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.any", false], [24, "id125", false]], "any() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.any", false]], "any() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.any", false]], "any() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.any", false]], "any() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.any", false]], "any() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.any", false]], "any() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.any", false]], "any() (arkouda.groupby method)": [[24, "arkouda.GroupBy.any", false], [24, "id260", false], [24, "id307", false], [24, "id354", false], [24, "id401", false], [24, "id448", false], [91, "arkouda.GroupBy.any", false]], "any() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.any", false]], "any() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.any", false]], "any() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.any", false]], "any() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.any", false]], "any() (arkouda.pdarray method)": [[24, "arkouda.pdarray.any", false], [24, "id1002", false], [24, "id1073", false], [24, "id1144", false], [24, "id1215", false], [24, "id931", false], [92, "arkouda.pdarray.any", false]], "any() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.any", false]], "any() (arkouda.segarray method)": [[24, "arkouda.SegArray.any", false]], "any() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.any", false]], "any() (arkouda.str_ method)": [[24, "arkouda.str_.any", false], [24, "id1291", false]], "any() (in module arkouda)": [[24, "arkouda.any", false], [87, "arkouda.any", false]], "any() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.any", false]], "any() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.any", false]], "append() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.append", false], [24, "id126", false]], "append() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.append", false]], "append() (arkouda.segarray method)": [[24, "arkouda.SegArray.append", false]], "append() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.append", false]], "append() (in module arkouda.segarray)": [[96, "arkouda.SegArray.append", false]], "append_single() (arkouda.segarray method)": [[24, "arkouda.SegArray.append_single", false]], "append_single() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.append_single", false]], "append_single() (in module arkouda.segarray)": [[96, "arkouda.SegArray.append_single", false]], "apply_permutation() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.apply_permutation", false], [24, "id127", false]], "apply_permutation() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.apply_permutation", false]], "apply_permutation() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.apply_permutation", false]], "arange() (in module arkouda)": [[24, "arkouda.arange", false], [24, "id834", false], [24, "id835", false], [24, "id836", false], [24, "id837", false], [24, "id838", false], [89, "arkouda.arange", false]], "arange() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.arange", false]], "arange() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.arange", false]], "arccos() (in module arkouda)": [[24, "arkouda.arccos", false]], "arccos() (in module arkouda.numpy)": [[35, "arkouda.numpy.arccos", false]], "arccosh() (in module arkouda)": [[24, "arkouda.arccosh", false]], "arccosh() (in module arkouda.numpy)": [[35, "arkouda.numpy.arccosh", false]], "arcsin() (in module arkouda)": [[24, "arkouda.arcsin", false]], "arcsin() (in module arkouda.numpy)": [[35, "arkouda.numpy.arcsin", false]], "arcsinh() (in module arkouda)": [[24, "arkouda.arcsinh", false]], "arcsinh() (in module arkouda.numpy)": [[35, "arkouda.numpy.arcsinh", false]], "arctan() (in module arkouda)": [[24, "arkouda.arctan", false]], "arctan() (in module arkouda.numpy)": [[35, "arkouda.numpy.arctan", false]], "arctan2() (in module arkouda)": [[24, "arkouda.arctan2", false]], "arctan2() (in module arkouda.numpy)": [[35, "arkouda.numpy.arctan2", false]], "arctanh() (in module arkouda)": [[24, "arkouda.arctanh", false]], "arctanh() (in module arkouda.numpy)": [[35, "arkouda.numpy.arctanh", false]], "argmax() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.argmax", false]], "argmax() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.argmax", false]], "argmax() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.argmax", false]], "argmax() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.argmax", false]], "argmax() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.argmax", false]], "argmax() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.argmax", false]], "argmax() (arkouda.groupby method)": [[24, "arkouda.GroupBy.argmax", false], [24, "id261", false], [24, "id308", false], [24, "id355", false], [24, "id402", false], [24, "id449", false], [91, "arkouda.GroupBy.argmax", false]], "argmax() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.argmax", false]], "argmax() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.argmax", false]], "argmax() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.argmax", false]], "argmax() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.argmax", false]], "argmax() (arkouda.pdarray method)": [[24, "arkouda.pdarray.argmax", false], [24, "id1003", false], [24, "id1074", false], [24, "id1145", false], [24, "id1216", false], [24, "id932", false], [92, "arkouda.pdarray.argmax", false]], "argmax() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.argmax", false]], "argmax() (arkouda.segarray method)": [[24, "arkouda.SegArray.argmax", false]], "argmax() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.argmax", false]], "argmax() (arkouda.series method)": [[24, "arkouda.Series.argmax", false]], "argmax() (arkouda.series.series method)": [[49, "arkouda.series.Series.argmax", false]], "argmax() (arkouda.str_ method)": [[24, "arkouda.str_.argmax", false], [24, "id1292", false]], "argmax() (in module arkouda)": [[24, "arkouda.argmax", false], [87, "arkouda.argmax", false]], "argmax() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.argmax", false]], "argmax() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.argmax", false]], "argmaxk() (arkouda.pdarray method)": [[24, "arkouda.pdarray.argmaxk", false], [24, "id1004", false], [24, "id1075", false], [24, "id1146", false], [24, "id1217", false], [24, "id933", false], [92, "arkouda.pdarray.argmaxk", false]], "argmaxk() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.argmaxk", false]], "argmaxk() (in module arkouda)": [[24, "arkouda.argmaxk", false], [87, "arkouda.argmaxk", false]], "argmaxk() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.argmaxk", false]], "argmin() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.argmin", false]], "argmin() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.argmin", false]], "argmin() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.argmin", false]], "argmin() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.argmin", false]], "argmin() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.argmin", false]], "argmin() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.argmin", false]], "argmin() (arkouda.groupby method)": [[24, "arkouda.GroupBy.argmin", false], [24, "id262", false], [24, "id309", false], [24, "id356", false], [24, "id403", false], [24, "id450", false], [91, "arkouda.GroupBy.argmin", false]], "argmin() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.argmin", false]], "argmin() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.argmin", false]], "argmin() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.argmin", false]], "argmin() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.argmin", false]], "argmin() (arkouda.pdarray method)": [[24, "arkouda.pdarray.argmin", false], [24, "id1005", false], [24, "id1076", false], [24, "id1147", false], [24, "id1218", false], [24, "id934", false], [92, "arkouda.pdarray.argmin", false]], "argmin() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.argmin", false]], "argmin() (arkouda.segarray method)": [[24, "arkouda.SegArray.argmin", false]], "argmin() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.argmin", false]], "argmin() (arkouda.series method)": [[24, "arkouda.Series.argmin", false]], "argmin() (arkouda.series.series method)": [[49, "arkouda.series.Series.argmin", false]], "argmin() (arkouda.str_ method)": [[24, "arkouda.str_.argmin", false], [24, "id1293", false]], "argmin() (in module arkouda)": [[24, "arkouda.argmin", false], [87, "arkouda.argmin", false]], "argmin() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.argmin", false]], "argmin() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.argmin", false]], "argmink() (arkouda.pdarray method)": [[24, "arkouda.pdarray.argmink", false], [24, "id1006", false], [24, "id1077", false], [24, "id1148", false], [24, "id1219", false], [24, "id935", false], [92, "arkouda.pdarray.argmink", false]], "argmink() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.argmink", false]], "argmink() (in module arkouda)": [[24, "arkouda.argmink", false], [87, "arkouda.argmink", false]], "argmink() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.argmink", false]], "argsort() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.argsort", false]], "argsort() (arkouda.categorical method)": [[24, "arkouda.Categorical.argsort", false], [24, "id18", false], [24, "id76", false]], "argsort() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.argsort", false]], "argsort() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.argsort", false], [24, "id128", false]], "argsort() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.argsort", false]], "argsort() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.argsort", false]], "argsort() (arkouda.index method)": [[24, "arkouda.Index.argsort", false]], "argsort() (arkouda.index.index method)": [[25, "arkouda.index.Index.argsort", false]], "argsort() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.argsort", false]], "argsort() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.argsort", false]], "argsort() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.argsort", false]], "argsort() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.argsort", false]], "argsort() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.argsort", false]], "argsort() (arkouda.str_ method)": [[24, "arkouda.str_.argsort", false], [24, "id1294", false]], "argsort() (in module arkouda)": [[24, "arkouda.argsort", false], [24, "id839", false], [24, "id840", false], [86, "arkouda.argsort", false]], "argsort() (in module arkouda.array_api.sorting_functions)": [[14, "arkouda.array_api.sorting_functions.argsort", false]], "argsort() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.argsort", false]], "argsort() (in module arkouda.index)": [[85, "arkouda.Index.argsort", false]], "argsort() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.argsort", false]], "argsort() (in module arkouda.sorting)": [[50, "arkouda.sorting.argsort", false]], "arkouda": [[24, "module-arkouda", false]], "arkouda.accessor": [[2, "module-arkouda.accessor", false]], "arkouda.alignment": [[3, "module-arkouda.alignment", false]], "arkouda.array_api": [[8, "module-arkouda.array_api", false]], "arkouda.array_api.array_object": [[4, "module-arkouda.array_api.array_object", false]], "arkouda.array_api.creation_functions": [[5, "module-arkouda.array_api.creation_functions", false]], "arkouda.array_api.data_type_functions": [[6, "module-arkouda.array_api.data_type_functions", false]], "arkouda.array_api.elementwise_functions": [[7, "module-arkouda.array_api.elementwise_functions", false]], "arkouda.array_api.indexing_functions": [[9, "module-arkouda.array_api.indexing_functions", false]], "arkouda.array_api.linalg": [[10, "module-arkouda.array_api.linalg", false]], "arkouda.array_api.manipulation_functions": [[11, "module-arkouda.array_api.manipulation_functions", false]], "arkouda.array_api.searching_functions": [[12, "module-arkouda.array_api.searching_functions", false]], "arkouda.array_api.set_functions": [[13, "module-arkouda.array_api.set_functions", false]], "arkouda.array_api.sorting_functions": [[14, "module-arkouda.array_api.sorting_functions", false]], "arkouda.array_api.statistical_functions": [[15, "module-arkouda.array_api.statistical_functions", false]], "arkouda.array_api.utility_functions": [[16, "module-arkouda.array_api.utility_functions", false]], "arkouda.categorical": [[17, "module-arkouda.categorical", false]], "arkouda.client": [[18, "module-arkouda.client", false]], "arkouda.client_dtypes": [[19, "module-arkouda.client_dtypes", false]], "arkouda.dataframe": [[20, "module-arkouda.dataframe", false]], "arkouda.dtypes": [[21, "module-arkouda.dtypes", false]], "arkouda.groupbyclass": [[22, "module-arkouda.groupbyclass", false]], "arkouda.history": [[23, "module-arkouda.history", false]], "arkouda.index": [[25, "module-arkouda.index", false]], "arkouda.infoclass": [[26, "module-arkouda.infoclass", false]], "arkouda.io": [[27, "module-arkouda.io", false]], "arkouda.io_util": [[28, "module-arkouda.io_util", false]], "arkouda.join": [[29, "module-arkouda.join", false]], "arkouda.logger": [[30, "module-arkouda.logger", false]], "arkouda.match": [[31, "module-arkouda.match", false]], "arkouda.matcher": [[32, "module-arkouda.matcher", false]], "arkouda.numeric": [[33, "module-arkouda.numeric", false]], "arkouda.numpy": [[35, "module-arkouda.numpy", false]], "arkouda.numpy.dtypes": [[34, "module-arkouda.numpy.dtypes", false]], "arkouda.numpy.random": [[36, "module-arkouda.numpy.random", false]], "arkouda.pdarrayclass": [[37, "module-arkouda.pdarrayclass", false]], "arkouda.pdarraycreation": [[38, "module-arkouda.pdarraycreation", false]], "arkouda.pdarraymanipulation": [[39, "module-arkouda.pdarraymanipulation", false]], "arkouda.pdarraysetops": [[40, "module-arkouda.pdarraysetops", false]], "arkouda.plotting": [[41, "module-arkouda.plotting", false]], "arkouda.random": [[42, "module-arkouda.random", false]], "arkouda.row": [[43, "module-arkouda.row", false]], "arkouda.scipy": [[44, "module-arkouda.scipy", false]], "arkouda.scipy.special": [[45, "module-arkouda.scipy.special", false]], "arkouda.scipy.stats": [[46, "module-arkouda.scipy.stats", false]], "arkouda.security": [[47, "module-arkouda.security", false]], "arkouda.segarray": [[48, "module-arkouda.segarray", false]], "arkouda.series": [[49, "module-arkouda.series", false]], "arkouda.sorting": [[50, "module-arkouda.sorting", false]], "arkouda.sparrayclass": [[51, "module-arkouda.sparrayclass", false]], "arkouda.sparsematrix": [[52, "module-arkouda.sparsematrix", false]], "arkouda.strings": [[53, "module-arkouda.strings", false]], "arkouda.testing": [[54, "module-arkouda.testing", false]], "arkouda.timeclass": [[55, "module-arkouda.timeclass", false]], "arkouda.util": [[56, "module-arkouda.util", false]], "arkouda_supported_dtypes (class in arkouda)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES", false]], "arkouda_supported_dtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES", false]], "arkouda_supported_dtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES", false]], "arkouda_supported_dtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES", false]], "arkouda_supported_floats (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_FLOATS", false]], "arkouda_supported_floats (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_FLOATS", false]], "arkouda_supported_ints (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_INTS", false]], "arkouda_supported_ints (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_INTS", false]], "arkouda_supported_numbers (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_NUMBERS", false]], "arkouda_supported_numbers (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_NUMBERS", false]], "array (class in arkouda.array_api)": [[8, "arkouda.array_api.Array", false]], "array (class in arkouda.array_api.array_object)": [[4, "arkouda.array_api.array_object.Array", false]], "array() (in module arkouda)": [[24, "arkouda.array", false], [24, "id841", false], [24, "id842", false], [24, "id843", false], [84, "arkouda.array", false]], "array() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.array", false]], "array_equal() (in module arkouda)": [[24, "arkouda.array_equal", false]], "array_equal() (in module arkouda.numpy)": [[35, "arkouda.numpy.array_equal", false]], "as_index (arkouda.dataframe.dataframegroupby attribute)": [[20, "arkouda.dataframe.DataFrameGroupBy.as_index", false]], "as_index (arkouda.dataframegroupby attribute)": [[24, "arkouda.DataFrameGroupBy.as_index", false]], "as_integer_ratio() (arkouda.akfloat64 method)": [[24, "arkouda.akfloat64.as_integer_ratio", false], [24, "id822", false]], "as_integer_ratio() (arkouda.double method)": [[24, "arkouda.double.as_integer_ratio", false]], "as_integer_ratio() (arkouda.dtypes.float16 method)": [[21, "arkouda.dtypes.float16.as_integer_ratio", false]], "as_integer_ratio() (arkouda.dtypes.float32 method)": [[21, "arkouda.dtypes.float32.as_integer_ratio", false]], "as_integer_ratio() (arkouda.dtypes.float64 method)": [[21, "arkouda.dtypes.float64.as_integer_ratio", false]], "as_integer_ratio() (arkouda.float16 method)": [[24, "arkouda.float16.as_integer_ratio", false]], "as_integer_ratio() (arkouda.float32 method)": [[24, "arkouda.float32.as_integer_ratio", false]], "as_integer_ratio() (arkouda.float64 method)": [[24, "arkouda.float64.as_integer_ratio", false]], "as_integer_ratio() (arkouda.float_ method)": [[24, "arkouda.float_.as_integer_ratio", false]], "as_integer_ratio() (arkouda.half method)": [[24, "arkouda.half.as_integer_ratio", false]], "as_integer_ratio() (arkouda.longdouble method)": [[24, "arkouda.longdouble.as_integer_ratio", false]], "as_integer_ratio() (arkouda.longfloat method)": [[24, "arkouda.longfloat.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.double method)": [[35, "arkouda.numpy.double.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.dtypes.float16 method)": [[34, "arkouda.numpy.dtypes.float16.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.dtypes.float32 method)": [[34, "arkouda.numpy.dtypes.float32.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.dtypes.float64 method)": [[34, "arkouda.numpy.dtypes.float64.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.float16 method)": [[35, "arkouda.numpy.float16.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.float32 method)": [[35, "arkouda.numpy.float32.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.float64 method)": [[35, "arkouda.numpy.float64.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.float_ method)": [[35, "arkouda.numpy.float_.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.half method)": [[35, "arkouda.numpy.half.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.longdouble method)": [[35, "arkouda.numpy.longdouble.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.longfloat method)": [[35, "arkouda.numpy.longfloat.as_integer_ratio", false]], "as_integer_ratio() (arkouda.numpy.single method)": [[35, "arkouda.numpy.single.as_integer_ratio", false]], "as_integer_ratio() (arkouda.single method)": [[24, "arkouda.single.as_integer_ratio", false]], "asarray() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.asarray", false]], "asin() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.asin", false]], "asinh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.asinh", false]], "assert_almost_equal() (in module arkouda)": [[24, "arkouda.assert_almost_equal", false]], "assert_almost_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_almost_equal", false]], "assert_almost_equivalent() (in module arkouda)": [[24, "arkouda.assert_almost_equivalent", false]], "assert_almost_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_almost_equivalent", false]], "assert_arkouda_array_equal() (in module arkouda)": [[24, "arkouda.assert_arkouda_array_equal", false]], "assert_arkouda_array_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_array_equal", false]], "assert_arkouda_array_equivalent() (in module arkouda)": [[24, "arkouda.assert_arkouda_array_equivalent", false]], "assert_arkouda_array_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_array_equivalent", false]], "assert_arkouda_pdarray_equal() (in module arkouda)": [[24, "arkouda.assert_arkouda_pdarray_equal", false]], "assert_arkouda_pdarray_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_pdarray_equal", false]], "assert_arkouda_segarray_equal() (in module arkouda)": [[24, "arkouda.assert_arkouda_segarray_equal", false]], "assert_arkouda_segarray_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_segarray_equal", false]], "assert_arkouda_strings_equal() (in module arkouda)": [[24, "arkouda.assert_arkouda_strings_equal", false]], "assert_arkouda_strings_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_arkouda_strings_equal", false]], "assert_attr_equal() (in module arkouda)": [[24, "arkouda.assert_attr_equal", false]], "assert_attr_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_attr_equal", false]], "assert_categorical_equal() (in module arkouda)": [[24, "arkouda.assert_categorical_equal", false]], "assert_categorical_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_categorical_equal", false]], "assert_class_equal() (in module arkouda)": [[24, "arkouda.assert_class_equal", false]], "assert_class_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_class_equal", false]], "assert_contains_all() (in module arkouda)": [[24, "arkouda.assert_contains_all", false]], "assert_contains_all() (in module arkouda.testing)": [[54, "arkouda.testing.assert_contains_all", false]], "assert_copy() (in module arkouda)": [[24, "arkouda.assert_copy", false]], "assert_copy() (in module arkouda.testing)": [[54, "arkouda.testing.assert_copy", false]], "assert_dict_equal() (in module arkouda)": [[24, "arkouda.assert_dict_equal", false]], "assert_dict_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_dict_equal", false]], "assert_equal() (in module arkouda)": [[24, "arkouda.assert_equal", false]], "assert_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_equal", false]], "assert_equivalent() (in module arkouda)": [[24, "arkouda.assert_equivalent", false]], "assert_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_equivalent", false]], "assert_frame_equal() (in module arkouda)": [[24, "arkouda.assert_frame_equal", false]], "assert_frame_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_frame_equal", false]], "assert_frame_equivalent() (in module arkouda)": [[24, "arkouda.assert_frame_equivalent", false]], "assert_frame_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_frame_equivalent", false]], "assert_index_equal() (in module arkouda)": [[24, "arkouda.assert_index_equal", false]], "assert_index_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_index_equal", false]], "assert_index_equivalent() (in module arkouda)": [[24, "arkouda.assert_index_equivalent", false]], "assert_index_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_index_equivalent", false]], "assert_is_sorted() (in module arkouda)": [[24, "arkouda.assert_is_sorted", false]], "assert_is_sorted() (in module arkouda.testing)": [[54, "arkouda.testing.assert_is_sorted", false]], "assert_series_equal() (in module arkouda)": [[24, "arkouda.assert_series_equal", false]], "assert_series_equal() (in module arkouda.testing)": [[54, "arkouda.testing.assert_series_equal", false]], "assert_series_equivalent() (in module arkouda)": [[24, "arkouda.assert_series_equivalent", false]], "assert_series_equivalent() (in module arkouda.testing)": [[54, "arkouda.testing.assert_series_equivalent", false]], "assign() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.assign", false], [24, "id129", false]], "assign() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.assign", false]], "astype() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.astype", false]], "astype() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.astype", false]], "astype() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.astype", false]], "astype() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.astype", false]], "astype() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.astype", false]], "astype() (arkouda.pdarray method)": [[24, "arkouda.pdarray.astype", false], [24, "id1007", false], [24, "id1078", false], [24, "id1149", false], [24, "id1220", false], [24, "id936", false]], "astype() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.astype", false]], "astype() (arkouda.str_ method)": [[24, "arkouda.str_.astype", false], [24, "id1295", false]], "astype() (arkouda.strings method)": [[24, "arkouda.Strings.astype", false], [24, "id502", false], [24, "id578", false], [24, "id654", false], [24, "id730", false]], "astype() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.astype", false]], "astype() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.astype", false]], "at (arkouda.series property)": [[24, "arkouda.Series.at", false]], "at (arkouda.series.series property)": [[49, "arkouda.series.Series.at", false]], "atan() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.atan", false]], "atan2() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.atan2", false]], "atanh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.atanh", false]], "attach() (arkouda.categorical static method)": [[24, "arkouda.Categorical.attach", false], [24, "id19", false], [24, "id77", false]], "attach() (arkouda.categorical.categorical static method)": [[17, "arkouda.categorical.Categorical.attach", false]], "attach() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.attach", false], [24, "id130", false]], "attach() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.attach", false]], "attach() (arkouda.groupby method)": [[24, "arkouda.GroupBy.attach", false], [24, "id263", false], [24, "id310", false], [24, "id357", false], [24, "id404", false], [24, "id451", false]], "attach() (arkouda.groupby static method)": [[91, "arkouda.GroupBy.attach", false]], "attach() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.attach", false]], "attach() (arkouda.pdarray static method)": [[24, "arkouda.pdarray.attach", false], [24, "id1008", false], [24, "id1079", false], [24, "id1150", false], [24, "id1221", false], [24, "id937", false]], "attach() (arkouda.pdarrayclass.pdarray static method)": [[37, "arkouda.pdarrayclass.pdarray.attach", false]], "attach() (arkouda.segarray class method)": [[24, "arkouda.SegArray.attach", false]], "attach() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.attach", false]], "attach() (arkouda.series method)": [[24, "arkouda.Series.attach", false]], "attach() (arkouda.series.series method)": [[49, "arkouda.series.Series.attach", false]], "attach() (arkouda.strings static method)": [[24, "arkouda.Strings.attach", false], [24, "id503", false], [24, "id579", false], [24, "id655", false], [24, "id731", false]], "attach() (arkouda.strings.strings static method)": [[53, "arkouda.strings.Strings.attach", false]], "attach() (in module arkouda)": [[24, "arkouda.attach", false]], "attach() (in module arkouda.util)": [[56, "arkouda.util.attach", false]], "attach_all() (in module arkouda)": [[24, "arkouda.attach_all", false]], "attach_all() (in module arkouda.util)": [[56, "arkouda.util.attach_all", false]], "attach_pdarray() (in module arkouda)": [[24, "arkouda.attach_pdarray", false]], "attach_pdarray() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.attach_pdarray", false]], "b() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.b", false]], "badvalue() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.badvalue", false]], "base() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.base", false]], "base() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.base", false]], "base() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.base", false]], "base() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.base", false]], "base() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.base", false]], "base() (arkouda.str_ method)": [[24, "arkouda.str_.base", false], [24, "id1296", false]], "base_repr() (in module arkouda)": [[24, "arkouda.base_repr", false]], "base_repr() (in module arkouda.numpy)": [[35, "arkouda.numpy.base_repr", false]], "bigint (class in arkouda)": [[24, "arkouda.bigint", false], [24, "id844", false]], "bigint (class in arkouda.dtypes)": [[21, "arkouda.dtypes.bigint", false]], "bigint (class in arkouda.numpy)": [[35, "arkouda.numpy.bigint", false]], "bigint (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.bigint", false]], "bigint() (arkouda.dtype method)": [[24, "arkouda.DType.BIGINT", false]], "bigint() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.BIGINT", false]], "bigint() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.BIGINT", false]], "bigint() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.BIGINT", false]], "bigint_from_uint_arrays() (in module arkouda)": [[24, "arkouda.bigint_from_uint_arrays", false]], "bigint_from_uint_arrays() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.bigint_from_uint_arrays", false]], "bigint_to_uint_arrays() (arkouda.pdarray method)": [[24, "arkouda.pdarray.bigint_to_uint_arrays", false], [24, "id1009", false], [24, "id1080", false], [24, "id1151", false], [24, "id1222", false], [24, "id938", false]], "bigint_to_uint_arrays() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.bigint_to_uint_arrays", false]], "binary_repr() (in module arkouda)": [[24, "arkouda.binary_repr", false]], "binary_repr() (in module arkouda.numpy)": [[35, "arkouda.numpy.binary_repr", false]], "binops (arkouda.categorical attribute)": [[24, "arkouda.Categorical.BinOps", false], [24, "id15", false], [24, "id73", false]], "binops (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.BinOps", false]], "binops (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.BinOps", false], [24, "id1070", false], [24, "id1141", false], [24, "id1212", false], [24, "id928", false], [24, "id999", false]], "binops (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.BinOps", false]], "binops (arkouda.strings attribute)": [[24, "arkouda.Strings.BinOps", false], [24, "id501", false], [24, "id577", false], [24, "id653", false], [24, "id729", false]], "binops (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.BinOps", false]], "bit_count() (arkouda.akint64 method)": [[24, "arkouda.akint64.bit_count", false], [24, "id827", false], [24, "id829", false]], "bit_count() (arkouda.akuint64 method)": [[24, "arkouda.akuint64.bit_count", false], [24, "id831", false], [24, "id833", false]], "bit_count() (arkouda.bittype method)": [[24, "arkouda.bitType.bit_count", false], [24, "id853", false]], "bit_count() (arkouda.byte method)": [[24, "arkouda.byte.bit_count", false]], "bit_count() (arkouda.dtypes.bittype method)": [[21, "arkouda.dtypes.bitType.bit_count", false]], "bit_count() (arkouda.dtypes.int16 method)": [[21, "arkouda.dtypes.int16.bit_count", false]], "bit_count() (arkouda.dtypes.int32 method)": [[21, "arkouda.dtypes.int32.bit_count", false]], "bit_count() (arkouda.dtypes.int64 method)": [[21, "arkouda.dtypes.int64.bit_count", false]], "bit_count() (arkouda.dtypes.int8 method)": [[21, "arkouda.dtypes.int8.bit_count", false]], "bit_count() (arkouda.dtypes.uint16 method)": [[21, "arkouda.dtypes.uint16.bit_count", false]], "bit_count() (arkouda.dtypes.uint32 method)": [[21, "arkouda.dtypes.uint32.bit_count", false]], "bit_count() (arkouda.dtypes.uint64 method)": [[21, "arkouda.dtypes.uint64.bit_count", false]], "bit_count() (arkouda.dtypes.uint8 method)": [[21, "arkouda.dtypes.uint8.bit_count", false]], "bit_count() (arkouda.int16 method)": [[24, "arkouda.int16.bit_count", false]], "bit_count() (arkouda.int32 method)": [[24, "arkouda.int32.bit_count", false]], "bit_count() (arkouda.int64 method)": [[24, "arkouda.int64.bit_count", false], [24, "id884", false]], "bit_count() (arkouda.int8 method)": [[24, "arkouda.int8.bit_count", false]], "bit_count() (arkouda.int_ method)": [[24, "arkouda.int_.bit_count", false]], "bit_count() (arkouda.intc method)": [[24, "arkouda.intc.bit_count", false]], "bit_count() (arkouda.intp method)": [[24, "arkouda.intp.bit_count", false]], "bit_count() (arkouda.longlong method)": [[24, "arkouda.longlong.bit_count", false]], "bit_count() (arkouda.numpy.bittype method)": [[35, "arkouda.numpy.bitType.bit_count", false]], "bit_count() (arkouda.numpy.byte method)": [[35, "arkouda.numpy.byte.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.bittype method)": [[34, "arkouda.numpy.dtypes.bitType.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.int16 method)": [[34, "arkouda.numpy.dtypes.int16.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.int32 method)": [[34, "arkouda.numpy.dtypes.int32.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.int64 method)": [[34, "arkouda.numpy.dtypes.int64.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.int8 method)": [[34, "arkouda.numpy.dtypes.int8.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.uint16 method)": [[34, "arkouda.numpy.dtypes.uint16.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.uint32 method)": [[34, "arkouda.numpy.dtypes.uint32.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.uint64 method)": [[34, "arkouda.numpy.dtypes.uint64.bit_count", false]], "bit_count() (arkouda.numpy.dtypes.uint8 method)": [[34, "arkouda.numpy.dtypes.uint8.bit_count", false]], "bit_count() (arkouda.numpy.int16 method)": [[35, "arkouda.numpy.int16.bit_count", false]], "bit_count() (arkouda.numpy.int32 method)": [[35, "arkouda.numpy.int32.bit_count", false]], "bit_count() (arkouda.numpy.int64 method)": [[35, "arkouda.numpy.int64.bit_count", false]], "bit_count() (arkouda.numpy.int8 method)": [[35, "arkouda.numpy.int8.bit_count", false]], "bit_count() (arkouda.numpy.int_ method)": [[35, "arkouda.numpy.int_.bit_count", false]], "bit_count() (arkouda.numpy.intc method)": [[35, "arkouda.numpy.intc.bit_count", false]], "bit_count() (arkouda.numpy.intp method)": [[35, "arkouda.numpy.intp.bit_count", false]], "bit_count() (arkouda.numpy.longlong method)": [[35, "arkouda.numpy.longlong.bit_count", false]], "bit_count() (arkouda.numpy.short method)": [[35, "arkouda.numpy.short.bit_count", false]], "bit_count() (arkouda.numpy.ubyte method)": [[35, "arkouda.numpy.ubyte.bit_count", false]], "bit_count() (arkouda.numpy.uint method)": [[35, "arkouda.numpy.uint.bit_count", false]], "bit_count() (arkouda.numpy.uint16 method)": [[35, "arkouda.numpy.uint16.bit_count", false]], "bit_count() (arkouda.numpy.uint32 method)": [[35, "arkouda.numpy.uint32.bit_count", false]], "bit_count() (arkouda.numpy.uint64 method)": [[35, "arkouda.numpy.uint64.bit_count", false]], "bit_count() (arkouda.numpy.uint8 method)": [[35, "arkouda.numpy.uint8.bit_count", false]], "bit_count() (arkouda.numpy.uintc method)": [[35, "arkouda.numpy.uintc.bit_count", false]], "bit_count() (arkouda.numpy.uintp method)": [[35, "arkouda.numpy.uintp.bit_count", false]], "bit_count() (arkouda.numpy.ulonglong method)": [[35, "arkouda.numpy.ulonglong.bit_count", false]], "bit_count() (arkouda.numpy.ushort method)": [[35, "arkouda.numpy.ushort.bit_count", false]], "bit_count() (arkouda.short method)": [[24, "arkouda.short.bit_count", false]], "bit_count() (arkouda.ubyte method)": [[24, "arkouda.ubyte.bit_count", false]], "bit_count() (arkouda.uint method)": [[24, "arkouda.uint.bit_count", false]], "bit_count() (arkouda.uint16 method)": [[24, "arkouda.uint16.bit_count", false]], "bit_count() (arkouda.uint32 method)": [[24, "arkouda.uint32.bit_count", false]], "bit_count() (arkouda.uint64 method)": [[24, "arkouda.uint64.bit_count", false]], "bit_count() (arkouda.uint8 method)": [[24, "arkouda.uint8.bit_count", false]], "bit_count() (arkouda.uintc method)": [[24, "arkouda.uintc.bit_count", false]], "bit_count() (arkouda.uintp method)": [[24, "arkouda.uintp.bit_count", false]], "bit_count() (arkouda.ulonglong method)": [[24, "arkouda.ulonglong.bit_count", false]], "bit_count() (arkouda.ushort method)": [[24, "arkouda.ushort.bit_count", false]], "bits (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.bits", false]], "bits (arkouda.array_api.data_type_functions.iinfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.iinfo_object.bits", false]], "bits (arkouda.finfo attribute)": [[24, "arkouda.finfo.bits", false]], "bits (arkouda.iinfo attribute)": [[24, "arkouda.iinfo.bits", false]], "bits (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.bits", false]], "bits (arkouda.numpy.iinfo attribute)": [[35, "arkouda.numpy.iinfo.bits", false]], "bittype (class in arkouda)": [[24, "arkouda.bitType", false], [24, "id852", false]], "bittype (class in arkouda.dtypes)": [[21, "arkouda.dtypes.bitType", false]], "bittype (class in arkouda.numpy)": [[35, "arkouda.numpy.bitType", false]], "bittype (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.bitType", false]], "bitvector (class in arkouda)": [[24, "arkouda.BitVector", false]], "bitvector (class in arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.BitVector", false]], "bitvectorizer() (in module arkouda)": [[24, "arkouda.BitVectorizer", false]], "bitvectorizer() (in module arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.BitVectorizer", false]], "bitwise_and() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_and", false]], "bitwise_invert() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_invert", false]], "bitwise_left_shift() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_left_shift", false]], "bitwise_or() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_or", false]], "bitwise_right_shift() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_right_shift", false]], "bitwise_xor() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.bitwise_xor", false]], "bool() (arkouda.dtype method)": [[24, "arkouda.DType.BOOL", false]], "bool() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.BOOL", false]], "bool() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.BOOL", false]], "bool() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.BOOL", false]], "bool_ (class in arkouda)": [[24, "arkouda.bool_", false]], "bool_ (class in arkouda.dtypes)": [[21, "arkouda.dtypes.bool_", false]], "bool_ (class in arkouda.numpy)": [[35, "arkouda.numpy.bool_", false]], "bool_ (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.bool_", false]], "bool_scalars (class in arkouda)": [[24, "arkouda.bool_scalars", false]], "bool_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.bool_scalars", false]], "bool_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.bool_scalars", false]], "bool_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.bool_scalars", false]], "booldtype (class in arkouda)": [[24, "arkouda.BoolDType", false]], "booldtype (class in arkouda.numpy)": [[35, "arkouda.numpy.BoolDType", false]], "broadcast() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.broadcast", false]], "broadcast() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.broadcast", false]], "broadcast() (arkouda.groupby method)": [[24, "arkouda.GroupBy.broadcast", false], [24, "id264", false], [24, "id311", false], [24, "id358", false], [24, "id405", false], [24, "id452", false], [91, "arkouda.GroupBy.broadcast", false]], "broadcast() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.broadcast", false]], "broadcast() (in module arkouda)": [[24, "arkouda.broadcast", false], [24, "id854", false], [24, "id855", false], [24, "id856", false]], "broadcast() (in module arkouda.groupbyclass)": [[22, "arkouda.groupbyclass.broadcast", false]], "broadcast_arrays() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.broadcast_arrays", false]], "broadcast_dims() (in module arkouda)": [[24, "arkouda.broadcast_dims", false]], "broadcast_dims() (in module arkouda.util)": [[56, "arkouda.util.broadcast_dims", false]], "broadcast_to() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.broadcast_to", false]], "broadcast_to_shape() (in module arkouda)": [[24, "arkouda.broadcast_to_shape", false]], "broadcast_to_shape() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.broadcast_to_shape", false]], "build_from_components() (arkouda.groupby method)": [[24, "arkouda.GroupBy.build_from_components", false], [24, "id265", false], [24, "id312", false], [24, "id359", false], [24, "id406", false], [24, "id453", false]], "build_from_components() (arkouda.groupby static method)": [[91, "arkouda.GroupBy.build_from_components", false]], "build_from_components() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.build_from_components", false]], "byte (class in arkouda)": [[24, "arkouda.byte", false]], "byte (class in arkouda.numpy)": [[35, "arkouda.numpy.byte", false]], "bytedtype (class in arkouda)": [[24, "arkouda.ByteDType", false]], "bytedtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ByteDType", false]], "bytes_ (class in arkouda)": [[24, "arkouda.bytes_", false]], "bytes_ (class in arkouda.numpy)": [[35, "arkouda.numpy.bytes_", false]], "bytesdtype (class in arkouda)": [[24, "arkouda.BytesDType", false]], "bytesdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.BytesDType", false]], "byteswap() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.byteswap", false]], "byteswap() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.byteswap", false]], "byteswap() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.byteswap", false]], "byteswap() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.byteswap", false]], "byteswap() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.byteswap", false]], "byteswap() (arkouda.str_ method)": [[24, "arkouda.str_.byteswap", false], [24, "id1297", false]], "cached_regex_patterns() (arkouda.strings method)": [[24, "arkouda.Strings.cached_regex_patterns", false], [24, "id504", false], [24, "id580", false], [24, "id656", false], [24, "id732", false]], "cached_regex_patterns() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.cached_regex_patterns", false]], "cachedaccessor (class in arkouda)": [[24, "arkouda.CachedAccessor", false]], "cachedaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.CachedAccessor", false]], "can_cast() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.can_cast", false]], "capitalize() (arkouda.strings method)": [[24, "arkouda.Strings.capitalize", false], [24, "id505", false], [24, "id581", false], [24, "id657", false], [24, "id733", false]], "capitalize() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.capitalize", false]], "cast() (in module arkouda)": [[24, "arkouda.cast", false], [24, "id857", false], [94, "arkouda.cast", false]], "cast() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.cast", false]], "cast() (in module arkouda.numpy)": [[35, "arkouda.numpy.cast", false]], "cast() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.cast", false]], "categorical (class in arkouda)": [[24, "arkouda.Categorical", false], [24, "id6", false], [24, "id64", false], [88, "arkouda.Categorical", false]], "categorical (class in arkouda.categorical)": [[17, "arkouda.categorical.Categorical", false]], "categories (arkouda.categorical attribute)": [[24, "arkouda.Categorical.categories", false], [24, "id65", false], [24, "id7", false], [88, "arkouda.Categorical.categories", false]], "categories (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.categories", false]], "cdouble (class in arkouda)": [[24, "arkouda.cdouble", false]], "cdouble (class in arkouda.numpy)": [[35, "arkouda.numpy.cdouble", false]], "ceil() (in module arkouda)": [[24, "arkouda.ceil", false]], "ceil() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.ceil", false]], "ceil() (in module arkouda.numpy)": [[35, "arkouda.numpy.ceil", false]], "cfloat (class in arkouda)": [[24, "arkouda.cfloat", false]], "cfloat (class in arkouda.numpy)": [[35, "arkouda.numpy.cfloat", false]], "character (class in arkouda)": [[24, "arkouda.character", false]], "character (class in arkouda.numpy)": [[35, "arkouda.numpy.character", false]], "chi2 (class in arkouda.scipy.stats)": [[46, "arkouda.scipy.stats.chi2", false]], "chisquare() (in module arkouda)": [[24, "arkouda.chisquare", false]], "chisquare() (in module arkouda.scipy)": [[44, "arkouda.scipy.chisquare", false]], "choice() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.choice", false]], "choice() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.choice", false]], "choice() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.choice", false]], "choose() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.choose", false]], "choose() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.choose", false]], "choose() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.choose", false]], "choose() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.choose", false]], "choose() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.choose", false]], "choose() (arkouda.str_ method)": [[24, "arkouda.str_.choose", false], [24, "id1298", false]], "chunk_info() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.chunk_info", false]], "chunk_info() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.chunk_info", false]], "clear() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.clear", false]], "clear() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.clear", false]], "clear() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.clear", false]], "clear() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.clear", false]], "clear() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.clear", false]], "clear() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.clear", false]], "clear() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.clear", false]], "clear() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.clear", false]], "clear() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.clear", false]], "clear() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.clear", false]], "clear() (arkouda.sctypes method)": [[24, "arkouda.sctypes.clear", false]], "clear() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.clear", false]], "clear() (in module arkouda)": [[24, "arkouda.clear", false]], "clear() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.clear", false]], "clip() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.clip", false]], "clip() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.clip", false]], "clip() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.clip", false]], "clip() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.clip", false]], "clip() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.clip", false]], "clip() (arkouda.str_ method)": [[24, "arkouda.str_.clip", false], [24, "id1299", false]], "clip() (in module arkouda)": [[24, "arkouda.clip", false]], "clip() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.clip", false]], "clip() (in module arkouda.numpy)": [[35, "arkouda.numpy.clip", false]], "clongdouble (class in arkouda)": [[24, "arkouda.clongdouble", false]], "clongdouble (class in arkouda.numpy)": [[35, "arkouda.numpy.clongdouble", false]], "clongdoubledtype (class in arkouda)": [[24, "arkouda.CLongDoubleDType", false]], "clongdoubledtype (class in arkouda.numpy)": [[35, "arkouda.numpy.CLongDoubleDType", false]], "clongfloat (class in arkouda)": [[24, "arkouda.clongfloat", false]], "clongfloat (class in arkouda.numpy)": [[35, "arkouda.numpy.clongfloat", false]], "clz() (arkouda.pdarray method)": [[24, "arkouda.pdarray.clz", false], [24, "id1010", false], [24, "id1081", false], [24, "id1152", false], [24, "id1223", false], [24, "id939", false]], "clz() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.clz", false]], "clz() (in module arkouda)": [[24, "arkouda.clz", false]], "clz() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.clz", false]], "coargsort() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.coargsort", false], [24, "id131", false]], "coargsort() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.coargsort", false]], "coargsort() (in module arkouda)": [[24, "arkouda.coargsort", false], [24, "id858", false], [24, "id859", false], [86, "arkouda.coargsort", false]], "coargsort() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.coargsort", false]], "coargsort() (in module arkouda.sorting)": [[50, "arkouda.sorting.coargsort", false]], "codes (arkouda.categorical attribute)": [[24, "arkouda.Categorical.codes", false], [24, "id66", false], [24, "id8", false], [88, "arkouda.Categorical.codes", false]], "codes (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.codes", false]], "columns (arkouda.dataframe property)": [[24, "arkouda.DataFrame.columns", false], [24, "id132", false]], "columns (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.columns", false]], "compiler_flag() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.compiler_flag", false]], "compiler_flag() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.compiler_flag", false]], "complex128 (class in arkouda)": [[24, "arkouda.complex128", false]], "complex128 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.complex128", false]], "complex128 (class in arkouda.numpy)": [[35, "arkouda.numpy.complex128", false]], "complex128 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.complex128", false]], "complex128() (arkouda.dtype method)": [[24, "arkouda.DType.COMPLEX128", false]], "complex128() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.COMPLEX128", false]], "complex128() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.COMPLEX128", false]], "complex128() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.COMPLEX128", false]], "complex128dtype (class in arkouda)": [[24, "arkouda.Complex128DType", false]], "complex128dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Complex128DType", false]], "complex64 (class in arkouda)": [[24, "arkouda.complex64", false]], "complex64 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.complex64", false]], "complex64 (class in arkouda.numpy)": [[35, "arkouda.numpy.complex64", false]], "complex64 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.complex64", false]], "complex64() (arkouda.dtype method)": [[24, "arkouda.DType.COMPLEX64", false]], "complex64() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.COMPLEX64", false]], "complex64() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.COMPLEX64", false]], "complex64() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.COMPLEX64", false]], "complex64dtype (class in arkouda)": [[24, "arkouda.Complex64DType", false]], "complex64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Complex64DType", false]], "components (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.components", false]], "components (arkouda.timedelta property)": [[24, "arkouda.Timedelta.components", false], [24, "id799", false]], "compress() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.compress", false]], "compress() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.compress", false]], "compress() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.compress", false]], "compress() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.compress", false]], "compress() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.compress", false]], "compress() (arkouda.str_ method)": [[24, "arkouda.str_.compress", false], [24, "id1300", false]], "compute_join_size() (in module arkouda)": [[24, "arkouda.compute_join_size", false]], "compute_join_size() (in module arkouda.join)": [[29, "arkouda.join.compute_join_size", false]], "concat() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.concat", false], [24, "id133", false]], "concat() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.concat", false]], "concat() (arkouda.index method)": [[24, "arkouda.Index.concat", false]], "concat() (arkouda.index.index method)": [[25, "arkouda.index.Index.concat", false]], "concat() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.concat", false]], "concat() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.concat", false]], "concat() (arkouda.segarray class method)": [[24, "arkouda.SegArray.concat", false]], "concat() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.concat", false]], "concat() (arkouda.series method)": [[24, "arkouda.Series.concat", false]], "concat() (arkouda.series.series method)": [[49, "arkouda.series.Series.concat", false]], "concat() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.concat", false]], "concat() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.concat", false]], "concat() (in module arkouda.index)": [[85, "arkouda.Index.concat", false]], "concat() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.concat", false]], "concatenate() (arkouda.categorical method)": [[24, "arkouda.Categorical.concatenate", false], [24, "id20", false], [24, "id78", false]], "concatenate() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.concatenate", false]], "concatenate() (in module arkouda)": [[24, "arkouda.concatenate", false], [24, "id860", false], [24, "id861", false], [89, "arkouda.concatenate", false]], "concatenate() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.concatenate", false]], "concatenate() (in module arkouda.util)": [[56, "arkouda.util.concatenate", false]], "conj() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.conj", false]], "conj() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.conj", false]], "conj() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.conj", false]], "conj() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.conj", false]], "conj() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.conj", false]], "conj() (arkouda.str_ method)": [[24, "arkouda.str_.conj", false], [24, "id1301", false]], "conj() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.conj", false]], "conjugate() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.conjugate", false]], "conjugate() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.conjugate", false]], "conjugate() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.conjugate", false]], "conjugate() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.conjugate", false]], "conjugate() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.conjugate", false]], "conjugate() (arkouda.str_ method)": [[24, "arkouda.str_.conjugate", false], [24, "id1302", false]], "connect() (in module arkouda)": [[99, "arkouda.connect", false]], "connect() (in module arkouda.client)": [[18, "arkouda.client.connect", false]], "conserves (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.conserves", false]], "conserves (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.conserves", false]], "contains() (arkouda.categorical method)": [[24, "arkouda.Categorical.contains", false], [24, "id21", false], [24, "id79", false], [88, "arkouda.Categorical.contains", false]], "contains() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.contains", false]], "contains() (arkouda.strings method)": [[24, "arkouda.Strings.contains", false], [24, "id506", false], [24, "id582", false], [24, "id658", false], [24, "id734", false], [100, "arkouda.Strings.contains", false]], "contains() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.contains", false]], "convert_bytes() (in module arkouda.util)": [[56, "arkouda.util.convert_bytes", false]], "convert_if_categorical() (in module arkouda)": [[24, "arkouda.convert_if_categorical", false]], "convert_if_categorical() (in module arkouda.util)": [[56, "arkouda.util.convert_if_categorical", false]], "copy() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.copy", false]], "copy() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.copy", false]], "copy() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.copy", false]], "copy() (arkouda.dtypes method)": [[24, "arkouda.DTypes.copy", false]], "copy() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.copy", false]], "copy() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.copy", false]], "copy() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.copy", false]], "copy() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.copy", false]], "copy() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.copy", false]], "copy() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.copy", false]], "copy() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.copy", false]], "copy() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.copy", false]], "copy() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.copy", false]], "copy() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.copy", false]], "copy() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.copy", false]], "copy() (arkouda.inttypes method)": [[24, "arkouda.intTypes.copy", false], [24, "id886", false], [24, "id895", false]], "copy() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.copy", false]], "copy() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.copy", false]], "copy() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.copy", false]], "copy() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.copy", false]], "copy() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.copy", false]], "copy() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.copy", false]], "copy() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.copy", false]], "copy() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.copy", false]], "copy() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.copy", false]], "copy() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.copy", false]], "copy() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.copy", false]], "copy() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.copy", false]], "copy() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.copy", false]], "copy() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.copy", false]], "copy() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.copy", false]], "copy() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.copy", false]], "copy() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.copy", false]], "copy() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.copy", false]], "copy() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.copy", false]], "copy() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.copy", false]], "copy() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.copy", false]], "copy() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.copy", false]], "copy() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.copy", false]], "copy() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.copy", false]], "copy() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.copy", false]], "copy() (arkouda.sctypes method)": [[24, "arkouda.sctypes.copy", false]], "copy() (arkouda.segarray method)": [[24, "arkouda.SegArray.copy", false]], "copy() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.copy", false]], "copy() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.copy", false]], "copy() (arkouda.str_ method)": [[24, "arkouda.str_.copy", false], [24, "id1303", false]], "copy() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.copy", false]], "corr() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.corr", false], [24, "id134", false]], "corr() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.corr", false]], "corr() (arkouda.pdarray method)": [[24, "arkouda.pdarray.corr", false], [24, "id1011", false], [24, "id1082", false], [24, "id1153", false], [24, "id1224", false], [24, "id940", false]], "corr() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.corr", false]], "corr() (in module arkouda)": [[24, "arkouda.corr", false]], "corr() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.corr", false]], "cos() (in module arkouda)": [[24, "arkouda.cos", false], [87, "arkouda.cos", false]], "cos() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.cos", false]], "cos() (in module arkouda.numpy)": [[35, "arkouda.numpy.cos", false]], "cosh() (in module arkouda)": [[24, "arkouda.cosh", false]], "cosh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.cosh", false]], "cosh() (in module arkouda.numpy)": [[35, "arkouda.numpy.cosh", false]], "count() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.count", false], [24, "id135", false]], "count() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.count", false]], "count() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.count", false]], "count() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.count", false]], "count() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.count", false]], "count() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.count", false]], "count() (arkouda.dtypes.arkouda_supported_floats method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_FLOATS.count", false]], "count() (arkouda.dtypes.arkouda_supported_ints method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_INTS.count", false]], "count() (arkouda.dtypes.arkouda_supported_numbers method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_NUMBERS.count", false]], "count() (arkouda.groupby method)": [[24, "arkouda.GroupBy.count", false], [24, "id266", false], [24, "id313", false], [24, "id360", false], [24, "id407", false], [24, "id454", false], [91, "arkouda.GroupBy.count", false]], "count() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.count", false]], "count() (arkouda.numpy.dtypes.arkouda_supported_floats method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_FLOATS.count", false]], "count() (arkouda.numpy.dtypes.arkouda_supported_ints method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_INTS.count", false]], "count() (arkouda.numpy.dtypes.arkouda_supported_numbers method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_NUMBERS.count", false]], "count() (arkouda.numpy.scalartype method)": [[35, "arkouda.numpy.ScalarType.count", false]], "count() (arkouda.scalartype method)": [[24, "arkouda.ScalarType.count", false]], "count_nonzero() (in module arkouda)": [[24, "arkouda.count_nonzero", false]], "count_nonzero() (in module arkouda.numpy)": [[35, "arkouda.numpy.count_nonzero", false]], "counts (arkouda.array_api.set_functions.uniqueallresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueAllResult.counts", false]], "counts (arkouda.array_api.set_functions.uniquecountsresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueCountsResult.counts", false]], "cov() (arkouda.pdarray method)": [[24, "arkouda.pdarray.cov", false], [24, "id1012", false], [24, "id1083", false], [24, "id1154", false], [24, "id1225", false], [24, "id941", false]], "cov() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.cov", false]], "cov() (in module arkouda)": [[24, "arkouda.cov", false]], "cov() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.cov", false]], "create_pdarray() (in module arkouda)": [[24, "arkouda.create_pdarray", false], [24, "id862", false], [24, "id863", false], [24, "id864", false], [24, "id865", false]], "create_sparray() (in module arkouda)": [[24, "arkouda.create_sparray", false]], "create_sparray() (in module arkouda.sparrayclass)": [[51, "arkouda.sparrayclass.create_sparray", false]], "create_sparse_matrix() (in module arkouda.sparsematrix)": [[52, "arkouda.sparsematrix.create_sparse_matrix", false]], "critical (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.CRITICAL", false]], "critical (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.CRITICAL", false]], "csingle (class in arkouda)": [[24, "arkouda.csingle", false]], "csingle (class in arkouda.numpy)": [[35, "arkouda.numpy.csingle", false]], "ctz() (arkouda.pdarray method)": [[24, "arkouda.pdarray.ctz", false], [24, "id1013", false], [24, "id1084", false], [24, "id1155", false], [24, "id1226", false], [24, "id942", false]], "ctz() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.ctz", false]], "ctz() (in module arkouda)": [[24, "arkouda.ctz", false]], "ctz() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.ctz", false]], "cumprod() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.cumprod", false]], "cumprod() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.cumprod", false]], "cumprod() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.cumprod", false]], "cumprod() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.cumprod", false]], "cumprod() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.cumprod", false]], "cumprod() (arkouda.str_ method)": [[24, "arkouda.str_.cumprod", false], [24, "id1304", false]], "cumprod() (in module arkouda)": [[24, "arkouda.cumprod", false], [87, "arkouda.cumprod", false]], "cumprod() (in module arkouda.numpy)": [[35, "arkouda.numpy.cumprod", false]], "cumsum() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.cumsum", false]], "cumsum() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.cumsum", false]], "cumsum() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.cumsum", false]], "cumsum() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.cumsum", false]], "cumsum() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.cumsum", false]], "cumsum() (arkouda.str_ method)": [[24, "arkouda.str_.cumsum", false], [24, "id1305", false]], "cumsum() (in module arkouda)": [[24, "arkouda.cumsum", false], [24, "id866", false], [24, "id867", false], [87, "arkouda.cumsum", false]], "cumsum() (in module arkouda.numpy)": [[35, "arkouda.numpy.cumsum", false]], "cumulative_sum() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.cumulative_sum", false]], "data (arkouda.accessor.datetimeaccessor attribute)": [[2, "arkouda.accessor.DatetimeAccessor.data", false]], "data (arkouda.accessor.stringaccessor attribute)": [[2, "arkouda.accessor.StringAccessor.data", false]], "data (arkouda.datetimeaccessor attribute)": [[24, "arkouda.DatetimeAccessor.data", false]], "data (arkouda.stringaccessor attribute)": [[24, "arkouda.StringAccessor.data", false]], "data() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.data", false]], "data() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.data", false]], "data() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.data", false]], "data() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.data", false]], "data() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.data", false]], "data() (arkouda.str_ method)": [[24, "arkouda.str_.data", false], [24, "id1306", false]], "dataframe (class in arkouda)": [[24, "arkouda.DataFrame", false], [24, "id122", false], [90, "arkouda.DataFrame", false]], "dataframe (class in arkouda.dataframe)": [[20, "arkouda.dataframe.DataFrame", false]], "dataframegroupby (class in arkouda)": [[24, "arkouda.DataFrameGroupBy", false]], "dataframegroupby (class in arkouda.dataframe)": [[20, "arkouda.dataframe.DataFrameGroupBy", false]], "datasource (class in arkouda)": [[24, "arkouda.DataSource", false]], "datasource (class in arkouda.numpy)": [[35, "arkouda.numpy.DataSource", false]], "date (arkouda.datetime property)": [[24, "arkouda.Datetime.date", false], [24, "id179", false], [24, "id212", false]], "date (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.date", false]], "date_operators() (in module arkouda)": [[24, "arkouda.date_operators", false]], "date_operators() (in module arkouda.accessor)": [[2, "arkouda.accessor.date_operators", false]], "date_range() (in module arkouda)": [[24, "arkouda.date_range", false], [24, "id868", false]], "date_range() (in module arkouda.timeclass)": [[55, "arkouda.timeclass.date_range", false]], "datetime (class in arkouda)": [[24, "arkouda.Datetime", false], [24, "id178", false], [24, "id211", false]], "datetime (class in arkouda.timeclass)": [[55, "arkouda.timeclass.Datetime", false]], "datetime64 (class in arkouda)": [[24, "arkouda.datetime64", false]], "datetime64 (class in arkouda.numpy)": [[35, "arkouda.numpy.datetime64", false]], "datetime64dtype (class in arkouda)": [[24, "arkouda.DateTime64DType", false]], "datetime64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.DateTime64DType", false]], "datetimeaccessor (class in arkouda)": [[24, "arkouda.DatetimeAccessor", false]], "datetimeaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.DatetimeAccessor", false]], "day (arkouda.datetime property)": [[24, "arkouda.Datetime.day", false], [24, "id180", false], [24, "id213", false]], "day (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day", false]], "day_of_week (arkouda.datetime property)": [[24, "arkouda.Datetime.day_of_week", false], [24, "id181", false], [24, "id214", false]], "day_of_week (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day_of_week", false]], "day_of_year (arkouda.datetime property)": [[24, "arkouda.Datetime.day_of_year", false], [24, "id182", false], [24, "id215", false]], "day_of_year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day_of_year", false]], "dayofweek (arkouda.datetime property)": [[24, "arkouda.Datetime.dayofweek", false], [24, "id183", false], [24, "id216", false]], "dayofweek (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.dayofweek", false]], "dayofyear (arkouda.datetime property)": [[24, "arkouda.Datetime.dayofyear", false], [24, "id184", false], [24, "id217", false]], "dayofyear (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.dayofyear", false]], "days (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.days", false]], "days (arkouda.timedelta property)": [[24, "arkouda.Timedelta.days", false], [24, "id800", false]], "debug (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.DEBUG", false]], "debug (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.DEBUG", false]], "decode() (arkouda.strings method)": [[24, "arkouda.Strings.decode", false], [24, "id507", false], [24, "id583", false], [24, "id659", false], [24, "id735", false]], "decode() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.decode", false]], "default_rng() (in module arkouda.numpy.random)": [[36, "arkouda.numpy.random.default_rng", false]], "default_rng() (in module arkouda.random)": [[42, "arkouda.random.default_rng", false]], "deg2rad() (in module arkouda)": [[24, "arkouda.deg2rad", false]], "deg2rad() (in module arkouda.numpy)": [[35, "arkouda.numpy.deg2rad", false]], "delete() (in module arkouda)": [[24, "arkouda.delete", false]], "delete() (in module arkouda.pdarraymanipulation)": [[39, "arkouda.pdarraymanipulation.delete", false]], "delete_directory() (in module arkouda.io_util)": [[28, "arkouda.io_util.delete_directory", false]], "delimited_file_to_dict() (in module arkouda.io_util)": [[28, "arkouda.io_util.delimited_file_to_dict", false]], "denominator() (arkouda.integer method)": [[24, "arkouda.integer.denominator", false]], "denominator() (arkouda.numpy.integer method)": [[35, "arkouda.numpy.integer.denominator", false]], "deprecate() (in module arkouda)": [[24, "arkouda.deprecate", false]], "deprecate() (in module arkouda.numpy)": [[35, "arkouda.numpy.deprecate", false]], "deprecate_with_doc() (in module arkouda)": [[24, "arkouda.deprecate_with_doc", false]], "deprecate_with_doc() (in module arkouda.numpy)": [[35, "arkouda.numpy.deprecate_with_doc", false]], "device (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.device", false]], "device (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.device", false]], "df (arkouda.dataframe.dataframegroupby attribute)": [[20, "arkouda.dataframe.DataFrameGroupBy.df", false]], "df (arkouda.dataframegroupby attribute)": [[24, "arkouda.DataFrameGroupBy.df", false]], "diagonal() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.diagonal", false]], "diagonal() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.diagonal", false]], "diagonal() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.diagonal", false]], "diagonal() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.diagonal", false]], "diagonal() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.diagonal", false]], "diagonal() (arkouda.str_ method)": [[24, "arkouda.str_.diagonal", false], [24, "id1307", false]], "dict_to_delimited_file() (in module arkouda.io_util)": [[28, "arkouda.io_util.dict_to_delimited_file", false]], "diff() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.diff", false]], "diff() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.diff", false]], "diff() (arkouda.series method)": [[24, "arkouda.Series.diff", false]], "diff() (arkouda.series.series method)": [[49, "arkouda.series.Series.diff", false]], "diff() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.diff", false]], "diffaggregate (class in arkouda)": [[24, "arkouda.DiffAggregate", false]], "diffaggregate (class in arkouda.dataframe)": [[20, "arkouda.dataframe.DiffAggregate", false]], "difference() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.difference", false]], "difference() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.difference", false]], "difference() (arkouda.dtypes method)": [[24, "arkouda.DTypes.difference", false]], "difference() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.difference", false]], "difference() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.difference", false]], "difference() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.difference", false]], "difference() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.difference", false]], "difference() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.difference", false]], "difference() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.difference", false]], "difference() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.difference", false]], "difference() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.difference", false]], "difference() (arkouda.inttypes method)": [[24, "arkouda.intTypes.difference", false], [24, "id887", false], [24, "id896", false]], "difference() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.difference", false]], "difference() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.difference", false]], "difference() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.difference", false]], "difference() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.difference", false]], "difference() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.difference", false]], "difference() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.difference", false]], "difference() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.difference", false]], "difference() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.difference", false]], "difference() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.difference", false]], "difference() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.difference", false]], "difference() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.difference", false]], "difference() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.difference", false]], "difference() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.difference", false]], "difference() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.difference", false]], "disableverbose() (in module arkouda)": [[24, "arkouda.disableVerbose", false]], "disableverbose() (in module arkouda.logger)": [[30, "arkouda.logger.disableVerbose", false]], "disconnect() (in module arkouda.client)": [[18, "arkouda.client.disconnect", false]], "disp() (in module arkouda)": [[24, "arkouda.disp", false]], "disp() (in module arkouda.numpy)": [[35, "arkouda.numpy.disp", false]], "divide() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.divide", false]], "divmod() (in module arkouda)": [[24, "arkouda.divmod", false]], "divmod() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.divmod", false]], "dot() (in module arkouda)": [[24, "arkouda.dot", false]], "dot() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.dot", false]], "double (class in arkouda)": [[24, "arkouda.double", false]], "double (class in arkouda.numpy)": [[35, "arkouda.numpy.double", false]], "drop() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.drop", false], [24, "id136", false]], "drop() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.drop", false]], "drop() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.drop", false]], "drop_duplicates() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.drop_duplicates", false], [24, "id137", false]], "drop_duplicates() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.drop_duplicates", false]], "drop_duplicates() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.drop_duplicates", false]], "dropna (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.dropna", false], [24, "id253", false], [24, "id300", false], [24, "id347", false], [24, "id394", false], [24, "id441", false], [91, "arkouda.GroupBy.dropna", false]], "dropna (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.dropna", false]], "dropna() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.dropna", false], [24, "id138", false]], "dropna() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.dropna", false]], "dt() (arkouda.series method)": [[24, "arkouda.Series.dt", false]], "dt() (arkouda.series.series method)": [[49, "arkouda.series.Series.dt", false]], "dtype (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.dtype", false]], "dtype (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.dtype", false]], "dtype (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.dtype", false]], "dtype (arkouda.array_api.data_type_functions.iinfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.iinfo_object.dtype", false]], "dtype (arkouda.categorical attribute)": [[24, "arkouda.Categorical.dtype", false], [24, "id22", false], [24, "id80", false]], "dtype (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.dtype", false]], "dtype (arkouda.finfo attribute)": [[24, "arkouda.finfo.dtype", false]], "dtype (arkouda.format_parser attribute)": [[24, "arkouda.format_parser.dtype", false]], "dtype (arkouda.iinfo attribute)": [[24, "arkouda.iinfo.dtype", false]], "dtype (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.dtype", false]], "dtype (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.dtype", false]], "dtype (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.dtype", false]], "dtype (arkouda.numpy.format_parser attribute)": [[35, "arkouda.numpy.format_parser.dtype", false]], "dtype (arkouda.numpy.iinfo attribute)": [[35, "arkouda.numpy.iinfo.dtype", false]], "dtype (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.dtype", false], [24, "id1014", false], [24, "id1065", false], [24, "id1085", false], [24, "id1136", false], [24, "id1156", false], [24, "id1207", false], [24, "id1227", false], [24, "id913", false], [24, "id923", false], [24, "id943", false], [24, "id994", false], [94, "arkouda.pdarray.dtype", false]], "dtype (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.dtype", false], [37, "id0", false]], "dtype (arkouda.segarray attribute)": [[24, "arkouda.SegArray.dtype", false]], "dtype (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.dtype", false]], "dtype (arkouda.series property)": [[24, "arkouda.Series.dtype", false]], "dtype (arkouda.series.series property)": [[49, "arkouda.series.Series.dtype", false]], "dtype (arkouda.sparray attribute)": [[24, "arkouda.sparray.dtype", false], [24, "id1280", false]], "dtype (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.dtype", false], [51, "id0", false]], "dtype (arkouda.strings attribute)": [[24, "arkouda.Strings.dtype", false], [24, "id490", false], [24, "id499", false], [24, "id508", false], [24, "id575", false], [24, "id584", false], [24, "id651", false], [24, "id660", false], [24, "id727", false], [24, "id736", false]], "dtype (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.dtype", false], [53, "id0", false]], "dtype (class in arkouda)": [[24, "arkouda.DType", false]], "dtype (class in arkouda.dtypes)": [[21, "arkouda.dtypes.DType", false]], "dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.DType", false]], "dtype (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.DType", false]], "dtype() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.dtype", false]], "dtype() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.dtype", false]], "dtype() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.dtype", false]], "dtype() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.dtype", false]], "dtype() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.dtype", false]], "dtype() (arkouda.str_ method)": [[24, "arkouda.str_.dtype", false], [24, "id1308", false]], "dtype() (in module arkouda)": [[24, "arkouda.dtype", false]], "dtype() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.dtype", false]], "dtype() (in module arkouda.numpy)": [[35, "arkouda.numpy.dtype", false]], "dtype() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.dtype", false]], "dtypeobjects (class in arkouda)": [[24, "arkouda.DTypeObjects", false]], "dtypeobjects (class in arkouda.dtypes)": [[21, "arkouda.dtypes.DTypeObjects", false]], "dtypeobjects (class in arkouda.numpy)": [[35, "arkouda.numpy.DTypeObjects", false]], "dtypeobjects (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.DTypeObjects", false]], "dtypes (arkouda.dataframe property)": [[24, "arkouda.DataFrame.dtypes", false], [24, "id139", false]], "dtypes (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.dtypes", false]], "dtypes (class in arkouda)": [[24, "arkouda.DTypes", false]], "dtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.DTypes", false]], "dtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.DTypes", false]], "dtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.DTypes", false]], "dump() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.dump", false]], "dump() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.dump", false]], "dump() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.dump", false]], "dump() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.dump", false]], "dump() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.dump", false]], "dump() (arkouda.str_ method)": [[24, "arkouda.str_.dump", false], [24, "id1309", false]], "dumps() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.dumps", false]], "dumps() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.dumps", false]], "dumps() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.dumps", false]], "dumps() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.dumps", false]], "dumps() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.dumps", false]], "dumps() (arkouda.str_ method)": [[24, "arkouda.str_.dumps", false], [24, "id1310", false]], "e (in module arkouda)": [[24, "arkouda.e", false]], "e (in module arkouda.numpy)": [[35, "arkouda.numpy.e", false]], "empty (arkouda.dataframe property)": [[24, "arkouda.DataFrame.empty", false], [24, "id140", false]], "empty (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.empty", false]], "empty() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.empty", false]], "empty_like() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.empty_like", false]], "enableverbose() (in module arkouda)": [[24, "arkouda.enableVerbose", false]], "enableverbose() (in module arkouda.logger)": [[30, "arkouda.logger.enableVerbose", false]], "encode() (arkouda.strings method)": [[24, "arkouda.Strings.encode", false], [24, "id509", false], [24, "id585", false], [24, "id661", false], [24, "id737", false]], "encode() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.encode", false]], "end() (arkouda.match.match method)": [[31, "arkouda.match.Match.end", false], [100, "arkouda.match.Match.end", false]], "endswith() (arkouda.categorical method)": [[24, "arkouda.Categorical.endswith", false], [24, "id23", false], [24, "id81", false], [88, "arkouda.Categorical.endswith", false]], "endswith() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.endswith", false]], "endswith() (arkouda.strings method)": [[24, "arkouda.Strings.endswith", false], [24, "id510", false], [24, "id586", false], [24, "id662", false], [24, "id738", false], [100, "arkouda.Strings.endswith", false]], "endswith() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.endswith", false]], "enrich_inplace() (in module arkouda.util)": [[56, "arkouda.util.enrich_inplace", false]], "entry (arkouda.strings attribute)": [[24, "arkouda.Strings.entry", false], [24, "id491", false], [24, "id494", false], [24, "id511", false], [24, "id570", false], [24, "id587", false], [24, "id646", false], [24, "id663", false], [24, "id722", false], [24, "id739", false]], "entry (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.entry", false], [53, "id1", false]], "enum (class in arkouda.dtypes)": [[21, "arkouda.dtypes.Enum", false]], "enum (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.Enum", false]], "eps (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.eps", false]], "eps (arkouda.finfo attribute)": [[24, "arkouda.finfo.eps", false]], "eps (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.eps", false]], "epsneg (arkouda.finfo attribute)": [[24, "arkouda.finfo.epsneg", false]], "epsneg (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.epsneg", false]], "equal() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.equal", false]], "equal_levels() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.equal_levels", false]], "equal_levels() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.equal_levels", false]], "equals() (arkouda.categorical method)": [[24, "arkouda.Categorical.equals", false], [24, "id24", false], [24, "id82", false]], "equals() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.equals", false]], "equals() (arkouda.index method)": [[24, "arkouda.Index.equals", false]], "equals() (arkouda.index.index method)": [[25, "arkouda.index.Index.equals", false]], "equals() (arkouda.pdarray method)": [[24, "arkouda.pdarray.equals", false], [24, "id1015", false], [24, "id1086", false], [24, "id1157", false], [24, "id1228", false], [24, "id944", false]], "equals() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.equals", false]], "equals() (arkouda.strings method)": [[24, "arkouda.Strings.equals", false], [24, "id512", false], [24, "id588", false], [24, "id664", false], [24, "id740", false]], "equals() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.equals", false]], "error (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.ERROR", false]], "error (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.ERROR", false]], "errormode (class in arkouda)": [[24, "arkouda.ErrorMode", false]], "errormode (class in arkouda.numpy)": [[35, "arkouda.numpy.ErrorMode", false]], "euler_gamma (in module arkouda)": [[24, "arkouda.euler_gamma", false]], "euler_gamma (in module arkouda.numpy)": [[35, "arkouda.numpy.euler_gamma", false]], "exists() (arkouda.datasource method)": [[24, "arkouda.DataSource.exists", false]], "exists() (arkouda.numpy.datasource method)": [[35, "arkouda.numpy.DataSource.exists", false]], "exp() (in module arkouda)": [[24, "arkouda.exp", false], [87, "arkouda.exp", false]], "exp() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.exp", false]], "exp() (in module arkouda.numpy)": [[35, "arkouda.numpy.exp", false]], "expand() (in module arkouda.util)": [[56, "arkouda.util.expand", false]], "expand_dims() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.expand_dims", false]], "expm1() (in module arkouda)": [[24, "arkouda.expm1", false]], "expm1() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.expm1", false]], "expm1() (in module arkouda.numpy)": [[35, "arkouda.numpy.expm1", false]], "exponential() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.exponential", false]], "exponential() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.exponential", false]], "exponential() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.exponential", false]], "export() (in module arkouda)": [[24, "arkouda.export", false], [84, "arkouda.export", false]], "export() (in module arkouda.io)": [[27, "arkouda.io.export", false]], "export_uint() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.export_uint", false]], "export_uint() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.export_uint", false]], "eye() (in module arkouda)": [[24, "arkouda.eye", false]], "eye() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.eye", false]], "eye() (in module arkouda.numpy)": [[35, "arkouda.numpy.eye", false]], "factory() (arkouda.index static method)": [[24, "arkouda.Index.factory", false]], "factory() (arkouda.index.index static method)": [[25, "arkouda.index.Index.factory", false]], "false_ (class in arkouda)": [[24, "arkouda.False_", false]], "false_ (class in arkouda.numpy)": [[35, "arkouda.numpy.False_", false]], "fields (class in arkouda)": [[24, "arkouda.Fields", false]], "fields (class in arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.Fields", false]], "fill() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.fill", false]], "fill() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.fill", false]], "fill() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.fill", false]], "fill() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.fill", false]], "fill() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.fill", false]], "fill() (arkouda.pdarray method)": [[24, "arkouda.pdarray.fill", false], [24, "id1016", false], [24, "id1087", false], [24, "id1158", false], [24, "id1229", false], [24, "id945", false]], "fill() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.fill", false]], "fill() (arkouda.str_ method)": [[24, "arkouda.str_.fill", false], [24, "id1311", false]], "fill_vals() (arkouda.sparray method)": [[24, "arkouda.sparray.fill_vals", false]], "fill_vals() (arkouda.sparrayclass.sparray method)": [[51, "arkouda.sparrayclass.sparray.fill_vals", false]], "fillna() (arkouda.series method)": [[24, "arkouda.Series.fillna", false]], "fillna() (arkouda.series.series method)": [[49, "arkouda.series.Series.fillna", false]], "filter() (arkouda.segarray method)": [[24, "arkouda.SegArray.filter", false]], "filter() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.filter", false]], "filter_by_range() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.filter_by_range", false], [24, "id141", false]], "filter_by_range() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.filter_by_range", false]], "find() (in module arkouda)": [[24, "arkouda.find", false]], "find() (in module arkouda.alignment)": [[3, "arkouda.alignment.find", false]], "find_locations() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.find_locations", false]], "find_locations() (arkouda.strings method)": [[24, "arkouda.Strings.find_locations", false], [24, "id513", false], [24, "id589", false], [24, "id665", false], [24, "id741", false], [100, "arkouda.Strings.find_locations", false]], "find_locations() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.find_locations", false]], "find_matches() (arkouda.match.match method)": [[31, "arkouda.match.Match.find_matches", false], [100, "arkouda.match.Match.find_matches", false]], "findall() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.findall", false]], "findall() (arkouda.strings method)": [[24, "arkouda.Strings.findall", false], [24, "id514", false], [24, "id590", false], [24, "id666", false], [24, "id742", false], [100, "arkouda.Strings.findall", false]], "findall() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.findall", false]], "finfo (class in arkouda)": [[24, "arkouda.finfo", false]], "finfo (class in arkouda.numpy)": [[35, "arkouda.numpy.finfo", false]], "finfo() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.finfo", false]], "finfo_object (class in arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.finfo_object", false]], "first (arkouda.index.multiindex attribute)": [[25, "arkouda.index.MultiIndex.first", false]], "first (arkouda.multiindex attribute)": [[24, "arkouda.MultiIndex.first", false]], "first() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.first", false]], "first() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.first", false]], "first() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.first", false]], "first() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.first", false]], "first() (arkouda.groupby method)": [[24, "arkouda.GroupBy.first", false], [24, "id267", false], [24, "id314", false], [24, "id361", false], [24, "id408", false], [24, "id455", false], [91, "arkouda.GroupBy.first", false]], "first() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.first", false]], "flags() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.flags", false]], "flags() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.flags", false]], "flags() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.flags", false]], "flags() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.flags", false]], "flags() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.flags", false]], "flags() (arkouda.str_ method)": [[24, "arkouda.str_.flags", false], [24, "id1312", false]], "flat() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.flat", false]], "flat() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.flat", false]], "flat() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.flat", false]], "flat() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.flat", false]], "flat() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.flat", false]], "flat() (arkouda.str_ method)": [[24, "arkouda.str_.flat", false], [24, "id1313", false]], "flatten() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.flatten", false]], "flatten() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.flatten", false]], "flatten() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.flatten", false]], "flatten() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.flatten", false]], "flatten() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.flatten", false]], "flatten() (arkouda.pdarray method)": [[24, "arkouda.pdarray.flatten", false], [24, "id1017", false], [24, "id1088", false], [24, "id1159", false], [24, "id1230", false], [24, "id946", false]], "flatten() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.flatten", false]], "flatten() (arkouda.str_ method)": [[24, "arkouda.str_.flatten", false], [24, "id1314", false]], "flatten() (arkouda.strings method)": [[24, "arkouda.Strings.flatten", false], [24, "id515", false], [24, "id591", false], [24, "id667", false], [24, "id743", false], [100, "arkouda.Strings.flatten", false]], "flatten() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.flatten", false]], "flexible (class in arkouda)": [[24, "arkouda.flexible", false]], "flexible (class in arkouda.numpy)": [[35, "arkouda.numpy.flexible", false]], "flip() (in module arkouda)": [[24, "arkouda.flip", false]], "flip() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.flip", false]], "flip() (in module arkouda.numpy)": [[35, "arkouda.numpy.flip", false]], "float() (arkouda.dtype method)": [[24, "arkouda.DType.FLOAT", false]], "float() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.FLOAT", false]], "float() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.FLOAT", false]], "float() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.FLOAT", false]], "float16 (class in arkouda)": [[24, "arkouda.float16", false]], "float16 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.float16", false]], "float16 (class in arkouda.numpy)": [[35, "arkouda.numpy.float16", false]], "float16 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.float16", false]], "float16dtype (class in arkouda)": [[24, "arkouda.Float16DType", false]], "float16dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Float16DType", false]], "float32 (class in arkouda)": [[24, "arkouda.float32", false]], "float32 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.float32", false]], "float32 (class in arkouda.numpy)": [[35, "arkouda.numpy.float32", false]], "float32 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.float32", false]], "float32() (arkouda.dtype method)": [[24, "arkouda.DType.FLOAT32", false]], "float32() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.FLOAT32", false]], "float32() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.FLOAT32", false]], "float32() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.FLOAT32", false]], "float32dtype (class in arkouda)": [[24, "arkouda.Float32DType", false]], "float32dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Float32DType", false]], "float64 (class in arkouda)": [[24, "arkouda.float64", false]], "float64 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.float64", false]], "float64 (class in arkouda.numpy)": [[35, "arkouda.numpy.float64", false]], "float64 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.float64", false]], "float64() (arkouda.dtype method)": [[24, "arkouda.DType.FLOAT64", false]], "float64() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.FLOAT64", false]], "float64() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.FLOAT64", false]], "float64() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.FLOAT64", false]], "float64dtype (class in arkouda)": [[24, "arkouda.Float64DType", false]], "float64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Float64DType", false]], "float_ (class in arkouda)": [[24, "arkouda.float_", false]], "float_ (class in arkouda.numpy)": [[35, "arkouda.numpy.float_", false]], "float_scalars (class in arkouda)": [[24, "arkouda.float_scalars", false]], "float_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.float_scalars", false]], "float_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.float_scalars", false]], "float_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.float_scalars", false]], "floating (class in arkouda)": [[24, "arkouda.floating", false]], "floating (class in arkouda.numpy)": [[35, "arkouda.numpy.floating", false]], "floor() (in module arkouda)": [[24, "arkouda.floor", false]], "floor() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.floor", false]], "floor() (in module arkouda.numpy)": [[35, "arkouda.numpy.floor", false]], "floor_divide() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.floor_divide", false]], "fmod() (in module arkouda)": [[24, "arkouda.fmod", false]], "fmod() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.fmod", false]], "format() (arkouda.bitvector method)": [[24, "arkouda.BitVector.format", false]], "format() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.format", false]], "format() (arkouda.client_dtypes.fields method)": [[19, "arkouda.client_dtypes.Fields.format", false]], "format() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.format", false]], "format() (arkouda.fields method)": [[24, "arkouda.Fields.format", false]], "format() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.format", false]], "format_float_positional() (in module arkouda)": [[24, "arkouda.format_float_positional", false]], "format_float_positional() (in module arkouda.numpy)": [[35, "arkouda.numpy.format_float_positional", false]], "format_float_scientific() (in module arkouda)": [[24, "arkouda.format_float_scientific", false]], "format_float_scientific() (in module arkouda.numpy)": [[35, "arkouda.numpy.format_float_scientific", false]], "format_other() (arkouda.pdarray method)": [[24, "arkouda.pdarray.format_other", false], [24, "id1018", false], [24, "id1089", false], [24, "id1160", false], [24, "id1231", false], [24, "id947", false]], "format_other() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.format_other", false]], "format_parser (class in arkouda)": [[24, "arkouda.format_parser", false]], "format_parser (class in arkouda.numpy)": [[35, "arkouda.numpy.format_parser", false]], "from_codes() (arkouda.categorical class method)": [[24, "arkouda.Categorical.from_codes", false], [24, "id25", false], [24, "id83", false], [88, "arkouda.Categorical.from_codes", false]], "from_codes() (arkouda.categorical.categorical class method)": [[17, "arkouda.categorical.Categorical.from_codes", false]], "from_dlpack() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.from_dlpack", false]], "from_multi_array() (arkouda.segarray class method)": [[24, "arkouda.SegArray.from_multi_array", false]], "from_multi_array() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.from_multi_array", false]], "from_pandas() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.from_pandas", false], [24, "id142", false]], "from_pandas() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.from_pandas", false]], "from_parts() (arkouda.segarray class method)": [[24, "arkouda.SegArray.from_parts", false]], "from_parts() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.from_parts", false]], "from_parts() (arkouda.strings static method)": [[24, "arkouda.Strings.from_parts", false], [24, "id516", false], [24, "id592", false], [24, "id668", false], [24, "id744", false]], "from_parts() (arkouda.strings.strings static method)": [[53, "arkouda.strings.Strings.from_parts", false]], "from_return_msg() (arkouda.bitvector class method)": [[24, "arkouda.BitVector.from_return_msg", false]], "from_return_msg() (arkouda.categorical class method)": [[24, "arkouda.Categorical.from_return_msg", false], [24, "id26", false], [24, "id84", false]], "from_return_msg() (arkouda.categorical.categorical class method)": [[17, "arkouda.categorical.Categorical.from_return_msg", false]], "from_return_msg() (arkouda.client_dtypes.bitvector class method)": [[19, "arkouda.client_dtypes.BitVector.from_return_msg", false]], "from_return_msg() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.from_return_msg", false], [24, "id143", false]], "from_return_msg() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.from_return_msg", false]], "from_return_msg() (arkouda.groupby method)": [[24, "arkouda.GroupBy.from_return_msg", false], [24, "id268", false], [24, "id315", false], [24, "id362", false], [24, "id409", false], [24, "id456", false]], "from_return_msg() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.from_return_msg", false]], "from_return_msg() (arkouda.index class method)": [[24, "arkouda.Index.from_return_msg", false]], "from_return_msg() (arkouda.index.index class method)": [[25, "arkouda.index.Index.from_return_msg", false]], "from_return_msg() (arkouda.segarray class method)": [[24, "arkouda.SegArray.from_return_msg", false]], "from_return_msg() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.from_return_msg", false]], "from_return_msg() (arkouda.series method)": [[24, "arkouda.Series.from_return_msg", false]], "from_return_msg() (arkouda.series.series method)": [[49, "arkouda.series.Series.from_return_msg", false]], "from_return_msg() (arkouda.strings static method)": [[24, "arkouda.Strings.from_return_msg", false], [24, "id517", false], [24, "id593", false], [24, "id669", false], [24, "id745", false]], "from_return_msg() (arkouda.strings.strings static method)": [[53, "arkouda.strings.Strings.from_return_msg", false]], "from_series() (in module arkouda)": [[24, "arkouda.from_series", false], [24, "id875", false]], "from_series() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.from_series", false]], "fromhex() (arkouda.akfloat64 method)": [[24, "arkouda.akfloat64.fromhex", false], [24, "id823", false]], "fromhex() (arkouda.double method)": [[24, "arkouda.double.fromhex", false]], "fromhex() (arkouda.dtypes.float64 method)": [[21, "arkouda.dtypes.float64.fromhex", false]], "fromhex() (arkouda.float64 method)": [[24, "arkouda.float64.fromhex", false]], "fromhex() (arkouda.float_ method)": [[24, "arkouda.float_.fromhex", false]], "fromhex() (arkouda.numpy.double method)": [[35, "arkouda.numpy.double.fromhex", false]], "fromhex() (arkouda.numpy.dtypes.float64 method)": [[34, "arkouda.numpy.dtypes.float64.fromhex", false]], "fromhex() (arkouda.numpy.float64 method)": [[35, "arkouda.numpy.float64.fromhex", false]], "fromhex() (arkouda.numpy.float_ method)": [[35, "arkouda.numpy.float_.fromhex", false]], "fromkeys() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.fromkeys", false]], "fromkeys() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.fromkeys", false]], "fromkeys() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.fromkeys", false]], "fromkeys() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.fromkeys", false]], "fromkeys() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.fromkeys", false]], "fromkeys() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.fromkeys", false]], "fromkeys() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.fromkeys", false]], "fromkeys() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.fromkeys", false]], "fromkeys() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.fromkeys", false]], "fromkeys() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.fromkeys", false]], "fromkeys() (arkouda.sctypes method)": [[24, "arkouda.sctypes.fromkeys", false]], "fromkeys() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.fromkeys", false]], "full() (in module arkouda)": [[24, "arkouda.full", false], [24, "id876", false]], "full() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.full", false]], "full() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.full", false]], "full_like() (in module arkouda)": [[24, "arkouda.full_like", false]], "full_like() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.full_like", false]], "full_like() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.full_like", false]], "full_match_bool (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.full_match_bool", false]], "full_match_ind (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.full_match_ind", false]], "fullmatch() (arkouda.strings method)": [[24, "arkouda.Strings.fullmatch", false], [24, "id518", false], [24, "id594", false], [24, "id670", false], [24, "id746", false], [100, "arkouda.Strings.fullmatch", false]], "fullmatch() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.fullmatch", false]], "gb (arkouda.dataframe.dataframegroupby attribute)": [[20, "arkouda.dataframe.DataFrameGroupBy.gb", false]], "gb (arkouda.dataframe.diffaggregate attribute)": [[20, "arkouda.dataframe.DiffAggregate.gb", false]], "gb (arkouda.dataframegroupby attribute)": [[24, "arkouda.DataFrameGroupBy.gb", false]], "gb (arkouda.diffaggregate attribute)": [[24, "arkouda.DiffAggregate.gb", false]], "gb_key_names (arkouda.dataframe.dataframegroupby attribute)": [[20, "arkouda.dataframe.DataFrameGroupBy.gb_key_names", false]], "gb_key_names (arkouda.dataframegroupby attribute)": [[24, "arkouda.DataFrameGroupBy.gb_key_names", false]], "gen_ranges() (in module arkouda)": [[24, "arkouda.gen_ranges", false], [24, "id877", false]], "gen_ranges() (in module arkouda.join)": [[29, "arkouda.join.gen_ranges", false]], "generate_history() (in module arkouda.client)": [[18, "arkouda.client.generate_history", false]], "generate_token() (in module arkouda.security)": [[47, "arkouda.security.generate_token", false]], "generate_username_token_json() (in module arkouda.security)": [[47, "arkouda.security.generate_username_token_json", false]], "generator (class in arkouda.numpy.random)": [[36, "arkouda.numpy.random.Generator", false]], "generator (class in arkouda.random)": [[42, "arkouda.random.Generator", false], [95, "arkouda.random.Generator", false]], "generic_concat() (in module arkouda)": [[24, "arkouda.generic_concat", false]], "generic_concat() (in module arkouda.util)": [[56, "arkouda.util.generic_concat", false]], "generic_moment() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.generic_moment", false]], "get() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.get", false]], "get() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.get", false]], "get() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.get", false]], "get() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.get", false]], "get() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.get", false]], "get() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.get", false]], "get() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.get", false]], "get() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.get", false]], "get() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.get", false]], "get() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.get", false]], "get() (arkouda.sctypes method)": [[24, "arkouda.sctypes.get", false]], "get() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.get", false]], "get_arkouda_client_directory() (in module arkouda.security)": [[47, "arkouda.security.get_arkouda_client_directory", false]], "get_byteorder() (in module arkouda)": [[24, "arkouda.get_byteorder", false]], "get_byteorder() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.get_byteorder", false]], "get_byteorder() (in module arkouda.numpy)": [[35, "arkouda.numpy.get_byteorder", false]], "get_byteorder() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.get_byteorder", false]], "get_bytes() (arkouda.strings method)": [[24, "arkouda.Strings.get_bytes", false], [24, "id519", false], [24, "id595", false], [24, "id671", false], [24, "id747", false]], "get_bytes() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_bytes", false]], "get_callback() (in module arkouda)": [[24, "arkouda.get_callback", false]], "get_callback() (in module arkouda.util)": [[56, "arkouda.util.get_callback", false]], "get_columns() (in module arkouda)": [[24, "arkouda.get_columns", false]], "get_columns() (in module arkouda.io)": [[27, "arkouda.io.get_columns", false]], "get_config() (in module arkouda.client)": [[18, "arkouda.client.get_config", false]], "get_datasets() (in module arkouda)": [[24, "arkouda.get_datasets", false], [84, "arkouda.get_datasets", false]], "get_datasets() (in module arkouda.io)": [[27, "arkouda.io.get_datasets", false]], "get_directory() (in module arkouda.io_util)": [[28, "arkouda.io_util.get_directory", false]], "get_filetype() (in module arkouda)": [[24, "arkouda.get_filetype", false]], "get_filetype() (in module arkouda.io)": [[27, "arkouda.io.get_filetype", false]], "get_home_directory() (in module arkouda.security)": [[47, "arkouda.security.get_home_directory", false]], "get_jth() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_jth", false]], "get_jth() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_jth", false]], "get_jth() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_jth", false]], "get_length_n() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_length_n", false]], "get_length_n() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_length_n", false]], "get_length_n() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_length_n", false]], "get_lengths() (arkouda.strings method)": [[24, "arkouda.Strings.get_lengths", false], [24, "id520", false], [24, "id596", false], [24, "id672", false], [24, "id748", false]], "get_lengths() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_lengths", false]], "get_level_values() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.get_level_values", false]], "get_level_values() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.get_level_values", false]], "get_match() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.get_match", false]], "get_max_array_rank() (in module arkouda.client)": [[18, "arkouda.client.get_max_array_rank", false]], "get_mem_avail() (in module arkouda.client)": [[18, "arkouda.client.get_mem_avail", false]], "get_mem_status() (in module arkouda.client)": [[18, "arkouda.client.get_mem_status", false]], "get_mem_used() (in module arkouda.client)": [[18, "arkouda.client.get_mem_used", false]], "get_ngrams() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_ngrams", false]], "get_ngrams() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_ngrams", false]], "get_ngrams() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_ngrams", false]], "get_null_indices() (in module arkouda)": [[24, "arkouda.get_null_indices", false]], "get_null_indices() (in module arkouda.io)": [[27, "arkouda.io.get_null_indices", false]], "get_offsets() (arkouda.strings method)": [[24, "arkouda.Strings.get_offsets", false], [24, "id521", false], [24, "id597", false], [24, "id673", false], [24, "id749", false]], "get_offsets() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_offsets", false]], "get_prefixes() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_prefixes", false]], "get_prefixes() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_prefixes", false]], "get_prefixes() (arkouda.strings method)": [[24, "arkouda.Strings.get_prefixes", false], [24, "id522", false], [24, "id598", false], [24, "id674", false], [24, "id750", false]], "get_prefixes() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_prefixes", false]], "get_prefixes() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_prefixes", false]], "get_server_byteorder() (in module arkouda)": [[24, "arkouda.get_server_byteorder", false]], "get_server_byteorder() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.get_server_byteorder", false]], "get_server_byteorder() (in module arkouda.numpy)": [[35, "arkouda.numpy.get_server_byteorder", false]], "get_server_byteorder() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.get_server_byteorder", false]], "get_server_commands() (in module arkouda.client)": [[18, "arkouda.client.get_server_commands", false]], "get_suffixes() (arkouda.segarray method)": [[24, "arkouda.SegArray.get_suffixes", false]], "get_suffixes() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.get_suffixes", false]], "get_suffixes() (arkouda.strings method)": [[24, "arkouda.Strings.get_suffixes", false], [24, "id523", false], [24, "id599", false], [24, "id675", false], [24, "id751", false]], "get_suffixes() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.get_suffixes", false]], "get_suffixes() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_suffixes", false]], "get_username() (in module arkouda.security)": [[47, "arkouda.security.get_username", false]], "getarkoudalogger() (in module arkouda)": [[24, "arkouda.getArkoudaLogger", false]], "getfield() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.getfield", false]], "getfield() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.getfield", false]], "getfield() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.getfield", false]], "getfield() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.getfield", false]], "getfield() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.getfield", false]], "getfield() (arkouda.str_ method)": [[24, "arkouda.str_.getfield", false], [24, "id1315", false]], "getmandatoryrelease() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.getMandatoryRelease", false]], "getmandatoryrelease() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.getMandatoryRelease", false]], "getoptionalrelease() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.getOptionalRelease", false]], "getoptionalrelease() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.getOptionalRelease", false]], "greater() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.greater", false]], "greater_equal() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.greater_equal", false]], "group() (arkouda.categorical method)": [[24, "arkouda.Categorical.group", false], [24, "id27", false], [24, "id85", false]], "group() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.group", false]], "group() (arkouda.match.match method)": [[31, "arkouda.match.Match.group", false], [100, "arkouda.match.Match.group", false]], "group() (arkouda.strings method)": [[24, "arkouda.Strings.group", false], [24, "id524", false], [24, "id600", false], [24, "id676", false], [24, "id752", false]], "group() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.group", false]], "groupby (class in arkouda)": [[24, "arkouda.GroupBy", false], [24, "id245", false], [24, "id292", false], [24, "id339", false], [24, "id386", false], [24, "id433", false], [91, "arkouda.GroupBy", false]], "groupby (class in arkouda.groupbyclass)": [[22, "arkouda.groupbyclass.GroupBy", false]], "groupby() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.GroupBy", false], [24, "id123", false], [24, "arkouda.DataFrame.groupby", false], [24, "id144", false]], "groupby() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.GroupBy", false], [20, "arkouda.dataframe.DataFrame.groupby", false]], "groupby() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.groupby", false]], "groupby_reduction_types (class in arkouda)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES", false]], "groupby_reduction_types (class in arkouda.groupbyclass)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES", false]], "grouping (arkouda.segarray property)": [[24, "arkouda.SegArray.grouping", false]], "grouping (arkouda.segarray.segarray property)": [[48, "arkouda.segarray.SegArray.grouping", false]], "half (class in arkouda)": [[24, "arkouda.half", false]], "half (class in arkouda.numpy)": [[35, "arkouda.numpy.half", false]], "handled_functions (in module arkouda.array_api.array_object)": [[4, "arkouda.array_api.array_object.HANDLED_FUNCTIONS", false]], "has_repeat_labels() (arkouda.series method)": [[24, "arkouda.Series.has_repeat_labels", false]], "has_repeat_labels() (arkouda.series.series method)": [[49, "arkouda.series.Series.has_repeat_labels", false]], "hash() (arkouda.categorical method)": [[24, "arkouda.Categorical.hash", false], [24, "id28", false], [24, "id86", false]], "hash() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.hash", false]], "hash() (arkouda.segarray method)": [[24, "arkouda.SegArray.hash", false]], "hash() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.hash", false]], "hash() (arkouda.strings method)": [[24, "arkouda.Strings.hash", false], [24, "id525", false], [24, "id601", false], [24, "id677", false], [24, "id753", false]], "hash() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.hash", false]], "hash() (in module arkouda)": [[24, "arkouda.hash", false]], "hash() (in module arkouda.numpy)": [[35, "arkouda.numpy.hash", false]], "hasnans() (arkouda.series method)": [[24, "arkouda.Series.hasnans", false]], "hasnans() (arkouda.series.series method)": [[49, "arkouda.series.Series.hasnans", false]], "head() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.head", false], [24, "id145", false]], "head() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.head", false]], "head() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.head", false]], "head() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.head", false]], "head() (arkouda.groupby method)": [[24, "arkouda.GroupBy.head", false], [24, "id269", false], [24, "id316", false], [24, "id363", false], [24, "id410", false], [24, "id457", false], [91, "arkouda.GroupBy.head", false]], "head() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.head", false]], "head() (arkouda.series method)": [[24, "arkouda.Series.head", false]], "head() (arkouda.series.series method)": [[49, "arkouda.series.Series.head", false]], "head() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.head", false]], "head() (in module arkouda.series)": [[97, "arkouda.Series.head", false]], "hex() (arkouda.akfloat64 method)": [[24, "arkouda.akfloat64.hex", false], [24, "id824", false]], "hex() (arkouda.double method)": [[24, "arkouda.double.hex", false]], "hex() (arkouda.dtypes.float64 method)": [[21, "arkouda.dtypes.float64.hex", false]], "hex() (arkouda.float64 method)": [[24, "arkouda.float64.hex", false]], "hex() (arkouda.float_ method)": [[24, "arkouda.float_.hex", false]], "hex() (arkouda.numpy.double method)": [[35, "arkouda.numpy.double.hex", false]], "hex() (arkouda.numpy.dtypes.float64 method)": [[34, "arkouda.numpy.dtypes.float64.hex", false]], "hex() (arkouda.numpy.float64 method)": [[35, "arkouda.numpy.float64.hex", false]], "hex() (arkouda.numpy.float_ method)": [[35, "arkouda.numpy.float_.hex", false]], "hist_all() (in module arkouda)": [[24, "arkouda.hist_all", false]], "hist_all() (in module arkouda.plotting)": [[41, "arkouda.plotting.hist_all", false]], "histogram() (in module arkouda)": [[24, "arkouda.histogram", false], [24, "id878", false], [92, "arkouda.histogram", false]], "histogram() (in module arkouda.numpy)": [[35, "arkouda.numpy.histogram", false]], "histogram2d() (in module arkouda)": [[24, "arkouda.histogram2d", false]], "histogram2d() (in module arkouda.numpy)": [[35, "arkouda.numpy.histogram2d", false]], "histogramdd() (in module arkouda)": [[24, "arkouda.histogramdd", false]], "histogramdd() (in module arkouda.numpy)": [[35, "arkouda.numpy.histogramdd", false]], "historyretriever (class in arkouda.history)": [[23, "arkouda.history.HistoryRetriever", false]], "hour (arkouda.datetime property)": [[24, "arkouda.Datetime.hour", false], [24, "id185", false], [24, "id218", false]], "hour (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.hour", false]], "iat (arkouda.series property)": [[24, "arkouda.Series.iat", false]], "iat (arkouda.series.series property)": [[49, "arkouda.series.Series.iat", false]], "identity() (in module arkouda.util)": [[56, "arkouda.util.identity", false]], "iexp (arkouda.finfo attribute)": [[24, "arkouda.finfo.iexp", false]], "iexp (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.iexp", false]], "ignore() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.ignore", false]], "ignore() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.ignore", false]], "iinfo (class in arkouda)": [[24, "arkouda.iinfo", false]], "iinfo (class in arkouda.numpy)": [[35, "arkouda.numpy.iinfo", false]], "iinfo() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.iinfo", false]], "iinfo_object (class in arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.iinfo_object", false]], "iloc (arkouda.series property)": [[24, "arkouda.Series.iloc", false]], "iloc (arkouda.series.series property)": [[49, "arkouda.series.Series.iloc", false]], "imag() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.imag", false]], "imag() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.imag", false]], "imag() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.imag", false]], "imag() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.imag", false]], "imag() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.imag", false]], "imag() (arkouda.str_ method)": [[24, "arkouda.str_.imag", false], [24, "id1316", false]], "imag() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.imag", false]], "implements_numpy() (in module arkouda.array_api.array_object)": [[4, "arkouda.array_api.array_object.implements_numpy", false]], "import_data() (in module arkouda)": [[24, "arkouda.import_data", false], [84, "arkouda.import_data", false]], "import_data() (in module arkouda.io)": [[27, "arkouda.io.import_data", false]], "in1d() (arkouda.categorical method)": [[24, "arkouda.Categorical.in1d", false], [24, "id29", false], [24, "id87", false]], "in1d() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.in1d", false]], "in1d() (in module arkouda)": [[24, "arkouda.in1d", false], [24, "id881", false], [24, "id882", false], [98, "arkouda.in1d", false]], "in1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.in1d", false]], "in1d_intervals() (in module arkouda)": [[24, "arkouda.in1d_intervals", false]], "in1d_intervals() (in module arkouda.alignment)": [[3, "arkouda.alignment.in1d_intervals", false]], "index (arkouda.dataframe property)": [[24, "arkouda.DataFrame.index", false], [24, "id146", false]], "index (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.index", false]], "index (arkouda.index property)": [[24, "arkouda.Index.index", false]], "index (arkouda.index.index property)": [[25, "arkouda.index.Index.index", false]], "index (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.index", false]], "index (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.index", false]], "index (class in arkouda)": [[24, "arkouda.Index", false], [85, "arkouda.Index", false]], "index (class in arkouda.index)": [[25, "arkouda.index.Index", false]], "index() (arkouda.dtypes.arkouda_supported_floats method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_FLOATS.index", false]], "index() (arkouda.dtypes.arkouda_supported_ints method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_INTS.index", false]], "index() (arkouda.dtypes.arkouda_supported_numbers method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_NUMBERS.index", false]], "index() (arkouda.numpy.dtypes.arkouda_supported_floats method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_FLOATS.index", false]], "index() (arkouda.numpy.dtypes.arkouda_supported_ints method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_INTS.index", false]], "index() (arkouda.numpy.dtypes.arkouda_supported_numbers method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_NUMBERS.index", false]], "index() (arkouda.numpy.scalartype method)": [[35, "arkouda.numpy.ScalarType.index", false]], "index() (arkouda.scalartype method)": [[24, "arkouda.ScalarType.index", false]], "indexof1d() (in module arkouda)": [[24, "arkouda.indexof1d", false]], "indexof1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.indexof1d", false]], "indices (arkouda.array_api.set_functions.uniqueallresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueAllResult.indices", false]], "indices (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.indices", false]], "inexact (class in arkouda)": [[24, "arkouda.inexact", false]], "inexact (class in arkouda.numpy)": [[35, "arkouda.numpy.inexact", false]], "inf (in module arkouda)": [[24, "arkouda.Inf", false], [24, "arkouda.inf", false]], "inf (in module arkouda.numpy)": [[35, "arkouda.numpy.Inf", false], [35, "arkouda.numpy.inf", false]], "inferred_type (arkouda.categorical property)": [[24, "arkouda.Categorical.inferred_type", false], [24, "id30", false], [24, "id88", false]], "inferred_type (arkouda.categorical.categorical property)": [[17, "arkouda.categorical.Categorical.inferred_type", false]], "inferred_type (arkouda.index property)": [[24, "arkouda.Index.inferred_type", false]], "inferred_type (arkouda.index.index property)": [[25, "arkouda.index.Index.inferred_type", false]], "inferred_type (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.inferred_type", false]], "inferred_type (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.inferred_type", false]], "inferred_type (arkouda.pdarray property)": [[24, "arkouda.pdarray.inferred_type", false], [24, "id1019", false], [24, "id1090", false], [24, "id1161", false], [24, "id1232", false], [24, "id948", false]], "inferred_type (arkouda.pdarrayclass.pdarray property)": [[37, "arkouda.pdarrayclass.pdarray.inferred_type", false]], "inferred_type (arkouda.strings property)": [[24, "arkouda.Strings.inferred_type", false], [24, "id526", false], [24, "id602", false], [24, "id678", false], [24, "id754", false]], "inferred_type (arkouda.strings.strings property)": [[53, "arkouda.strings.Strings.inferred_type", false]], "infinity (in module arkouda)": [[24, "arkouda.Infinity", false]], "infinity (in module arkouda.numpy)": [[35, "arkouda.numpy.Infinity", false]], "info (arkouda.dataframe property)": [[24, "arkouda.DataFrame.info", false], [24, "id147", false]], "info (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.info", false]], "info (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.INFO", false]], "info (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.INFO", false]], "info() (arkouda.categorical method)": [[24, "arkouda.Categorical.info", false], [24, "id31", false], [24, "id89", false]], "info() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.info", false]], "info() (arkouda.pdarray method)": [[24, "arkouda.pdarray.info", false], [24, "id1020", false], [24, "id1091", false], [24, "id1162", false], [24, "id1233", false], [24, "id949", false]], "info() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.info", false]], "info() (arkouda.strings method)": [[24, "arkouda.Strings.info", false], [24, "id527", false], [24, "id603", false], [24, "id679", false], [24, "id755", false]], "info() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.info", false]], "information() (in module arkouda)": [[24, "arkouda.information", false]], "information() (in module arkouda.infoclass)": [[26, "arkouda.infoclass.information", false]], "infty (in module arkouda)": [[24, "arkouda.infty", false]], "infty (in module arkouda.numpy)": [[35, "arkouda.numpy.infty", false]], "int() (arkouda.dtype method)": [[24, "arkouda.DType.INT", false]], "int() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT", false]], "int() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT", false]], "int() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT", false]], "int16 (class in arkouda)": [[24, "arkouda.int16", false]], "int16 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int16", false]], "int16 (class in arkouda.numpy)": [[35, "arkouda.numpy.int16", false]], "int16 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int16", false]], "int16() (arkouda.dtype method)": [[24, "arkouda.DType.INT16", false]], "int16() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT16", false]], "int16() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT16", false]], "int16() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT16", false]], "int16dtype (class in arkouda)": [[24, "arkouda.Int16DType", false]], "int16dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Int16DType", false]], "int32 (class in arkouda)": [[24, "arkouda.int32", false]], "int32 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int32", false]], "int32 (class in arkouda.numpy)": [[35, "arkouda.numpy.int32", false]], "int32 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int32", false]], "int32() (arkouda.dtype method)": [[24, "arkouda.DType.INT32", false]], "int32() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT32", false]], "int32() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT32", false]], "int32() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT32", false]], "int32dtype (class in arkouda)": [[24, "arkouda.Int32DType", false]], "int32dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Int32DType", false]], "int64 (class in arkouda)": [[24, "arkouda.int64", false], [24, "id883", false]], "int64 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int64", false]], "int64 (class in arkouda.numpy)": [[35, "arkouda.numpy.int64", false]], "int64 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int64", false]], "int64() (arkouda.dtype method)": [[24, "arkouda.DType.INT64", false]], "int64() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT64", false]], "int64() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT64", false]], "int64() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT64", false]], "int64dtype (class in arkouda)": [[24, "arkouda.Int64DType", false]], "int64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Int64DType", false]], "int8 (class in arkouda)": [[24, "arkouda.int8", false]], "int8 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int8", false]], "int8 (class in arkouda.numpy)": [[35, "arkouda.numpy.int8", false]], "int8 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int8", false]], "int8() (arkouda.dtype method)": [[24, "arkouda.DType.INT8", false]], "int8() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.INT8", false]], "int8() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.INT8", false]], "int8() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.INT8", false]], "int8dtype (class in arkouda)": [[24, "arkouda.Int8DType", false]], "int8dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.Int8DType", false]], "int_ (class in arkouda)": [[24, "arkouda.int_", false]], "int_ (class in arkouda.numpy)": [[35, "arkouda.numpy.int_", false]], "int_scalars (class in arkouda)": [[24, "arkouda.int_scalars", false], [24, "id903", false], [24, "id904", false]], "int_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.int_scalars", false]], "int_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.int_scalars", false]], "int_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.int_scalars", false]], "intc (class in arkouda)": [[24, "arkouda.intc", false]], "intc (class in arkouda.numpy)": [[35, "arkouda.numpy.intc", false]], "intdtype (class in arkouda)": [[24, "arkouda.IntDType", false]], "intdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.IntDType", false]], "integer (class in arkouda)": [[24, "arkouda.integer", false]], "integer (class in arkouda.numpy)": [[35, "arkouda.numpy.integer", false]], "integers() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.integers", false]], "integers() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.integers", false]], "integers() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.integers", false]], "intersect() (arkouda.segarray method)": [[24, "arkouda.SegArray.intersect", false]], "intersect() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.intersect", false]], "intersect() (in module arkouda)": [[24, "arkouda.intersect", false]], "intersect() (in module arkouda.dataframe)": [[20, "arkouda.dataframe.intersect", false]], "intersect() (in module arkouda.segarray)": [[96, "arkouda.SegArray.intersect", false]], "intersect1d() (in module arkouda)": [[24, "arkouda.intersect1d", false], [98, "arkouda.intersect1d", false]], "intersect1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.intersect1d", false]], "intersection() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.intersection", false]], "intersection() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.intersection", false]], "intersection() (arkouda.dtypes method)": [[24, "arkouda.DTypes.intersection", false]], "intersection() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.intersection", false]], "intersection() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.intersection", false]], "intersection() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.intersection", false]], "intersection() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.intersection", false]], "intersection() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.intersection", false]], "intersection() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.intersection", false]], "intersection() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.intersection", false]], "intersection() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.intersection", false]], "intersection() (arkouda.inttypes method)": [[24, "arkouda.intTypes.intersection", false], [24, "id888", false], [24, "id897", false]], "intersection() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.intersection", false]], "intersection() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.intersection", false]], "intersection() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.intersection", false]], "intersection() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.intersection", false]], "intersection() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.intersection", false]], "intersection() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.intersection", false]], "intersection() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.intersection", false]], "intersection() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.intersection", false]], "intersection() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.intersection", false]], "intersection() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.intersection", false]], "intersection() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.intersection", false]], "intersection() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.intersection", false]], "intersection() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.intersection", false]], "intersection() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.intersection", false]], "interval_lookup() (in module arkouda)": [[24, "arkouda.interval_lookup", false]], "interval_lookup() (in module arkouda.alignment)": [[3, "arkouda.alignment.interval_lookup", false]], "intp (class in arkouda)": [[24, "arkouda.intp", false]], "intp (class in arkouda.numpy)": [[35, "arkouda.numpy.intp", false]], "inttypes (class in arkouda)": [[24, "arkouda.intTypes", false], [24, "id885", false], [24, "id894", false]], "inttypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.intTypes", false]], "inttypes (class in arkouda.numpy)": [[35, "arkouda.numpy.intTypes", false]], "inttypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.intTypes", false]], "intx() (in module arkouda)": [[24, "arkouda.intx", false]], "intx() (in module arkouda.dataframe)": [[20, "arkouda.dataframe.intx", false]], "inverse_indices (arkouda.array_api.set_functions.uniqueallresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueAllResult.inverse_indices", false]], "inverse_indices (arkouda.array_api.set_functions.uniqueinverseresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueInverseResult.inverse_indices", false]], "invert_permutation() (in module arkouda)": [[24, "arkouda.invert_permutation", false]], "invert_permutation() (in module arkouda.dataframe)": [[20, "arkouda.dataframe.invert_permutation", false]], "invert_permutation() (in module arkouda.util)": [[56, "arkouda.util.invert_permutation", false]], "ip_address() (in module arkouda)": [[24, "arkouda.ip_address", false]], "ip_address() (in module arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.ip_address", false]], "ipv4 (class in arkouda)": [[24, "arkouda.IPv4", false]], "ipv4 (class in arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.IPv4", false]], "is_cosorted() (in module arkouda)": [[24, "arkouda.is_cosorted", false]], "is_cosorted() (in module arkouda.alignment)": [[3, "arkouda.alignment.is_cosorted", false]], "is_float() (in module arkouda.util)": [[56, "arkouda.util.is_float", false]], "is_int() (in module arkouda.util)": [[56, "arkouda.util.is_int", false]], "is_integer() (arkouda.akfloat64 method)": [[24, "arkouda.akfloat64.is_integer", false], [24, "id825", false]], "is_integer() (arkouda.double method)": [[24, "arkouda.double.is_integer", false]], "is_integer() (arkouda.dtypes.float16 method)": [[21, "arkouda.dtypes.float16.is_integer", false]], "is_integer() (arkouda.dtypes.float32 method)": [[21, "arkouda.dtypes.float32.is_integer", false]], "is_integer() (arkouda.dtypes.float64 method)": [[21, "arkouda.dtypes.float64.is_integer", false]], "is_integer() (arkouda.float16 method)": [[24, "arkouda.float16.is_integer", false]], "is_integer() (arkouda.float32 method)": [[24, "arkouda.float32.is_integer", false]], "is_integer() (arkouda.float64 method)": [[24, "arkouda.float64.is_integer", false]], "is_integer() (arkouda.float_ method)": [[24, "arkouda.float_.is_integer", false]], "is_integer() (arkouda.half method)": [[24, "arkouda.half.is_integer", false]], "is_integer() (arkouda.integer method)": [[24, "arkouda.integer.is_integer", false]], "is_integer() (arkouda.longdouble method)": [[24, "arkouda.longdouble.is_integer", false]], "is_integer() (arkouda.longfloat method)": [[24, "arkouda.longfloat.is_integer", false]], "is_integer() (arkouda.numpy.double method)": [[35, "arkouda.numpy.double.is_integer", false]], "is_integer() (arkouda.numpy.dtypes.float16 method)": [[34, "arkouda.numpy.dtypes.float16.is_integer", false]], "is_integer() (arkouda.numpy.dtypes.float32 method)": [[34, "arkouda.numpy.dtypes.float32.is_integer", false]], "is_integer() (arkouda.numpy.dtypes.float64 method)": [[34, "arkouda.numpy.dtypes.float64.is_integer", false]], "is_integer() (arkouda.numpy.float16 method)": [[35, "arkouda.numpy.float16.is_integer", false]], "is_integer() (arkouda.numpy.float32 method)": [[35, "arkouda.numpy.float32.is_integer", false]], "is_integer() (arkouda.numpy.float64 method)": [[35, "arkouda.numpy.float64.is_integer", false]], "is_integer() (arkouda.numpy.float_ method)": [[35, "arkouda.numpy.float_.is_integer", false]], "is_integer() (arkouda.numpy.half method)": [[35, "arkouda.numpy.half.is_integer", false]], "is_integer() (arkouda.numpy.integer method)": [[35, "arkouda.numpy.integer.is_integer", false]], "is_integer() (arkouda.numpy.longdouble method)": [[35, "arkouda.numpy.longdouble.is_integer", false]], "is_integer() (arkouda.numpy.longfloat method)": [[35, "arkouda.numpy.longfloat.is_integer", false]], "is_integer() (arkouda.numpy.single method)": [[35, "arkouda.numpy.single.is_integer", false]], "is_integer() (arkouda.single method)": [[24, "arkouda.single.is_integer", false]], "is_ipv4() (in module arkouda)": [[24, "arkouda.is_ipv4", false]], "is_ipv4() (in module arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.is_ipv4", false]], "is_ipv6() (in module arkouda)": [[24, "arkouda.is_ipv6", false]], "is_ipv6() (in module arkouda.client_dtypes)": [[19, "arkouda.client_dtypes.is_ipv6", false]], "is_leap_year (arkouda.datetime property)": [[24, "arkouda.Datetime.is_leap_year", false], [24, "id186", false], [24, "id219", false]], "is_leap_year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.is_leap_year", false]], "is_numeric() (in module arkouda.util)": [[56, "arkouda.util.is_numeric", false]], "is_registered() (arkouda.categorical method)": [[24, "arkouda.Categorical.is_registered", false], [24, "id32", false], [24, "id90", false]], "is_registered() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.is_registered", false]], "is_registered() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.is_registered", false], [24, "id148", false]], "is_registered() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.is_registered", false]], "is_registered() (arkouda.datetime method)": [[24, "arkouda.Datetime.is_registered", false], [24, "id187", false], [24, "id220", false]], "is_registered() (arkouda.groupby method)": [[24, "arkouda.GroupBy.is_registered", false], [24, "id270", false], [24, "id317", false], [24, "id364", false], [24, "id411", false], [24, "id458", false], [91, "arkouda.GroupBy.is_registered", false]], "is_registered() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.is_registered", false]], "is_registered() (arkouda.index method)": [[24, "arkouda.Index.is_registered", false]], "is_registered() (arkouda.index.index method)": [[25, "arkouda.index.Index.is_registered", false]], "is_registered() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.is_registered", false]], "is_registered() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.is_registered", false]], "is_registered() (arkouda.pdarray method)": [[24, "arkouda.pdarray.is_registered", false], [24, "id1021", false], [24, "id1092", false], [24, "id1163", false], [24, "id1234", false], [24, "id950", false]], "is_registered() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.is_registered", false]], "is_registered() (arkouda.segarray method)": [[24, "arkouda.SegArray.is_registered", false]], "is_registered() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.is_registered", false]], "is_registered() (arkouda.series method)": [[24, "arkouda.Series.is_registered", false]], "is_registered() (arkouda.series.series method)": [[49, "arkouda.series.Series.is_registered", false]], "is_registered() (arkouda.strings method)": [[24, "arkouda.Strings.is_registered", false], [24, "id528", false], [24, "id604", false], [24, "id680", false], [24, "id756", false]], "is_registered() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.is_registered", false]], "is_registered() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.is_registered", false]], "is_registered() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.is_registered", false]], "is_registered() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.is_registered", false], [24, "id801", false]], "is_registered() (in module arkouda)": [[24, "arkouda.is_registered", false]], "is_registered() (in module arkouda.util)": [[56, "arkouda.util.is_registered", false]], "is_sorted() (arkouda.pdarray method)": [[24, "arkouda.pdarray.is_sorted", false], [24, "id1022", false], [24, "id1093", false], [24, "id1164", false], [24, "id1235", false], [24, "id951", false], [92, "arkouda.pdarray.is_sorted", false]], "is_sorted() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.is_sorted", false]], "is_sorted() (in module arkouda)": [[24, "arkouda.is_sorted", false], [24, "id908", false], [87, "arkouda.is_sorted", false]], "is_sorted() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.is_sorted", false]], "isalnum() (arkouda.strings method)": [[24, "arkouda.Strings.isalnum", false], [24, "id529", false], [24, "id605", false], [24, "id681", false], [24, "id757", false]], "isalnum() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isalnum", false]], "isalpha() (arkouda.strings method)": [[24, "arkouda.Strings.isalpha", false], [24, "id530", false], [24, "id606", false], [24, "id682", false], [24, "id758", false]], "isalpha() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isalpha", false]], "isdecimal() (arkouda.strings method)": [[24, "arkouda.Strings.isdecimal", false], [24, "id531", false], [24, "id607", false], [24, "id683", false], [24, "id759", false]], "isdecimal() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isdecimal", false]], "isdigit() (arkouda.strings method)": [[24, "arkouda.Strings.isdigit", false], [24, "id532", false], [24, "id608", false], [24, "id684", false], [24, "id760", false]], "isdigit() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isdigit", false]], "isdisjoint() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.isdisjoint", false]], "isdisjoint() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.isdisjoint", false]], "isdisjoint() (arkouda.dtypes method)": [[24, "arkouda.DTypes.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.isdisjoint", false]], "isdisjoint() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.isdisjoint", false]], "isdisjoint() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.isdisjoint", false]], "isdisjoint() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.isdisjoint", false]], "isdisjoint() (arkouda.inttypes method)": [[24, "arkouda.intTypes.isdisjoint", false], [24, "id889", false], [24, "id898", false]], "isdisjoint() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.isdisjoint", false]], "isdisjoint() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.isdisjoint", false]], "isdisjoint() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.isdisjoint", false]], "isdtype() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.isdtype", false]], "isempty() (arkouda.strings method)": [[24, "arkouda.Strings.isempty", false], [24, "id533", false], [24, "id609", false], [24, "id685", false], [24, "id761", false]], "isempty() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isempty", false]], "isfinite() (in module arkouda)": [[24, "arkouda.isfinite", false]], "isfinite() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.isfinite", false]], "isfinite() (in module arkouda.numpy)": [[35, "arkouda.numpy.isfinite", false]], "isin() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.isin", false], [24, "id149", false]], "isin() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.isin", false]], "isin() (arkouda.series method)": [[24, "arkouda.Series.isin", false]], "isin() (arkouda.series.series method)": [[49, "arkouda.series.Series.isin", false]], "isinf() (in module arkouda)": [[24, "arkouda.isinf", false]], "isinf() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.isinf", false]], "isinf() (in module arkouda.numpy)": [[35, "arkouda.numpy.isinf", false]], "islower() (arkouda.strings method)": [[24, "arkouda.Strings.islower", false], [24, "id534", false], [24, "id610", false], [24, "id686", false], [24, "id762", false]], "islower() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.islower", false]], "isna() (arkouda.categorical method)": [[24, "arkouda.Categorical.isna", false], [24, "id33", false], [24, "id91", false]], "isna() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.isna", false]], "isna() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.isna", false], [24, "id150", false]], "isna() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.isna", false]], "isna() (arkouda.series method)": [[24, "arkouda.Series.isna", false]], "isna() (arkouda.series.series method)": [[49, "arkouda.series.Series.isna", false]], "isnan() (in module arkouda)": [[24, "arkouda.isnan", false], [24, "id909", false]], "isnan() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.isnan", false]], "isnan() (in module arkouda.numpy)": [[35, "arkouda.numpy.isnan", false]], "isnull() (arkouda.series method)": [[24, "arkouda.Series.isnull", false]], "isnull() (arkouda.series.series method)": [[49, "arkouda.series.Series.isnull", false]], "isocalendar() (arkouda.datetime method)": [[24, "arkouda.Datetime.isocalendar", false], [24, "id188", false], [24, "id221", false]], "isocalendar() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.isocalendar", false]], "isscalar() (in module arkouda)": [[24, "arkouda.isscalar", false]], "isscalar() (in module arkouda.numpy)": [[35, "arkouda.numpy.isscalar", false]], "issctype() (in module arkouda)": [[24, "arkouda.issctype", false]], "issctype() (in module arkouda.numpy)": [[35, "arkouda.numpy.issctype", false]], "isspace() (arkouda.strings method)": [[24, "arkouda.Strings.isspace", false], [24, "id535", false], [24, "id611", false], [24, "id687", false], [24, "id763", false]], "isspace() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isspace", false]], "issubclass_() (in module arkouda)": [[24, "arkouda.issubclass_", false]], "issubclass_() (in module arkouda.numpy)": [[35, "arkouda.numpy.issubclass_", false]], "issubdtype() (in module arkouda)": [[24, "arkouda.issubdtype", false]], "issubdtype() (in module arkouda.numpy)": [[35, "arkouda.numpy.issubdtype", false]], "issubset() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.issubset", false]], "issubset() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.issubset", false]], "issubset() (arkouda.dtypes method)": [[24, "arkouda.DTypes.issubset", false]], "issubset() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.issubset", false]], "issubset() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.issubset", false]], "issubset() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.issubset", false]], "issubset() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.issubset", false]], "issubset() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.issubset", false]], "issubset() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.issubset", false]], "issubset() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.issubset", false]], "issubset() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.issubset", false]], "issubset() (arkouda.inttypes method)": [[24, "arkouda.intTypes.issubset", false], [24, "id890", false], [24, "id899", false]], "issubset() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.issubset", false]], "issubset() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.issubset", false]], "issubset() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.issubset", false]], "issubset() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.issubset", false]], "issubset() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.issubset", false]], "issubset() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.issubset", false]], "issubset() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.issubset", false]], "issubset() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.issubset", false]], "issubset() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.issubset", false]], "issubset() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.issubset", false]], "issubset() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.issubset", false]], "issubset() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.issubset", false]], "issubset() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.issubset", false]], "issubset() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.issubset", false]], "issuperset() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.issuperset", false]], "issuperset() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.issuperset", false]], "issuperset() (arkouda.dtypes method)": [[24, "arkouda.DTypes.issuperset", false]], "issuperset() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.issuperset", false]], "issuperset() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.issuperset", false]], "issuperset() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.issuperset", false]], "issuperset() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.issuperset", false]], "issuperset() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.issuperset", false]], "issuperset() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.issuperset", false]], "issuperset() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.issuperset", false]], "issuperset() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.issuperset", false]], "issuperset() (arkouda.inttypes method)": [[24, "arkouda.intTypes.issuperset", false], [24, "id891", false], [24, "id900", false]], "issuperset() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.issuperset", false]], "issuperset() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.issuperset", false]], "issuperset() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.issuperset", false]], "issuperset() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.issuperset", false]], "issuperset() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.issuperset", false]], "issuperset() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.issuperset", false]], "issuperset() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.issuperset", false]], "issuperset() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.issuperset", false]], "issuperset() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.issuperset", false]], "issupportedfloat() (in module arkouda)": [[24, "arkouda.isSupportedFloat", false]], "issupportedfloat() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.isSupportedFloat", false]], "issupportedfloat() (in module arkouda.numpy)": [[35, "arkouda.numpy.isSupportedFloat", false]], "issupportedfloat() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.isSupportedFloat", false]], "issupportedint() (in module arkouda)": [[24, "arkouda.isSupportedInt", false], [24, "id905", false], [24, "id906", false], [24, "id907", false]], "issupportedint() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.isSupportedInt", false]], "issupportedint() (in module arkouda.numpy)": [[35, "arkouda.numpy.isSupportedInt", false]], "issupportedint() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.isSupportedInt", false]], "issupportednumber() (in module arkouda)": [[24, "arkouda.isSupportedNumber", false]], "issupportednumber() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.isSupportedNumber", false]], "issupportednumber() (in module arkouda.numpy)": [[35, "arkouda.numpy.isSupportedNumber", false]], "issupportednumber() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.isSupportedNumber", false]], "istitle() (arkouda.strings method)": [[24, "arkouda.Strings.istitle", false], [24, "id536", false], [24, "id612", false], [24, "id688", false], [24, "id764", false]], "istitle() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.istitle", false]], "isupper() (arkouda.strings method)": [[24, "arkouda.Strings.isupper", false], [24, "id537", false], [24, "id613", false], [24, "id689", false], [24, "id765", false]], "isupper() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.isupper", false]], "item() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.item", false]], "item() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.item", false]], "item() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.item", false]], "item() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.item", false]], "item() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.item", false]], "item() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.item", false]], "item() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.item", false]], "item() (arkouda.str_ method)": [[24, "arkouda.str_.item", false], [24, "id1317", false]], "items() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.items", false]], "items() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.items", false]], "items() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.items", false]], "items() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.items", false]], "items() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.items", false]], "items() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.items", false]], "items() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.items", false]], "items() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.items", false]], "items() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.items", false]], "items() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.items", false]], "items() (arkouda.sctypes method)": [[24, "arkouda.sctypes.items", false]], "items() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.items", false]], "itemset() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.itemset", false]], "itemset() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.itemset", false]], "itemset() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.itemset", false]], "itemset() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.itemset", false]], "itemset() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.itemset", false]], "itemset() (arkouda.str_ method)": [[24, "arkouda.str_.itemset", false], [24, "id1318", false]], "itemsize (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.itemsize", false], [24, "id1023", false], [24, "id1069", false], [24, "id1094", false], [24, "id1140", false], [24, "id1165", false], [24, "id1211", false], [24, "id1236", false], [24, "id914", false], [24, "id927", false], [24, "id952", false], [24, "id998", false], [94, "arkouda.pdarray.itemsize", false]], "itemsize (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.itemsize", false], [37, "id1", false]], "itemsize (arkouda.sparray attribute)": [[24, "arkouda.sparray.itemsize", false], [24, "id1281", false]], "itemsize (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.itemsize", false], [51, "id1", false]], "itemsize() (arkouda.bigint method)": [[24, "arkouda.bigint.itemsize", false], [24, "id845", false]], "itemsize() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.itemsize", false]], "itemsize() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.itemsize", false]], "itemsize() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.itemsize", false]], "itemsize() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.itemsize", false]], "itemsize() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.itemsize", false]], "itemsize() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.itemsize", false]], "itemsize() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.itemsize", false]], "itemsize() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.itemsize", false]], "itemsize() (arkouda.str_ method)": [[24, "arkouda.str_.itemsize", false], [24, "id1319", false]], "join_on_eq_with_dt() (in module arkouda)": [[24, "arkouda.join_on_eq_with_dt", false]], "join_on_eq_with_dt() (in module arkouda.join)": [[29, "arkouda.join.join_on_eq_with_dt", false]], "keys() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.keys", false]], "keys() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.keys", false]], "keys() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.keys", false]], "keys() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.keys", false]], "keys() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.keys", false]], "keys() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.keys", false]], "keys() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.keys", false]], "keys() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.keys", false]], "keys() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.keys", false]], "keys() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.keys", false]], "keys() (arkouda.sctypes method)": [[24, "arkouda.sctypes.keys", false]], "keys() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.keys", false]], "layout (arkouda.sparray attribute)": [[24, "arkouda.sparray.layout", false], [24, "id1282", false]], "layout (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.layout", false], [51, "id2", false]], "left_align() (in module arkouda)": [[24, "arkouda.left_align", false]], "left_align() (in module arkouda.alignment)": [[3, "arkouda.alignment.left_align", false]], "len_suffix (in module arkouda)": [[24, "arkouda.LEN_SUFFIX", false]], "len_suffix (in module arkouda.segarray)": [[48, "arkouda.segarray.LEN_SUFFIX", false]], "lengths (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.lengths", false]], "less() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.less", false]], "less_equal() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.less_equal", false]], "levels (arkouda.index.multiindex attribute)": [[25, "arkouda.index.MultiIndex.levels", false]], "levels (arkouda.multiindex attribute)": [[24, "arkouda.MultiIndex.levels", false]], "linspace() (in module arkouda)": [[24, "arkouda.linspace", false], [89, "arkouda.linspace", false]], "linspace() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.linspace", false]], "linspace() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.linspace", false]], "list_registry() (in module arkouda)": [[24, "arkouda.list_registry", false]], "list_registry() (in module arkouda.infoclass)": [[26, "arkouda.infoclass.list_registry", false]], "list_symbol_table() (in module arkouda)": [[24, "arkouda.list_symbol_table", false]], "list_symbol_table() (in module arkouda.infoclass)": [[26, "arkouda.infoclass.list_symbol_table", false]], "load() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.load", false], [24, "id151", false]], "load() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.load", false]], "load() (arkouda.segarray class method)": [[24, "arkouda.SegArray.load", false]], "load() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.load", false]], "load() (in module arkouda)": [[24, "arkouda.load", false]], "load() (in module arkouda.io)": [[27, "arkouda.io.load", false]], "load_all() (in module arkouda)": [[24, "arkouda.load_all", false]], "load_all() (in module arkouda.io)": [[27, "arkouda.io.load_all", false]], "loc (arkouda.series property)": [[24, "arkouda.Series.loc", false]], "loc (arkouda.series.series property)": [[49, "arkouda.series.Series.loc", false]], "locate() (arkouda.series method)": [[24, "arkouda.Series.locate", false]], "locate() (arkouda.series.series method)": [[49, "arkouda.series.Series.locate", false]], "locate() (in module arkouda.series)": [[97, "arkouda.Series.locate", false], [97, "id0", false]], "locationsinfo (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.LocationsInfo", false]], "log() (in module arkouda)": [[24, "arkouda.log", false], [87, "arkouda.log", false]], "log() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.log", false]], "log() (in module arkouda.numpy)": [[35, "arkouda.numpy.log", false]], "log10() (in module arkouda)": [[24, "arkouda.log10", false]], "log10() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.log10", false]], "log10() (in module arkouda.numpy)": [[35, "arkouda.numpy.log10", false]], "log1p() (in module arkouda)": [[24, "arkouda.log1p", false]], "log1p() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.log1p", false]], "log1p() (in module arkouda.numpy)": [[35, "arkouda.numpy.log1p", false]], "log2() (in module arkouda)": [[24, "arkouda.log2", false]], "log2() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.log2", false]], "log2() (in module arkouda.numpy)": [[35, "arkouda.numpy.log2", false]], "logaddexp() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logaddexp", false]], "logger (arkouda.categorical attribute)": [[24, "arkouda.Categorical.logger", false], [24, "id34", false], [24, "id92", false]], "logger (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.logger", false]], "logger (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.logger", false], [24, "id252", false], [24, "id299", false], [24, "id346", false], [24, "id393", false], [24, "id440", false], [91, "arkouda.GroupBy.logger", false]], "logger (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.logger", false]], "logger (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.logger", false]], "logger (arkouda.segarray attribute)": [[24, "arkouda.SegArray.logger", false]], "logger (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.logger", false]], "logger (arkouda.strings attribute)": [[24, "arkouda.Strings.logger", false], [24, "id492", false], [24, "id500", false], [24, "id538", false], [24, "id576", false], [24, "id614", false], [24, "id652", false], [24, "id690", false], [24, "id728", false], [24, "id766", false]], "logger (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.logger", false], [53, "id2", false]], "logical_and() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logical_and", false]], "logical_not() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logical_not", false]], "logical_or() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logical_or", false]], "logical_xor() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.logical_xor", false]], "logistic() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.logistic", false]], "logistic() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.logistic", false]], "logistic() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.logistic", false]], "loglevel (class in arkouda)": [[24, "arkouda.LogLevel", false]], "loglevel (class in arkouda.logger)": [[30, "arkouda.logger.LogLevel", false]], "lognormal() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.lognormal", false]], "lognormal() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.lognormal", false]], "lognormal() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.lognormal", false]], "longdouble (class in arkouda)": [[24, "arkouda.longdouble", false]], "longdouble (class in arkouda.numpy)": [[35, "arkouda.numpy.longdouble", false]], "longdoubledtype (class in arkouda)": [[24, "arkouda.LongDoubleDType", false]], "longdoubledtype (class in arkouda.numpy)": [[35, "arkouda.numpy.LongDoubleDType", false]], "longdtype (class in arkouda)": [[24, "arkouda.LongDType", false]], "longdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.LongDType", false]], "longfloat (class in arkouda)": [[24, "arkouda.longfloat", false]], "longfloat (class in arkouda.numpy)": [[35, "arkouda.numpy.longfloat", false]], "longlong (class in arkouda)": [[24, "arkouda.longlong", false]], "longlong (class in arkouda.numpy)": [[35, "arkouda.numpy.longlong", false]], "longlongdtype (class in arkouda)": [[24, "arkouda.LongLongDType", false]], "longlongdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.LongLongDType", false]], "lookup() (arkouda.index method)": [[24, "arkouda.Index.lookup", false]], "lookup() (arkouda.index.index method)": [[25, "arkouda.index.Index.lookup", false]], "lookup() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.lookup", false]], "lookup() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.lookup", false]], "lookup() (in module arkouda)": [[24, "arkouda.lookup", false]], "lookup() (in module arkouda.alignment)": [[3, "arkouda.alignment.lookup", false]], "lookup() (in module arkouda.index)": [[85, "arkouda.Index.lookup", false]], "lookup() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.lookup", false]], "lower() (arkouda.strings method)": [[24, "arkouda.Strings.lower", false], [24, "id539", false], [24, "id615", false], [24, "id691", false], [24, "id767", false]], "lower() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.lower", false]], "ls() (in module arkouda)": [[24, "arkouda.ls", false]], "ls() (in module arkouda.io)": [[27, "arkouda.io.ls", false]], "ls_csv() (in module arkouda)": [[24, "arkouda.ls_csv", false]], "ls_csv() (in module arkouda.io)": [[27, "arkouda.io.ls_csv", false]], "lstick() (arkouda.strings method)": [[24, "arkouda.Strings.lstick", false], [24, "id540", false], [24, "id616", false], [24, "id692", false], [24, "id768", false], [100, "arkouda.Strings.lstick", false]], "lstick() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.lstick", false]], "machep (arkouda.finfo attribute)": [[24, "arkouda.finfo.machep", false]], "machep (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.machep", false]], "mandatory() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.mandatory", false]], "mandatory() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.mandatory", false]], "map() (arkouda.index method)": [[24, "arkouda.Index.map", false]], "map() (arkouda.index.index method)": [[25, "arkouda.index.Index.map", false]], "map() (arkouda.series method)": [[24, "arkouda.Series.map", false]], "map() (arkouda.series.series method)": [[49, "arkouda.series.Series.map", false]], "map() (in module arkouda.util)": [[56, "arkouda.util.map", false]], "match (class in arkouda.match)": [[31, "arkouda.match.Match", false]], "match() (arkouda.strings method)": [[24, "arkouda.Strings.match", false], [24, "id541", false], [24, "id617", false], [24, "id693", false], [24, "id769", false], [100, "arkouda.Strings.match", false]], "match() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.match", false]], "match_bool (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.match_bool", false]], "match_ind (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.match_ind", false]], "match_type() (arkouda.match.match method)": [[31, "arkouda.match.Match.match_type", false], [100, "arkouda.match.Match.match_type", false]], "matched() (arkouda.match.match method)": [[31, "arkouda.match.Match.matched", false], [100, "arkouda.match.Match.matched", false]], "matcher (class in arkouda.matcher)": [[32, "arkouda.matcher.Matcher", false]], "matmul() (in module arkouda)": [[24, "arkouda.matmul", false]], "matmul() (in module arkouda.array_api.linalg)": [[10, "arkouda.array_api.linalg.matmul", false]], "matmul() (in module arkouda.numpy)": [[35, "arkouda.numpy.matmul", false]], "matrix_transpose() (in module arkouda.array_api.linalg)": [[10, "arkouda.array_api.linalg.matrix_transpose", false]], "max (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.max", false]], "max (arkouda.array_api.data_type_functions.iinfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.iinfo_object.max", false]], "max (arkouda.finfo attribute)": [[24, "arkouda.finfo.max", false]], "max (arkouda.iinfo attribute)": [[24, "arkouda.iinfo.max", false]], "max (arkouda.iinfo property)": [[24, "id879", false]], "max (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.max", false]], "max (arkouda.numpy.iinfo attribute)": [[35, "arkouda.numpy.iinfo.max", false]], "max (arkouda.numpy.iinfo property)": [[35, "id12", false]], "max() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.max", false]], "max() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.max", false]], "max() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.max", false]], "max() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.max", false]], "max() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.max", false]], "max() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.max", false]], "max() (arkouda.groupby method)": [[24, "arkouda.GroupBy.max", false], [24, "id271", false], [24, "id318", false], [24, "id365", false], [24, "id412", false], [24, "id459", false], [91, "arkouda.GroupBy.max", false]], "max() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.max", false]], "max() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.max", false]], "max() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.max", false]], "max() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.max", false]], "max() (arkouda.pdarray method)": [[24, "arkouda.pdarray.max", false], [24, "id1024", false], [24, "id1095", false], [24, "id1166", false], [24, "id1237", false], [24, "id953", false], [92, "arkouda.pdarray.max", false]], "max() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.max", false]], "max() (arkouda.segarray method)": [[24, "arkouda.SegArray.max", false]], "max() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.max", false]], "max() (arkouda.series method)": [[24, "arkouda.Series.max", false]], "max() (arkouda.series.series method)": [[49, "arkouda.series.Series.max", false]], "max() (arkouda.str_ method)": [[24, "arkouda.str_.max", false], [24, "id1320", false]], "max() (in module arkouda)": [[24, "arkouda.max", false], [87, "arkouda.max", false]], "max() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.max", false]], "max() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.max", false]], "max_bits (arkouda.pdarray property)": [[24, "arkouda.pdarray.max_bits", false], [24, "id1025", false], [24, "id1096", false], [24, "id1167", false], [24, "id1238", false], [24, "id954", false]], "max_bits (arkouda.pdarrayclass.pdarray property)": [[37, "arkouda.pdarrayclass.pdarray.max_bits", false]], "max_list_size (arkouda.index attribute)": [[24, "arkouda.Index.max_list_size", false]], "max_list_size (arkouda.index.index attribute)": [[25, "arkouda.index.Index.max_list_size", false]], "maxexp (arkouda.finfo attribute)": [[24, "arkouda.finfo.maxexp", false]], "maxexp (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.maxexp", false]], "maximum_sctype() (in module arkouda)": [[24, "arkouda.maximum_sctype", false]], "maximum_sctype() (in module arkouda.numpy)": [[35, "arkouda.numpy.maximum_sctype", false]], "maxk() (arkouda.pdarray method)": [[24, "arkouda.pdarray.maxk", false], [24, "id1026", false], [24, "id1097", false], [24, "id1168", false], [24, "id1239", false], [24, "id955", false], [92, "arkouda.pdarray.maxk", false]], "maxk() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.maxk", false]], "maxk() (in module arkouda)": [[24, "arkouda.maxk", false], [87, "arkouda.maxk", false]], "maxk() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.maxk", false]], "mean() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.mean", false]], "mean() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.mean", false]], "mean() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.mean", false]], "mean() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.mean", false]], "mean() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.mean", false]], "mean() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.mean", false]], "mean() (arkouda.groupby method)": [[24, "arkouda.GroupBy.mean", false], [24, "id272", false], [24, "id319", false], [24, "id366", false], [24, "id413", false], [24, "id460", false], [91, "arkouda.GroupBy.mean", false]], "mean() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.mean", false]], "mean() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.mean", false]], "mean() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.mean", false]], "mean() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.mean", false]], "mean() (arkouda.pdarray method)": [[24, "arkouda.pdarray.mean", false], [24, "id1027", false], [24, "id1098", false], [24, "id1169", false], [24, "id1240", false], [24, "id956", false], [92, "arkouda.pdarray.mean", false]], "mean() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.mean", false]], "mean() (arkouda.segarray method)": [[24, "arkouda.SegArray.mean", false]], "mean() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.mean", false]], "mean() (arkouda.series method)": [[24, "arkouda.Series.mean", false]], "mean() (arkouda.series.series method)": [[49, "arkouda.series.Series.mean", false]], "mean() (arkouda.str_ method)": [[24, "arkouda.str_.mean", false], [24, "id1321", false]], "mean() (in module arkouda)": [[24, "arkouda.mean", false], [87, "arkouda.mean", false]], "mean() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.mean", false]], "mean() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.mean", false]], "mean_shim() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.mean_shim", false]], "median() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.median", false]], "median() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.median", false]], "median() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.median", false]], "median() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.median", false]], "median() (arkouda.groupby method)": [[24, "arkouda.GroupBy.median", false], [24, "id273", false], [24, "id320", false], [24, "id367", false], [24, "id414", false], [24, "id461", false], [91, "arkouda.GroupBy.median", false]], "median() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.median", false]], "median() (in module arkouda)": [[24, "arkouda.median", false]], "median() (in module arkouda.numpy)": [[35, "arkouda.numpy.median", false]], "memory_usage() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.memory_usage", false], [24, "id152", false]], "memory_usage() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.memory_usage", false]], "memory_usage() (arkouda.index method)": [[24, "arkouda.Index.memory_usage", false]], "memory_usage() (arkouda.index.index method)": [[25, "arkouda.index.Index.memory_usage", false]], "memory_usage() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.memory_usage", false]], "memory_usage() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.memory_usage", false]], "memory_usage() (arkouda.series method)": [[24, "arkouda.Series.memory_usage", false]], "memory_usage() (arkouda.series.series method)": [[49, "arkouda.series.Series.memory_usage", false]], "memory_usage_info() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.memory_usage_info", false], [24, "id153", false]], "memory_usage_info() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.memory_usage_info", false]], "merge() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.merge", false], [24, "id154", false]], "merge() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.merge", false]], "merge() (in module arkouda)": [[24, "arkouda.merge", false]], "merge() (in module arkouda.dataframe)": [[20, "arkouda.dataframe.merge", false]], "meshgrid() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.meshgrid", false]], "microsecond (arkouda.datetime property)": [[24, "arkouda.Datetime.microsecond", false], [24, "id189", false], [24, "id222", false]], "microsecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.microsecond", false]], "microseconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.microseconds", false]], "microseconds (arkouda.timedelta property)": [[24, "arkouda.Timedelta.microseconds", false], [24, "id802", false]], "millisecond (arkouda.datetime property)": [[24, "arkouda.Datetime.millisecond", false], [24, "id190", false], [24, "id223", false]], "millisecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.millisecond", false]], "min (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.min", false]], "min (arkouda.array_api.data_type_functions.iinfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.iinfo_object.min", false]], "min (arkouda.finfo attribute)": [[24, "arkouda.finfo.min", false]], "min (arkouda.iinfo attribute)": [[24, "arkouda.iinfo.min", false]], "min (arkouda.iinfo property)": [[24, "id880", false]], "min (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.min", false]], "min (arkouda.numpy.iinfo attribute)": [[35, "arkouda.numpy.iinfo.min", false]], "min (arkouda.numpy.iinfo property)": [[35, "id13", false]], "min() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.min", false]], "min() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.min", false]], "min() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.min", false]], "min() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.min", false]], "min() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.min", false]], "min() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.min", false]], "min() (arkouda.groupby method)": [[24, "arkouda.GroupBy.min", false], [24, "id274", false], [24, "id321", false], [24, "id368", false], [24, "id415", false], [24, "id462", false], [91, "arkouda.GroupBy.min", false]], "min() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.min", false]], "min() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.min", false]], "min() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.min", false]], "min() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.min", false]], "min() (arkouda.pdarray method)": [[24, "arkouda.pdarray.min", false], [24, "id1028", false], [24, "id1099", false], [24, "id1170", false], [24, "id1241", false], [24, "id957", false], [92, "arkouda.pdarray.min", false]], "min() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.min", false]], "min() (arkouda.segarray method)": [[24, "arkouda.SegArray.min", false]], "min() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.min", false]], "min() (arkouda.series method)": [[24, "arkouda.Series.min", false]], "min() (arkouda.series.series method)": [[49, "arkouda.series.Series.min", false]], "min() (arkouda.str_ method)": [[24, "arkouda.str_.min", false], [24, "id1322", false]], "min() (in module arkouda)": [[24, "arkouda.min", false], [87, "arkouda.min", false]], "min() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.min", false]], "min() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.min", false]], "minexp (arkouda.finfo attribute)": [[24, "arkouda.finfo.minexp", false]], "minexp (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.minexp", false]], "mink() (arkouda.pdarray method)": [[24, "arkouda.pdarray.mink", false], [24, "id1029", false], [24, "id1100", false], [24, "id1171", false], [24, "id1242", false], [24, "id958", false], [92, "arkouda.pdarray.mink", false]], "mink() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.mink", false]], "mink() (in module arkouda)": [[24, "arkouda.mink", false], [87, "arkouda.mink", false]], "mink() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.mink", false]], "minute (arkouda.datetime property)": [[24, "arkouda.Datetime.minute", false], [24, "id191", false], [24, "id224", false]], "minute (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.minute", false]], "mod() (in module arkouda)": [[24, "arkouda.mod", false]], "mod() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.mod", false]], "mode() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.mode", false]], "mode() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.mode", false]], "mode() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.mode", false]], "mode() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.mode", false]], "mode() (arkouda.groupby method)": [[24, "arkouda.GroupBy.mode", false], [24, "id275", false], [24, "id322", false], [24, "id369", false], [24, "id416", false], [24, "id463", false], [91, "arkouda.GroupBy.mode", false]], "mode() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.mode", false]], "module": [[2, "module-arkouda.accessor", false], [3, "module-arkouda.alignment", false], [4, "module-arkouda.array_api.array_object", false], [5, "module-arkouda.array_api.creation_functions", false], [6, "module-arkouda.array_api.data_type_functions", false], [7, "module-arkouda.array_api.elementwise_functions", false], [8, "module-arkouda.array_api", false], [9, "module-arkouda.array_api.indexing_functions", false], [10, "module-arkouda.array_api.linalg", false], [11, "module-arkouda.array_api.manipulation_functions", false], [12, "module-arkouda.array_api.searching_functions", false], [13, "module-arkouda.array_api.set_functions", false], [14, "module-arkouda.array_api.sorting_functions", false], [15, "module-arkouda.array_api.statistical_functions", false], [16, "module-arkouda.array_api.utility_functions", false], [17, "module-arkouda.categorical", false], [18, "module-arkouda.client", false], [19, "module-arkouda.client_dtypes", false], [20, "module-arkouda.dataframe", false], [21, "module-arkouda.dtypes", false], [22, "module-arkouda.groupbyclass", false], [23, "module-arkouda.history", false], [24, "module-arkouda", false], [25, "module-arkouda.index", false], [26, "module-arkouda.infoclass", false], [27, "module-arkouda.io", false], [28, "module-arkouda.io_util", false], [29, "module-arkouda.join", false], [30, "module-arkouda.logger", false], [31, "module-arkouda.match", false], [32, "module-arkouda.matcher", false], [33, "module-arkouda.numeric", false], [34, "module-arkouda.numpy.dtypes", false], [35, "module-arkouda.numpy", false], [36, "module-arkouda.numpy.random", false], [37, "module-arkouda.pdarrayclass", false], [38, "module-arkouda.pdarraycreation", false], [39, "module-arkouda.pdarraymanipulation", false], [40, "module-arkouda.pdarraysetops", false], [41, "module-arkouda.plotting", false], [42, "module-arkouda.random", false], [43, "module-arkouda.row", false], [44, "module-arkouda.scipy", false], [45, "module-arkouda.scipy.special", false], [46, "module-arkouda.scipy.stats", false], [47, "module-arkouda.security", false], [48, "module-arkouda.segarray", false], [49, "module-arkouda.series", false], [50, "module-arkouda.sorting", false], [51, "module-arkouda.sparrayclass", false], [52, "module-arkouda.sparsematrix", false], [53, "module-arkouda.strings", false], [54, "module-arkouda.testing", false], [55, "module-arkouda.timeclass", false], [56, "module-arkouda.util", false]], "moment_type() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.moment_type", false]], "month (arkouda.datetime property)": [[24, "arkouda.Datetime.month", false], [24, "id192", false], [24, "id225", false]], "month (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.month", false]], "most_common() (arkouda.groupby method)": [[24, "arkouda.GroupBy.most_common", false], [24, "id276", false], [24, "id323", false], [24, "id370", false], [24, "id417", false], [24, "id464", false], [91, "arkouda.GroupBy.most_common", false]], "most_common() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.most_common", false]], "most_common() (in module arkouda.util)": [[56, "arkouda.util.most_common", false]], "moveaxis() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.moveaxis", false]], "msb_left (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.MSB_left", false]], "msb_left (arkouda.fields attribute)": [[24, "arkouda.Fields.MSB_left", false]], "mt (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.mT", false]], "mt (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.mT", false]], "multiindex (class in arkouda)": [[24, "arkouda.MultiIndex", false]], "multiindex (class in arkouda.index)": [[25, "arkouda.index.MultiIndex", false]], "multiply() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.multiply", false]], "name (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.name", false]], "name (arkouda.fields attribute)": [[24, "arkouda.Fields.name", false]], "name (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.name", false]], "name (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.name", false]], "name (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.name", false], [24, "id1030", false], [24, "id1064", false], [24, "id1101", false], [24, "id1135", false], [24, "id1172", false], [24, "id1206", false], [24, "id1243", false], [24, "id915", false], [24, "id922", false], [24, "id959", false], [24, "id993", false], [94, "arkouda.pdarray.name", false]], "name (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.name", false], [37, "id2", false]], "name (arkouda.sparray attribute)": [[24, "arkouda.sparray.name", false], [24, "id1283", false]], "name (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.name", false], [51, "id3", false]], "name() (arkouda.bigint method)": [[24, "arkouda.bigint.name", false], [24, "id846", false]], "name() (arkouda.dtype method)": [[24, "arkouda.DType.name", false]], "name() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.name", false]], "name() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.name", false]], "name() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.name", false]], "name() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.name", false]], "name() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.name", false]], "name() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.name", false]], "name() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.name", false]], "name() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.name", false]], "name() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.name", false]], "names (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.names", false]], "names (arkouda.fields attribute)": [[24, "arkouda.Fields.names", false]], "names (arkouda.index property)": [[24, "arkouda.Index.names", false]], "names (arkouda.index.index property)": [[25, "arkouda.index.Index.names", false]], "names (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.names", false]], "names (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.names", false]], "namewidth (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.namewidth", false]], "namewidth (arkouda.fields attribute)": [[24, "arkouda.Fields.namewidth", false]], "nan (in module arkouda)": [[24, "arkouda.NAN", false], [24, "arkouda.NaN", false], [24, "arkouda.nan", false]], "nan (in module arkouda.numpy)": [[35, "arkouda.numpy.NAN", false], [35, "arkouda.numpy.NaN", false], [35, "arkouda.numpy.nan", false]], "nanosecond (arkouda.datetime property)": [[24, "arkouda.Datetime.nanosecond", false], [24, "id193", false], [24, "id226", false]], "nanosecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.nanosecond", false]], "nanoseconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.nanoseconds", false]], "nanoseconds (arkouda.timedelta property)": [[24, "arkouda.Timedelta.nanoseconds", false], [24, "id803", false]], "nbytes (arkouda.categorical property)": [[24, "arkouda.Categorical.nbytes", false], [24, "id35", false], [24, "id93", false]], "nbytes (arkouda.categorical.categorical property)": [[17, "arkouda.categorical.Categorical.nbytes", false]], "nbytes (arkouda.pdarray property)": [[24, "arkouda.pdarray.nbytes", false], [24, "id1031", false], [24, "id1102", false], [24, "id1173", false], [24, "id1244", false], [24, "id960", false]], "nbytes (arkouda.pdarrayclass.pdarray property)": [[37, "arkouda.pdarrayclass.pdarray.nbytes", false]], "nbytes (arkouda.segarray property)": [[24, "arkouda.SegArray.nbytes", false]], "nbytes (arkouda.segarray.segarray property)": [[48, "arkouda.segarray.SegArray.nbytes", false]], "nbytes (arkouda.strings attribute)": [[24, "arkouda.Strings.nbytes", false], [24, "id496", false], [24, "id572", false], [24, "id648", false], [24, "id724", false]], "nbytes (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.nbytes", false]], "nbytes() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.nbytes", false]], "nbytes() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.nbytes", false]], "nbytes() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.nbytes", false]], "nbytes() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.nbytes", false]], "nbytes() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.nbytes", false]], "nbytes() (arkouda.str_ method)": [[24, "arkouda.str_.nbytes", false], [24, "id1323", false]], "ndim (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.ndim", false]], "ndim (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.ndim", false]], "ndim (arkouda.categorical attribute)": [[24, "arkouda.Categorical.ndim", false], [24, "id0", false], [24, "id13", false], [24, "id36", false], [24, "id71", false], [24, "id94", false], [88, "arkouda.Categorical.ndim", false]], "ndim (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.ndim", false], [17, "id0", false]], "ndim (arkouda.index property)": [[24, "arkouda.Index.ndim", false]], "ndim (arkouda.index.index property)": [[25, "arkouda.index.Index.ndim", false]], "ndim (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.ndim", false]], "ndim (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.ndim", false]], "ndim (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.ndim", false], [24, "id1032", false], [24, "id1067", false], [24, "id1103", false], [24, "id1138", false], [24, "id1174", false], [24, "id1209", false], [24, "id1245", false], [24, "id916", false], [24, "id925", false], [24, "id961", false], [24, "id996", false], [94, "arkouda.pdarray.ndim", false]], "ndim (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.ndim", false], [37, "id3", false]], "ndim (arkouda.series property)": [[24, "arkouda.Series.ndim", false]], "ndim (arkouda.series.series property)": [[49, "arkouda.series.Series.ndim", false]], "ndim (arkouda.sparray attribute)": [[24, "arkouda.sparray.ndim", false], [24, "id1284", false]], "ndim (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.ndim", false], [51, "id4", false]], "ndim (arkouda.strings attribute)": [[24, "arkouda.Strings.ndim", false], [24, "id497", false], [24, "id573", false], [24, "id649", false], [24, "id725", false]], "ndim (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.ndim", false]], "ndim() (arkouda.bigint method)": [[24, "arkouda.bigint.ndim", false], [24, "id847", false]], "ndim() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.ndim", false]], "ndim() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.ndim", false]], "ndim() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.ndim", false]], "ndim() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.ndim", false]], "ndim() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.ndim", false]], "ndim() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.ndim", false]], "ndim() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.ndim", false]], "ndim() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.ndim", false]], "ndim() (arkouda.str_ method)": [[24, "arkouda.str_.ndim", false], [24, "id1324", false]], "negative() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.negative", false]], "negep (arkouda.finfo attribute)": [[24, "arkouda.finfo.negep", false]], "negep (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.negep", false]], "newbyteorder() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.newbyteorder", false]], "newbyteorder() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.newbyteorder", false]], "newbyteorder() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.newbyteorder", false]], "newbyteorder() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.newbyteorder", false]], "newbyteorder() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.newbyteorder", false]], "newbyteorder() (arkouda.str_ method)": [[24, "arkouda.str_.newbyteorder", false], [24, "id1325", false]], "nexp (arkouda.finfo attribute)": [[24, "arkouda.finfo.nexp", false]], "nexp (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.nexp", false]], "ngroups (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.ngroups", false], [24, "id250", false], [24, "id297", false], [24, "id344", false], [24, "id391", false], [24, "id438", false], [91, "arkouda.GroupBy.ngroups", false]], "ngroups (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.ngroups", false]], "ninf (in module arkouda)": [[24, "arkouda.NINF", false]], "ninf (in module arkouda.numpy)": [[35, "arkouda.numpy.NINF", false]], "nkeys (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.nkeys", false], [24, "id246", false], [24, "id293", false], [24, "id340", false], [24, "id387", false], [24, "id434", false], [91, "arkouda.GroupBy.nkeys", false]], "nkeys (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.nkeys", false]], "nlevels (arkouda.categorical attribute)": [[24, "arkouda.Categorical.nlevels", false], [24, "id1", false], [24, "id12", false], [24, "id37", false], [24, "id70", false], [24, "id95", false], [88, "arkouda.Categorical.nlevels", false]], "nlevels (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.nlevels", false], [17, "id1", false]], "nlevels (arkouda.index property)": [[24, "arkouda.Index.nlevels", false]], "nlevels (arkouda.index.index property)": [[25, "arkouda.index.Index.nlevels", false]], "nlevels (arkouda.index.multiindex property)": [[25, "arkouda.index.MultiIndex.nlevels", false]], "nlevels (arkouda.multiindex property)": [[24, "arkouda.MultiIndex.nlevels", false]], "nmant (arkouda.finfo attribute)": [[24, "arkouda.finfo.nmant", false]], "nmant (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.nmant", false]], "nnz (arkouda.sparray attribute)": [[24, "arkouda.sparray.nnz", false], [24, "id1285", false]], "nnz (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.nnz", false], [51, "id5", false]], "non_empty (arkouda.segarray property)": [[24, "arkouda.SegArray.non_empty", false]], "non_empty (arkouda.segarray.segarray property)": [[48, "arkouda.segarray.SegArray.non_empty", false]], "nonuniqueerror": [[3, "arkouda.alignment.NonUniqueError", false], [24, "arkouda.NonUniqueError", false]], "nonzero() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.nonzero", false]], "nonzero() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.nonzero", false]], "nonzero() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.nonzero", false]], "nonzero() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.nonzero", false]], "nonzero() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.nonzero", false]], "nonzero() (arkouda.str_ method)": [[24, "arkouda.str_.nonzero", false], [24, "id1326", false]], "nonzero() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.nonzero", false]], "normal() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.normal", false]], "normal() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.normal", false]], "normal() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.normal", false]], "normalize() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.normalize", false]], "normalize() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.normalize", false]], "not_equal() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.not_equal", false]], "notebookhistoryretriever (class in arkouda.history)": [[23, "arkouda.history.NotebookHistoryRetriever", false]], "notna() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.notna", false], [24, "id155", false]], "notna() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.notna", false]], "notna() (arkouda.series method)": [[24, "arkouda.Series.notna", false]], "notna() (arkouda.series.series method)": [[49, "arkouda.series.Series.notna", false]], "notnull() (arkouda.series method)": [[24, "arkouda.Series.notnull", false]], "notnull() (arkouda.series.series method)": [[49, "arkouda.series.Series.notnull", false]], "num_matches (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.num_matches", false]], "numargs() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.numargs", false]], "number (class in arkouda)": [[24, "arkouda.number", false]], "number (class in arkouda.numpy)": [[35, "arkouda.numpy.number", false]], "number_format_strings (class in arkouda)": [[24, "arkouda.NUMBER_FORMAT_STRINGS", false]], "number_format_strings (class in arkouda.dtypes)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS", false]], "number_format_strings (class in arkouda.numpy)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS", false]], "number_format_strings (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS", false]], "numerator() (arkouda.integer method)": [[24, "arkouda.integer.numerator", false]], "numerator() (arkouda.numpy.integer method)": [[35, "arkouda.numpy.integer.numerator", false]], "numeric_and_bool_scalars (class in arkouda)": [[24, "arkouda.numeric_and_bool_scalars", false]], "numeric_and_bool_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.numeric_and_bool_scalars", false]], "numeric_and_bool_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.numeric_and_bool_scalars", false]], "numeric_and_bool_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.numeric_and_bool_scalars", false]], "numeric_scalars (class in arkouda)": [[24, "arkouda.numeric_scalars", false]], "numeric_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.numeric_scalars", false]], "numeric_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.numeric_scalars", false]], "numeric_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.numeric_scalars", false]], "numericdtypes (class in arkouda)": [[24, "arkouda.NumericDTypes", false]], "numericdtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.NumericDTypes", false]], "numericdtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.NumericDTypes", false]], "numericdtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.NumericDTypes", false]], "numpy_scalars (class in arkouda)": [[24, "arkouda.numpy_scalars", false]], "numpy_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.numpy_scalars", false]], "numpy_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.numpy_scalars", false]], "numpy_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.numpy_scalars", false]], "nunique() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.nunique", false]], "nunique() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.nunique", false]], "nunique() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.nunique", false]], "nunique() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.nunique", false]], "nunique() (arkouda.groupby method)": [[24, "arkouda.GroupBy.nunique", false], [24, "id277", false], [24, "id324", false], [24, "id371", false], [24, "id418", false], [24, "id465", false], [91, "arkouda.GroupBy.nunique", false]], "nunique() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.nunique", false]], "nunique() (arkouda.segarray method)": [[24, "arkouda.SegArray.nunique", false]], "nunique() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.nunique", false]], "nzero (in module arkouda)": [[24, "arkouda.NZERO", false]], "nzero (in module arkouda.numpy)": [[35, "arkouda.numpy.NZERO", false]], "object_ (class in arkouda)": [[24, "arkouda.object_", false]], "object_ (class in arkouda.numpy)": [[35, "arkouda.numpy.object_", false]], "objectdtype (class in arkouda)": [[24, "arkouda.ObjectDType", false]], "objectdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ObjectDType", false]], "objtype (arkouda.categorical attribute)": [[24, "arkouda.Categorical.objType", false], [24, "id38", false], [24, "id96", false]], "objtype (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.objType", false]], "objtype (arkouda.index attribute)": [[24, "arkouda.Index.objType", false]], "objtype (arkouda.index.index attribute)": [[25, "arkouda.index.Index.objType", false]], "objtype (arkouda.index.multiindex attribute)": [[25, "arkouda.index.MultiIndex.objType", false]], "objtype (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.objType", false]], "objtype (arkouda.multiindex attribute)": [[24, "arkouda.MultiIndex.objType", false]], "objtype (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.objType", false], [24, "id1033", false], [24, "id1104", false], [24, "id1175", false], [24, "id1246", false], [24, "id962", false]], "objtype (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.objType", false]], "objtype (arkouda.segarray attribute)": [[24, "arkouda.SegArray.objType", false]], "objtype (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.objType", false]], "objtype (arkouda.strings attribute)": [[24, "arkouda.Strings.objType", false], [24, "id542", false], [24, "id618", false], [24, "id694", false], [24, "id770", false]], "objtype (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.objType", false]], "objtype() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.objType", false], [24, "id156", false]], "objtype() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.objType", false]], "objtype() (arkouda.groupby method)": [[24, "arkouda.GroupBy.objType", false], [24, "id278", false], [24, "id325", false], [24, "id372", false], [24, "id419", false], [24, "id466", false]], "objtype() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.objType", false]], "objtype() (arkouda.series method)": [[24, "arkouda.Series.objType", false]], "objtype() (arkouda.series.series method)": [[49, "arkouda.series.Series.objType", false]], "ones() (in module arkouda)": [[24, "arkouda.ones", false], [24, "id910", false], [24, "id911", false], [24, "id912", false], [89, "arkouda.ones", false]], "ones() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.ones", false]], "ones() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.ones", false]], "ones_like() (in module arkouda)": [[24, "arkouda.ones_like", false], [89, "arkouda.ones_like", false]], "ones_like() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.ones_like", false]], "ones_like() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.ones_like", false]], "open() (arkouda.datasource method)": [[24, "arkouda.DataSource.open", false]], "open() (arkouda.numpy.datasource method)": [[35, "arkouda.numpy.DataSource.open", false]], "opeq() (arkouda.bitvector method)": [[24, "arkouda.BitVector.opeq", false]], "opeq() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.opeq", false]], "opeq() (arkouda.client_dtypes.fields method)": [[19, "arkouda.client_dtypes.Fields.opeq", false]], "opeq() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.opeq", false]], "opeq() (arkouda.fields method)": [[24, "arkouda.Fields.opeq", false]], "opeq() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.opeq", false]], "opeq() (arkouda.pdarray method)": [[24, "arkouda.pdarray.opeq", false], [24, "id1034", false], [24, "id1105", false], [24, "id1176", false], [24, "id1247", false], [24, "id963", false]], "opeq() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.opeq", false]], "opeqops (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.OpEqOps", false], [24, "id1000", false], [24, "id1071", false], [24, "id1142", false], [24, "id1213", false], [24, "id929", false]], "opeqops (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.OpEqOps", false]], "optional() (arkouda.dtypes.annotations method)": [[21, "arkouda.dtypes.annotations.optional", false]], "optional() (arkouda.numpy.dtypes.annotations method)": [[34, "arkouda.numpy.dtypes.annotations.optional", false]], "or() (arkouda.groupby method)": [[24, "arkouda.GroupBy.OR", false], [24, "id255", false], [24, "id302", false], [24, "id349", false], [24, "id396", false], [24, "id443", false], [91, "arkouda.GroupBy.OR", false]], "or() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.OR", false]], "or() (arkouda.segarray method)": [[24, "arkouda.SegArray.OR", false]], "or() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.OR", false]], "pad (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.pad", false]], "pad (arkouda.fields attribute)": [[24, "arkouda.Fields.pad", false]], "pad() (in module arkouda.array_api.utility_functions)": [[16, "arkouda.array_api.utility_functions.pad", false]], "padchar (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.padchar", false]], "padchar (arkouda.fields attribute)": [[24, "arkouda.Fields.padchar", false]], "parent_entry_name (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.parent_entry_name", false]], "parity() (arkouda.pdarray method)": [[24, "arkouda.pdarray.parity", false], [24, "id1035", false], [24, "id1106", false], [24, "id1177", false], [24, "id1248", false], [24, "id964", false]], "parity() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.parity", false]], "parity() (in module arkouda)": [[24, "arkouda.parity", false]], "parity() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.parity", false]], "parse_hdf_categoricals() (arkouda.categorical static method)": [[24, "arkouda.Categorical.parse_hdf_categoricals", false], [24, "id39", false], [24, "id97", false]], "parse_hdf_categoricals() (arkouda.categorical.categorical static method)": [[17, "arkouda.categorical.Categorical.parse_hdf_categoricals", false]], "pdarray (class in arkouda)": [[24, "arkouda.pdarray", false], [24, "id1063", false], [24, "id1134", false], [24, "id1205", false], [24, "id921", false], [24, "id992", false], [94, "arkouda.pdarray", false]], "pdarray (class in arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.pdarray", false]], "pdconcat() (arkouda.series method)": [[24, "arkouda.Series.pdconcat", false]], "pdconcat() (arkouda.series.series method)": [[49, "arkouda.series.Series.pdconcat", false]], "pdconcat() (in module arkouda.series)": [[97, "arkouda.Series.pdconcat", false]], "peel() (arkouda.strings method)": [[24, "arkouda.Strings.peel", false], [24, "id543", false], [24, "id619", false], [24, "id695", false], [24, "id771", false], [100, "arkouda.Strings.peel", false]], "peel() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.peel", false]], "permutation (arkouda.categorical attribute)": [[24, "arkouda.Categorical.permutation", false], [24, "id2", false], [24, "id40", false], [24, "id67", false], [24, "id9", false], [24, "id98", false], [88, "arkouda.Categorical.permutation", false]], "permutation (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.permutation", false], [17, "id2", false]], "permutation (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.permutation", false], [24, "id248", false], [24, "id295", false], [24, "id342", false], [24, "id389", false], [24, "id436", false], [91, "arkouda.GroupBy.permutation", false]], "permutation (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.permutation", false]], "permutation() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.permutation", false]], "permutation() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.permutation", false]], "permutation() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.permutation", false]], "permute_dims() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.permute_dims", false]], "pi (in module arkouda)": [[24, "arkouda.pi", false]], "pi (in module arkouda.numpy)": [[35, "arkouda.numpy.pi", false]], "pinf (in module arkouda)": [[24, "arkouda.PINF", false]], "pinf (in module arkouda.numpy)": [[35, "arkouda.numpy.PINF", false]], "plot_dist() (in module arkouda)": [[24, "arkouda.plot_dist", false]], "plot_dist() (in module arkouda.plotting)": [[41, "arkouda.plotting.plot_dist", false]], "poisson() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.poisson", false]], "poisson() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.poisson", false]], "poisson() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.poisson", false]], "pop() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.pop", false]], "pop() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.pop", false]], "pop() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.pop", false]], "pop() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.pop", false]], "pop() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.pop", false]], "pop() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.pop", false]], "pop() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.pop", false]], "pop() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.pop", false]], "pop() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.pop", false]], "pop() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.pop", false]], "pop() (arkouda.sctypes method)": [[24, "arkouda.sctypes.pop", false]], "pop() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.pop", false]], "popcount() (arkouda.pdarray method)": [[24, "arkouda.pdarray.popcount", false], [24, "id1036", false], [24, "id1107", false], [24, "id1178", false], [24, "id1249", false], [24, "id965", false]], "popcount() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.popcount", false]], "popcount() (in module arkouda)": [[24, "arkouda.popcount", false]], "popcount() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.popcount", false]], "popitem() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.popitem", false]], "popitem() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.popitem", false]], "popitem() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.popitem", false]], "popitem() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.popitem", false]], "popitem() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.popitem", false]], "popitem() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.popitem", false]], "popitem() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.popitem", false]], "popitem() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.popitem", false]], "popitem() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.popitem", false]], "popitem() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.popitem", false]], "popitem() (arkouda.sctypes method)": [[24, "arkouda.sctypes.popitem", false]], "popitem() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.popitem", false]], "populated (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.populated", false]], "positive() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.positive", false]], "pow() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.pow", false]], "power() (in module arkouda)": [[24, "arkouda.power", false]], "power() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.power", false]], "power_divergence() (in module arkouda)": [[24, "arkouda.power_divergence", false]], "power_divergence() (in module arkouda.scipy)": [[44, "arkouda.scipy.power_divergence", false]], "power_divergenceresult (class in arkouda)": [[24, "arkouda.Power_divergenceResult", false]], "power_divergenceresult (class in arkouda.scipy)": [[44, "arkouda.scipy.Power_divergenceResult", false]], "precision (arkouda.finfo attribute)": [[24, "arkouda.finfo.precision", false]], "precision (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.precision", false]], "prepend_single() (arkouda.segarray method)": [[24, "arkouda.SegArray.prepend_single", false]], "prepend_single() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.prepend_single", false]], "prepend_single() (in module arkouda.segarray)": [[96, "arkouda.SegArray.prepend_single", false]], "pretty_print_info() (arkouda.categorical method)": [[24, "arkouda.Categorical.pretty_print_info", false], [24, "id41", false], [24, "id99", false]], "pretty_print_info() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.pretty_print_info", false]], "pretty_print_info() (arkouda.pdarray method)": [[24, "arkouda.pdarray.pretty_print_info", false], [24, "id1037", false], [24, "id1108", false], [24, "id1179", false], [24, "id1250", false], [24, "id966", false]], "pretty_print_info() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.pretty_print_info", false]], "pretty_print_info() (arkouda.strings method)": [[24, "arkouda.Strings.pretty_print_info", false], [24, "id544", false], [24, "id620", false], [24, "id696", false], [24, "id772", false]], "pretty_print_info() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.pretty_print_info", false]], "pretty_print_information() (in module arkouda)": [[24, "arkouda.pretty_print_information", false]], "pretty_print_information() (in module arkouda.infoclass)": [[26, "arkouda.infoclass.pretty_print_information", false]], "print_server_commands() (in module arkouda.client)": [[18, "arkouda.client.print_server_commands", false]], "prod() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.prod", false]], "prod() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.prod", false]], "prod() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.prod", false]], "prod() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.prod", false]], "prod() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.prod", false]], "prod() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.prod", false]], "prod() (arkouda.groupby method)": [[24, "arkouda.GroupBy.prod", false], [24, "id279", false], [24, "id326", false], [24, "id373", false], [24, "id420", false], [24, "id467", false], [91, "arkouda.GroupBy.prod", false]], "prod() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.prod", false]], "prod() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.prod", false]], "prod() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.prod", false]], "prod() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.prod", false]], "prod() (arkouda.pdarray method)": [[24, "arkouda.pdarray.prod", false], [24, "id1038", false], [24, "id1109", false], [24, "id1180", false], [24, "id1251", false], [24, "id967", false], [92, "arkouda.pdarray.prod", false]], "prod() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.prod", false]], "prod() (arkouda.segarray method)": [[24, "arkouda.SegArray.prod", false]], "prod() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.prod", false]], "prod() (arkouda.series method)": [[24, "arkouda.Series.prod", false]], "prod() (arkouda.series.series method)": [[49, "arkouda.series.Series.prod", false]], "prod() (arkouda.str_ method)": [[24, "arkouda.str_.prod", false], [24, "id1327", false]], "prod() (in module arkouda)": [[24, "arkouda.prod", false], [87, "arkouda.prod", false]], "prod() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.prod", false]], "prod() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.prod", false]], "promote_to_common_dtype() (in module arkouda)": [[24, "arkouda.promote_to_common_dtype", false]], "promote_to_common_dtype() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.promote_to_common_dtype", false]], "properties (class in arkouda)": [[24, "arkouda.Properties", false]], "properties (class in arkouda.accessor)": [[2, "arkouda.accessor.Properties", false]], "ptp() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.ptp", false]], "ptp() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.ptp", false]], "ptp() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.ptp", false]], "ptp() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.ptp", false]], "ptp() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.ptp", false]], "ptp() (arkouda.str_ method)": [[24, "arkouda.str_.ptp", false], [24, "id1328", false]], "purge_cached_regex_patterns() (arkouda.strings method)": [[24, "arkouda.Strings.purge_cached_regex_patterns", false], [24, "id545", false], [24, "id621", false], [24, "id697", false], [24, "id773", false]], "purge_cached_regex_patterns() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.purge_cached_regex_patterns", false]], "put() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.put", false]], "put() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.put", false]], "put() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.put", false]], "put() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.put", false]], "put() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.put", false]], "put() (arkouda.str_ method)": [[24, "arkouda.str_.put", false], [24, "id1329", false]], "putmask() (in module arkouda)": [[24, "arkouda.putmask", false]], "putmask() (in module arkouda.numpy)": [[35, "arkouda.numpy.putmask", false]], "pvalue (arkouda.power_divergenceresult attribute)": [[24, "arkouda.Power_divergenceResult.pvalue", false]], "pvalue (arkouda.scipy.power_divergenceresult attribute)": [[44, "arkouda.scipy.Power_divergenceResult.pvalue", false]], "pzero (in module arkouda)": [[24, "arkouda.PZERO", false]], "pzero (in module arkouda.numpy)": [[35, "arkouda.numpy.PZERO", false]], "rad2deg() (in module arkouda)": [[24, "arkouda.rad2deg", false]], "rad2deg() (in module arkouda.numpy)": [[35, "arkouda.numpy.rad2deg", false]], "randint() (in module arkouda)": [[24, "arkouda.randint", false], [89, "arkouda.randint", false]], "randint() (in module arkouda.numpy.random)": [[36, "arkouda.numpy.random.randint", false]], "randint() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.randint", false]], "randint() (in module arkouda.random)": [[42, "arkouda.random.randint", false]], "random() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.random", false]], "random() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.random", false]], "random() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.random", false]], "random_sparse_matrix() (in module arkouda.sparsematrix)": [[52, "arkouda.sparsematrix.random_sparse_matrix", false]], "random_strings_lognormal() (in module arkouda)": [[24, "arkouda.random_strings_lognormal", false]], "random_strings_lognormal() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.random_strings_lognormal", false]], "random_strings_uniform() (in module arkouda)": [[24, "arkouda.random_strings_uniform", false]], "random_strings_uniform() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.random_strings_uniform", false]], "rankwarning (class in arkouda)": [[24, "arkouda.RankWarning", false]], "rankwarning (class in arkouda.numpy)": [[35, "arkouda.numpy.RankWarning", false]], "ravel() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.ravel", false]], "ravel() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.ravel", false]], "ravel() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.ravel", false]], "ravel() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.ravel", false]], "ravel() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.ravel", false]], "ravel() (arkouda.str_ method)": [[24, "arkouda.str_.ravel", false], [24, "id1330", false]], "re (arkouda.match.match attribute)": [[31, "arkouda.match.Match.re", false]], "read() (in module arkouda)": [[24, "arkouda.read", false], [84, "arkouda.read", false]], "read() (in module arkouda.io)": [[27, "arkouda.io.read", false]], "read_csv() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.read_csv", false], [24, "id157", false]], "read_csv() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.read_csv", false]], "read_csv() (in module arkouda)": [[24, "arkouda.read_csv", false]], "read_csv() (in module arkouda.io)": [[27, "arkouda.io.read_csv", false]], "read_hdf() (arkouda.segarray class method)": [[24, "arkouda.SegArray.read_hdf", false]], "read_hdf() (arkouda.segarray.segarray class method)": [[48, "arkouda.segarray.SegArray.read_hdf", false]], "read_hdf() (in module arkouda)": [[24, "arkouda.read_hdf", false]], "read_hdf() (in module arkouda.io)": [[27, "arkouda.io.read_hdf", false]], "read_parquet() (in module arkouda)": [[24, "arkouda.read_parquet", false]], "read_parquet() (in module arkouda.io)": [[27, "arkouda.io.read_parquet", false]], "read_tagged_data() (in module arkouda)": [[24, "arkouda.read_tagged_data", false]], "read_tagged_data() (in module arkouda.io)": [[27, "arkouda.io.read_tagged_data", false]], "read_zarr() (in module arkouda)": [[24, "arkouda.read_zarr", false]], "read_zarr() (in module arkouda.io)": [[27, "arkouda.io.read_zarr", false]], "real() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.real", false]], "real() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.real", false]], "real() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.real", false]], "real() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.real", false]], "real() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.real", false]], "real() (arkouda.str_ method)": [[24, "arkouda.str_.real", false], [24, "id1331", false]], "real() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.real", false]], "receive() (in module arkouda)": [[24, "arkouda.receive", false]], "receive() (in module arkouda.io)": [[27, "arkouda.io.receive", false]], "receive_dataframe() (in module arkouda)": [[24, "arkouda.receive_dataframe", false]], "receive_dataframe() (in module arkouda.io)": [[27, "arkouda.io.receive_dataframe", false]], "reductions() (arkouda.groupby method)": [[24, "arkouda.GroupBy.Reductions", false], [24, "id256", false], [24, "id303", false], [24, "id350", false], [24, "id397", false], [24, "id444", false]], "reductions() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.Reductions", false]], "regex_split() (arkouda.strings method)": [[24, "arkouda.Strings.regex_split", false], [24, "id546", false], [24, "id622", false], [24, "id698", false], [24, "id774", false]], "regex_split() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.regex_split", false]], "register() (arkouda.bitvector method)": [[24, "arkouda.BitVector.register", false]], "register() (arkouda.categorical method)": [[24, "arkouda.Categorical.register", false], [24, "id100", false], [24, "id42", false]], "register() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.register", false]], "register() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.register", false]], "register() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.register", false]], "register() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.register", false], [24, "id158", false]], "register() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.register", false]], "register() (arkouda.datetime method)": [[24, "arkouda.Datetime.register", false], [24, "id194", false], [24, "id227", false]], "register() (arkouda.groupby method)": [[24, "arkouda.GroupBy.register", false], [24, "id280", false], [24, "id327", false], [24, "id374", false], [24, "id421", false], [24, "id468", false], [91, "arkouda.GroupBy.register", false]], "register() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.register", false]], "register() (arkouda.index method)": [[24, "arkouda.Index.register", false]], "register() (arkouda.index.index method)": [[25, "arkouda.index.Index.register", false]], "register() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.register", false]], "register() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.register", false]], "register() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.register", false]], "register() (arkouda.pdarray method)": [[24, "arkouda.pdarray.register", false], [24, "id1039", false], [24, "id1110", false], [24, "id1181", false], [24, "id1252", false], [24, "id968", false]], "register() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.register", false]], "register() (arkouda.segarray method)": [[24, "arkouda.SegArray.register", false]], "register() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.register", false]], "register() (arkouda.series method)": [[24, "arkouda.Series.register", false]], "register() (arkouda.series.series method)": [[49, "arkouda.series.Series.register", false]], "register() (arkouda.strings method)": [[24, "arkouda.Strings.register", false], [24, "id547", false], [24, "id623", false], [24, "id699", false], [24, "id775", false]], "register() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.register", false]], "register() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.register", false]], "register() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.register", false]], "register() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.register", false], [24, "id804", false]], "register() (in module arkouda.util)": [[56, "arkouda.util.register", false]], "register_all() (in module arkouda)": [[24, "arkouda.register_all", false]], "register_all() (in module arkouda.util)": [[56, "arkouda.util.register_all", false]], "registerablepieces (arkouda.categorical attribute)": [[24, "arkouda.Categorical.RegisterablePieces", false], [24, "id16", false], [24, "id74", false]], "registerablepieces (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.RegisterablePieces", false]], "registered_name (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.registered_name", false]], "registered_name (arkouda.categorical attribute)": [[24, "arkouda.Categorical.registered_name", false], [24, "id101", false], [24, "id43", false]], "registered_name (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.registered_name", false]], "registered_name (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.registered_name", false]], "registered_name (arkouda.index attribute)": [[24, "arkouda.Index.registered_name", false]], "registered_name (arkouda.index.index attribute)": [[25, "arkouda.index.Index.registered_name", false]], "registered_name (arkouda.index.multiindex attribute)": [[25, "arkouda.index.MultiIndex.registered_name", false]], "registered_name (arkouda.multiindex attribute)": [[24, "arkouda.MultiIndex.registered_name", false]], "registered_name (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.registered_name", false], [24, "id1040", false], [24, "id1111", false], [24, "id1182", false], [24, "id1253", false], [24, "id969", false]], "registered_name (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.registered_name", false]], "registered_name (arkouda.segarray attribute)": [[24, "arkouda.SegArray.registered_name", false]], "registered_name (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.registered_name", false]], "registered_name (arkouda.strings attribute)": [[24, "arkouda.Strings.registered_name", false], [24, "id548", false], [24, "id624", false], [24, "id700", false], [24, "id776", false]], "registered_name (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.registered_name", false]], "registeredsymbols (in module arkouda)": [[24, "arkouda.RegisteredSymbols", false]], "registeredsymbols (in module arkouda.infoclass)": [[26, "arkouda.infoclass.RegisteredSymbols", false]], "registrationerror": [[24, "arkouda.RegistrationError", false], [24, "id484", false], [24, "id485", false], [24, "id486", false], [24, "id487", false], [37, "arkouda.pdarrayclass.RegistrationError", false]], "remainder() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.remainder", false]], "remove_repeats() (arkouda.segarray method)": [[24, "arkouda.SegArray.remove_repeats", false]], "remove_repeats() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.remove_repeats", false]], "remove_repeats() (in module arkouda.segarray)": [[96, "arkouda.SegArray.remove_repeats", false]], "rename() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.rename", false], [24, "id159", false]], "rename() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.rename", false]], "rename() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.rename", false]], "repeat() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.repeat", false]], "repeat() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.repeat", false]], "repeat() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.repeat", false]], "repeat() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.repeat", false]], "repeat() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.repeat", false]], "repeat() (arkouda.str_ method)": [[24, "arkouda.str_.repeat", false], [24, "id1332", false]], "repeat() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.repeat", false]], "report_mem() (in module arkouda.util)": [[56, "arkouda.util.report_mem", false]], "requiredpieces (arkouda.categorical attribute)": [[24, "arkouda.Categorical.RequiredPieces", false], [24, "id17", false], [24, "id75", false]], "requiredpieces (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.RequiredPieces", false]], "reset_categories() (arkouda.categorical method)": [[24, "arkouda.Categorical.reset_categories", false], [24, "id102", false], [24, "id44", false]], "reset_categories() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.reset_categories", false]], "reset_index() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.reset_index", false], [24, "id160", false]], "reset_index() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.reset_index", false]], "reset_index() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.reset_index", false]], "reshape() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.reshape", false]], "reshape() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.reshape", false]], "reshape() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.reshape", false]], "reshape() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.reshape", false]], "reshape() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.reshape", false]], "reshape() (arkouda.pdarray method)": [[24, "arkouda.pdarray.reshape", false], [24, "id1041", false], [24, "id1112", false], [24, "id1183", false], [24, "id1254", false], [24, "id970", false]], "reshape() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.reshape", false]], "reshape() (arkouda.str_ method)": [[24, "arkouda.str_.reshape", false], [24, "id1333", false]], "reshape() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.reshape", false]], "resize() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.resize", false]], "resize() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.resize", false]], "resize() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.resize", false]], "resize() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.resize", false]], "resize() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.resize", false]], "resize() (arkouda.str_ method)": [[24, "arkouda.str_.resize", false], [24, "id1334", false]], "resolution (arkouda.finfo attribute)": [[24, "arkouda.finfo.resolution", false]], "resolution (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.resolution", false]], "resolve_scalar_dtype() (in module arkouda)": [[24, "arkouda.resolve_scalar_dtype", false]], "resolve_scalar_dtype() (in module arkouda.dtypes)": [[21, "arkouda.dtypes.resolve_scalar_dtype", false]], "resolve_scalar_dtype() (in module arkouda.numpy)": [[35, "arkouda.numpy.resolve_scalar_dtype", false]], "resolve_scalar_dtype() (in module arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.resolve_scalar_dtype", false]], "restore() (in module arkouda)": [[24, "arkouda.restore", false]], "restore() (in module arkouda.io)": [[27, "arkouda.io.restore", false]], "result_type() (in module arkouda.array_api.data_type_functions)": [[6, "arkouda.array_api.data_type_functions.result_type", false]], "retrieve() (arkouda.history.historyretriever method)": [[23, "arkouda.history.HistoryRetriever.retrieve", false]], "retrieve() (arkouda.history.notebookhistoryretriever method)": [[23, "arkouda.history.NotebookHistoryRetriever.retrieve", false]], "retrieve() (arkouda.history.shellhistoryretriever method)": [[23, "arkouda.history.ShellHistoryRetriever.retrieve", false]], "return_validity() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.return_validity", false]], "return_validity() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.return_validity", false]], "reverse (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.reverse", false]], "reverse (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.reverse", false]], "right_align() (in module arkouda)": [[24, "arkouda.right_align", false]], "right_align() (in module arkouda.alignment)": [[3, "arkouda.alignment.right_align", false]], "roll() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.roll", false]], "rotl() (arkouda.pdarray method)": [[24, "arkouda.pdarray.rotl", false], [24, "id1042", false], [24, "id1113", false], [24, "id1184", false], [24, "id1255", false], [24, "id971", false]], "rotl() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.rotl", false]], "rotl() (in module arkouda)": [[24, "arkouda.rotl", false]], "rotl() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.rotl", false]], "rotr() (arkouda.pdarray method)": [[24, "arkouda.pdarray.rotr", false], [24, "id1043", false], [24, "id1114", false], [24, "id1185", false], [24, "id1256", false], [24, "id972", false]], "rotr() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.rotr", false]], "rotr() (in module arkouda)": [[24, "arkouda.rotr", false]], "rotr() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.rotr", false]], "round() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.round", false]], "round() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.round", false]], "round() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.round", false]], "round() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.round", false]], "round() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.round", false]], "round() (arkouda.str_ method)": [[24, "arkouda.str_.round", false], [24, "id1335", false]], "round() (in module arkouda)": [[24, "arkouda.round", false]], "round() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.round", false]], "round() (in module arkouda.numpy)": [[35, "arkouda.numpy.round", false]], "row (class in arkouda)": [[24, "arkouda.Row", false]], "row (class in arkouda.row)": [[43, "arkouda.row.Row", false]], "rpeel() (arkouda.strings method)": [[24, "arkouda.Strings.rpeel", false], [24, "id549", false], [24, "id625", false], [24, "id701", false], [24, "id777", false], [100, "arkouda.Strings.rpeel", false]], "rpeel() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.rpeel", false]], "ruok() (in module arkouda.client)": [[18, "arkouda.client.ruok", false]], "sample() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.sample", false], [24, "id161", false]], "sample() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.sample", false]], "sample() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.sample", false]], "sample() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.sample", false]], "sample() (arkouda.groupby method)": [[24, "arkouda.GroupBy.sample", false], [24, "id281", false], [24, "id328", false], [24, "id375", false], [24, "id422", false], [24, "id469", false], [91, "arkouda.GroupBy.sample", false]], "sample() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.sample", false]], "save() (arkouda.categorical method)": [[24, "arkouda.Categorical.save", false], [24, "id103", false], [24, "id45", false]], "save() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.save", false]], "save() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.save", false], [24, "id162", false]], "save() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.save", false]], "save() (arkouda.index method)": [[24, "arkouda.Index.save", false]], "save() (arkouda.index.index method)": [[25, "arkouda.index.Index.save", false]], "save() (arkouda.pdarray method)": [[24, "arkouda.pdarray.save", false], [24, "id1044", false], [24, "id1115", false], [24, "id1186", false], [24, "id1257", false], [24, "id973", false]], "save() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.save", false]], "save() (arkouda.segarray method)": [[24, "arkouda.SegArray.save", false]], "save() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.save", false]], "save() (arkouda.strings method)": [[24, "arkouda.Strings.save", false], [24, "id550", false], [24, "id626", false], [24, "id702", false], [24, "id778", false]], "save() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.save", false]], "save_all() (in module arkouda)": [[24, "arkouda.save_all", false]], "save_all() (in module arkouda.io)": [[27, "arkouda.io.save_all", false]], "scalar_array() (in module arkouda)": [[24, "arkouda.scalar_array", false]], "scalar_array() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.scalar_array", false]], "scalardtypes (class in arkouda)": [[24, "arkouda.ScalarDTypes", false]], "scalardtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.ScalarDTypes", false]], "scalardtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.ScalarDTypes", false]], "scalardtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.ScalarDTypes", false]], "scalartype (class in arkouda)": [[24, "arkouda.ScalarType", false]], "scalartype (class in arkouda.numpy)": [[35, "arkouda.numpy.ScalarType", false]], "sctypedict (class in arkouda)": [[24, "arkouda.sctypeDict", false]], "sctypedict (class in arkouda.numpy)": [[35, "arkouda.numpy.sctypeDict", false]], "sctypes (class in arkouda)": [[24, "arkouda.sctypes", false]], "sctypes (class in arkouda.numpy)": [[35, "arkouda.numpy.sctypes", false]], "search() (arkouda.strings method)": [[24, "arkouda.Strings.search", false], [24, "id551", false], [24, "id627", false], [24, "id703", false], [24, "id779", false], [100, "arkouda.Strings.search", false]], "search() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.search", false]], "search_bool (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.search_bool", false]], "search_ind (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.search_ind", false]], "search_intervals() (in module arkouda)": [[24, "arkouda.search_intervals", false]], "search_intervals() (in module arkouda.alignment)": [[3, "arkouda.alignment.search_intervals", false]], "searchsorted() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.searchsorted", false]], "searchsorted() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.searchsorted", false]], "searchsorted() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.searchsorted", false]], "searchsorted() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.searchsorted", false]], "searchsorted() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.searchsorted", false]], "searchsorted() (arkouda.str_ method)": [[24, "arkouda.str_.searchsorted", false], [24, "id1336", false]], "searchsorted() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.searchsorted", false]], "second (arkouda.datetime property)": [[24, "arkouda.Datetime.second", false], [24, "id195", false], [24, "id228", false]], "second (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.second", false]], "seconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.seconds", false]], "seconds (arkouda.timedelta property)": [[24, "arkouda.Timedelta.seconds", false], [24, "id805", false]], "seg_suffix (in module arkouda)": [[24, "arkouda.SEG_SUFFIX", false]], "seg_suffix (in module arkouda.segarray)": [[48, "arkouda.segarray.SEG_SUFFIX", false]], "segarray (class in arkouda)": [[24, "arkouda.SegArray", false]], "segarray (class in arkouda.segarray)": [[48, "arkouda.segarray.SegArray", false]], "segarray() (in module arkouda)": [[24, "arkouda.segarray", false]], "segarray() (in module arkouda.segarray)": [[48, "arkouda.segarray.segarray", false]], "segments (arkouda.categorical attribute)": [[24, "arkouda.Categorical.segments", false], [24, "id10", false], [24, "id104", false], [24, "id3", false], [24, "id46", false], [24, "id68", false], [88, "arkouda.Categorical.segments", false]], "segments (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.segments", false], [17, "id3", false]], "segments (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.segments", false], [24, "id251", false], [24, "id298", false], [24, "id345", false], [24, "id392", false], [24, "id439", false], [91, "arkouda.GroupBy.segments", false]], "segments (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.segments", false]], "segments (arkouda.segarray attribute)": [[24, "arkouda.SegArray.segments", false]], "segments (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.segments", false]], "separator (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.separator", false]], "separator (arkouda.fields attribute)": [[24, "arkouda.Fields.separator", false]], "series (arkouda.accessor.datetimeaccessor attribute)": [[2, "arkouda.accessor.DatetimeAccessor.series", false]], "series (arkouda.accessor.stringaccessor attribute)": [[2, "arkouda.accessor.StringAccessor.series", false]], "series (arkouda.datetimeaccessor attribute)": [[24, "arkouda.DatetimeAccessor.series", false]], "series (arkouda.stringaccessor attribute)": [[24, "arkouda.StringAccessor.series", false]], "series (class in arkouda)": [[24, "arkouda.Series", false], [97, "arkouda.Series", false]], "series (class in arkouda.series)": [[49, "arkouda.series.Series", false]], "seriesdtypes (class in arkouda)": [[24, "arkouda.SeriesDTypes", false]], "seriesdtypes (class in arkouda.dtypes)": [[21, "arkouda.dtypes.SeriesDTypes", false]], "seriesdtypes (class in arkouda.numpy)": [[35, "arkouda.numpy.SeriesDTypes", false]], "seriesdtypes (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.SeriesDTypes", false]], "set_categories() (arkouda.categorical method)": [[24, "arkouda.Categorical.set_categories", false], [24, "id105", false], [24, "id47", false]], "set_categories() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.set_categories", false]], "set_dtype() (arkouda.index method)": [[24, "arkouda.Index.set_dtype", false]], "set_dtype() (arkouda.index.index method)": [[25, "arkouda.index.Index.set_dtype", false]], "set_dtype() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.set_dtype", false]], "set_dtype() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.set_dtype", false]], "set_dtype() (in module arkouda.index)": [[85, "arkouda.Index.set_dtype", false]], "set_dtype() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.set_dtype", false]], "set_jth() (arkouda.segarray method)": [[24, "arkouda.SegArray.set_jth", false]], "set_jth() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.set_jth", false]], "set_jth() (in module arkouda.segarray)": [[96, "arkouda.SegArray.set_jth", false]], "setdefault() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.setdefault", false]], "setdefault() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.setdefault", false]], "setdefault() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.setdefault", false]], "setdefault() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.setdefault", false]], "setdefault() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.setdefault", false]], "setdefault() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.setdefault", false]], "setdefault() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.setdefault", false]], "setdefault() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.setdefault", false]], "setdefault() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.setdefault", false]], "setdefault() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.setdefault", false]], "setdefault() (arkouda.sctypes method)": [[24, "arkouda.sctypes.setdefault", false]], "setdefault() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.setdefault", false]], "setdiff() (arkouda.segarray method)": [[24, "arkouda.SegArray.setdiff", false]], "setdiff() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.setdiff", false]], "setdiff() (in module arkouda.segarray)": [[96, "arkouda.SegArray.setdiff", false]], "setdiff1d() (in module arkouda)": [[24, "arkouda.setdiff1d", false], [98, "arkouda.setdiff1d", false]], "setdiff1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.setdiff1d", false]], "setfield() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.setfield", false]], "setfield() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.setfield", false]], "setfield() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.setfield", false]], "setfield() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.setfield", false]], "setfield() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.setfield", false]], "setfield() (arkouda.str_ method)": [[24, "arkouda.str_.setfield", false], [24, "id1337", false]], "setflags() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.setflags", false]], "setflags() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.setflags", false]], "setflags() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.setflags", false]], "setflags() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.setflags", false]], "setflags() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.setflags", false]], "setflags() (arkouda.str_ method)": [[24, "arkouda.str_.setflags", false], [24, "id1338", false]], "setxor() (arkouda.segarray method)": [[24, "arkouda.SegArray.setxor", false]], "setxor() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.setxor", false]], "setxor() (in module arkouda.segarray)": [[96, "arkouda.SegArray.setxor", false]], "setxor1d() (in module arkouda)": [[24, "arkouda.setxor1d", false], [98, "arkouda.setxor1d", false]], "setxor1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.setxor1d", false]], "shape (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.shape", false]], "shape (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.shape", false]], "shape (arkouda.categorical attribute)": [[24, "arkouda.Categorical.shape", false], [24, "id106", false], [24, "id14", false], [24, "id4", false], [24, "id48", false], [24, "id72", false], [88, "arkouda.Categorical.shape", false]], "shape (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.shape", false], [17, "id4", false]], "shape (arkouda.dataframe property)": [[24, "arkouda.DataFrame.shape", false], [24, "id163", false]], "shape (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.shape", false]], "shape (arkouda.index property)": [[24, "arkouda.Index.shape", false]], "shape (arkouda.index.index property)": [[25, "arkouda.index.Index.shape", false]], "shape (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.shape", false], [24, "id1068", false], [24, "id1139", false], [24, "id1210", false], [24, "id926", false], [24, "id997", false], [94, "arkouda.pdarray.shape", false]], "shape (arkouda.pdarray property)": [[24, "id1045", false], [24, "id1116", false], [24, "id1187", false], [24, "id1258", false], [24, "id917", false], [24, "id974", false]], "shape (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.shape", false]], "shape (arkouda.pdarrayclass.pdarray property)": [[37, "id4", false]], "shape (arkouda.series property)": [[24, "arkouda.Series.shape", false]], "shape (arkouda.series.series property)": [[49, "arkouda.series.Series.shape", false]], "shape (arkouda.sparray attribute)": [[24, "arkouda.sparray.shape", false], [24, "id1286", false]], "shape (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.shape", false], [51, "id6", false]], "shape (arkouda.strings attribute)": [[24, "arkouda.Strings.shape", false], [24, "id498", false], [24, "id574", false], [24, "id650", false], [24, "id726", false]], "shape (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.shape", false]], "shape() (arkouda.bigint method)": [[24, "arkouda.bigint.shape", false], [24, "id848", false]], "shape() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.shape", false]], "shape() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.shape", false]], "shape() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.shape", false]], "shape() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.shape", false]], "shape() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.shape", false]], "shape() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.shape", false]], "shape() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.shape", false]], "shape() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.shape", false]], "shape() (arkouda.str_ method)": [[24, "arkouda.str_.shape", false], [24, "id1339", false]], "shapes() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.shapes", false]], "shellhistoryretriever (class in arkouda.history)": [[23, "arkouda.history.ShellHistoryRetriever", false]], "short (class in arkouda)": [[24, "arkouda.short", false]], "short (class in arkouda.numpy)": [[35, "arkouda.numpy.short", false]], "shortdtype (class in arkouda)": [[24, "arkouda.ShortDType", false]], "shortdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ShortDType", false]], "show_int (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.show_int", false]], "show_int (arkouda.fields attribute)": [[24, "arkouda.Fields.show_int", false]], "shuffle() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.shuffle", false]], "shuffle() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.shuffle", false]], "shuffle() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.shuffle", false]], "shutdown() (in module arkouda.client)": [[18, "arkouda.client.shutdown", false]], "sign() (in module arkouda)": [[24, "arkouda.sign", false]], "sign() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.sign", false]], "sign() (in module arkouda.numpy)": [[35, "arkouda.numpy.sign", false]], "signedinteger (class in arkouda)": [[24, "arkouda.signedinteger", false]], "signedinteger (class in arkouda.numpy)": [[35, "arkouda.numpy.signedinteger", false]], "sin() (in module arkouda)": [[24, "arkouda.sin", false], [87, "arkouda.sin", false]], "sin() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.sin", false]], "sin() (in module arkouda.numpy)": [[35, "arkouda.numpy.sin", false]], "single (class in arkouda)": [[24, "arkouda.single", false]], "single (class in arkouda.numpy)": [[35, "arkouda.numpy.single", false]], "sinh() (in module arkouda)": [[24, "arkouda.sinh", false]], "sinh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.sinh", false]], "sinh() (in module arkouda.numpy)": [[35, "arkouda.numpy.sinh", false]], "size (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.size", false]], "size (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.size", false]], "size (arkouda.categorical attribute)": [[24, "arkouda.Categorical.size", false], [24, "id107", false], [24, "id11", false], [24, "id49", false], [24, "id5", false], [24, "id69", false], [88, "arkouda.Categorical.size", false]], "size (arkouda.categorical.categorical attribute)": [[17, "arkouda.categorical.Categorical.size", false], [17, "id5", false]], "size (arkouda.dataframe property)": [[24, "arkouda.DataFrame.size", false], [24, "id164", false]], "size (arkouda.dataframe.dataframe property)": [[20, "arkouda.dataframe.DataFrame.size", false]], "size (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.size", false], [24, "id247", false], [24, "id294", false], [24, "id341", false], [24, "id388", false], [24, "id435", false], [91, "arkouda.GroupBy.size", false]], "size (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.size", false]], "size (arkouda.pdarray attribute)": [[24, "arkouda.pdarray.size", false], [24, "id1046", false], [24, "id1066", false], [24, "id1117", false], [24, "id1137", false], [24, "id1188", false], [24, "id1208", false], [24, "id1259", false], [24, "id918", false], [24, "id924", false], [24, "id975", false], [24, "id995", false], [94, "arkouda.pdarray.size", false]], "size (arkouda.pdarrayclass.pdarray attribute)": [[37, "arkouda.pdarrayclass.pdarray.size", false], [37, "id5", false]], "size (arkouda.segarray attribute)": [[24, "arkouda.SegArray.size", false]], "size (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.size", false]], "size (arkouda.sparray attribute)": [[24, "arkouda.sparray.size", false], [24, "id1287", false]], "size (arkouda.sparrayclass.sparray attribute)": [[51, "arkouda.sparrayclass.sparray.size", false], [51, "id7", false]], "size (arkouda.strings attribute)": [[24, "arkouda.Strings.size", false], [24, "id495", false], [24, "id571", false], [24, "id647", false], [24, "id723", false]], "size (arkouda.strings.strings attribute)": [[53, "arkouda.strings.Strings.size", false]], "size() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.size", false]], "size() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.size", false]], "size() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.size", false]], "size() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.size", false]], "size() (arkouda.groupby method)": [[24, "id244", false], [24, "id282", false], [24, "id329", false], [24, "id376", false], [24, "id423", false], [24, "id470", false], [91, "id0", false]], "size() (arkouda.groupbyclass.groupby method)": [[22, "id0", false]], "size() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.size", false]], "size() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.size", false]], "size() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.size", false]], "size() (arkouda.str_ method)": [[24, "arkouda.str_.size", false], [24, "id1340", false]], "skew() (in module arkouda)": [[24, "arkouda.skew", false]], "slice_bits() (arkouda.pdarray method)": [[24, "arkouda.pdarray.slice_bits", false], [24, "id1047", false], [24, "id1118", false], [24, "id1189", false], [24, "id1260", false], [24, "id976", false]], "slice_bits() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.slice_bits", false]], "smallest_normal (arkouda.array_api.data_type_functions.finfo_object attribute)": [[6, "arkouda.array_api.data_type_functions.finfo_object.smallest_normal", false]], "smallest_normal (arkouda.finfo attribute)": [[24, "arkouda.finfo.smallest_normal", false]], "smallest_normal (arkouda.finfo property)": [[24, "id873", false]], "smallest_normal (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.smallest_normal", false]], "smallest_normal (arkouda.numpy.finfo property)": [[35, "id0", false]], "smallest_subnormal (arkouda.finfo attribute)": [[24, "arkouda.finfo.smallest_subnormal", false]], "smallest_subnormal (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.smallest_subnormal", false]], "snapshot() (in module arkouda)": [[24, "arkouda.snapshot", false]], "snapshot() (in module arkouda.io)": [[27, "arkouda.io.snapshot", false]], "sort() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.sort", false]], "sort() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.sort", false]], "sort() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.sort", false]], "sort() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.sort", false]], "sort() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.sort", false]], "sort() (arkouda.str_ method)": [[24, "arkouda.str_.sort", false], [24, "id1341", false]], "sort() (in module arkouda)": [[24, "arkouda.sort", false]], "sort() (in module arkouda.array_api.sorting_functions)": [[14, "arkouda.array_api.sorting_functions.sort", false]], "sort() (in module arkouda.sorting)": [[50, "arkouda.sorting.sort", false]], "sort_index() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.sort_index", false], [24, "id165", false]], "sort_index() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.sort_index", false]], "sort_index() (arkouda.series method)": [[24, "arkouda.Series.sort_index", false]], "sort_index() (arkouda.series.series method)": [[49, "arkouda.series.Series.sort_index", false]], "sort_index() (in module arkouda.series)": [[97, "arkouda.Series.sort_index", false]], "sort_values() (arkouda.categorical method)": [[24, "arkouda.Categorical.sort_values", false], [24, "id108", false], [24, "id50", false]], "sort_values() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.sort_values", false]], "sort_values() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.sort_values", false], [24, "id166", false]], "sort_values() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.sort_values", false]], "sort_values() (arkouda.series method)": [[24, "arkouda.Series.sort_values", false]], "sort_values() (arkouda.series.series method)": [[49, "arkouda.series.Series.sort_values", false]], "sort_values() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.sort_values", false]], "sort_values() (in module arkouda.series)": [[97, "arkouda.Series.sort_values", false]], "sparray (class in arkouda)": [[24, "arkouda.sparray", false]], "sparray (class in arkouda.sparrayclass)": [[51, "arkouda.sparrayclass.sparray", false]], "sparse_matrix_matrix_mult() (in module arkouda.sparsematrix)": [[52, "arkouda.sparsematrix.sparse_matrix_matrix_mult", false]], "sparse_sum_help() (in module arkouda.util)": [[56, "arkouda.util.sparse_sum_help", false]], "special_objtype (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.special_objType", false]], "special_objtype (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.special_objType", false]], "special_objtype (arkouda.client_dtypes.ipv4 attribute)": [[19, "arkouda.client_dtypes.IPv4.special_objType", false]], "special_objtype (arkouda.datetime attribute)": [[24, "arkouda.Datetime.special_objType", false], [24, "id196", false], [24, "id229", false]], "special_objtype (arkouda.ipv4 attribute)": [[24, "arkouda.IPv4.special_objType", false]], "special_objtype (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.special_objType", false]], "special_objtype (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.special_objType", false]], "special_objtype (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.special_objType", false], [24, "id806", false]], "split() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.split", false]], "split() (arkouda.strings method)": [[24, "arkouda.Strings.split", false], [24, "id552", false], [24, "id628", false], [24, "id704", false], [24, "id780", false], [100, "arkouda.Strings.split", false]], "split() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.split", false]], "sqrt() (in module arkouda)": [[24, "arkouda.sqrt", false]], "sqrt() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.sqrt", false]], "sqrt() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.sqrt", false]], "square() (in module arkouda)": [[24, "arkouda.square", false]], "square() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.square", false]], "square() (in module arkouda.numpy)": [[35, "arkouda.numpy.square", false]], "squeeze() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.squeeze", false]], "squeeze() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.squeeze", false]], "squeeze() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.squeeze", false]], "squeeze() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.squeeze", false]], "squeeze() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.squeeze", false]], "squeeze() (arkouda.str_ method)": [[24, "arkouda.str_.squeeze", false], [24, "id1342", false]], "squeeze() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.squeeze", false]], "stack() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.stack", false]], "standard_exponential() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.standard_exponential", false]], "standard_exponential() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.standard_exponential", false]], "standard_exponential() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.standard_exponential", false]], "standard_normal() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.standard_normal", false]], "standard_normal() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.standard_normal", false]], "standard_normal() (in module arkouda)": [[24, "arkouda.standard_normal", false]], "standard_normal() (in module arkouda.numpy.random)": [[36, "arkouda.numpy.random.standard_normal", false]], "standard_normal() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.standard_normal", false]], "standard_normal() (in module arkouda.random)": [[42, "arkouda.random.standard_normal", false]], "standard_normal() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.standard_normal", false]], "standardize_categories() (arkouda.categorical class method)": [[24, "arkouda.Categorical.standardize_categories", false], [24, "id109", false], [24, "id51", false]], "standardize_categories() (arkouda.categorical.categorical class method)": [[17, "arkouda.categorical.Categorical.standardize_categories", false]], "start() (arkouda.match.match method)": [[31, "arkouda.match.Match.start", false], [100, "arkouda.match.Match.start", false]], "starts (arkouda.matcher.matcher attribute)": [[32, "arkouda.matcher.Matcher.starts", false]], "startswith() (arkouda.categorical method)": [[24, "arkouda.Categorical.startswith", false], [24, "id110", false], [24, "id52", false], [88, "arkouda.Categorical.startswith", false]], "startswith() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.startswith", false]], "startswith() (arkouda.strings method)": [[24, "arkouda.Strings.startswith", false], [24, "id553", false], [24, "id629", false], [24, "id705", false], [24, "id781", false], [100, "arkouda.Strings.startswith", false]], "startswith() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.startswith", false]], "statistic (arkouda.power_divergenceresult attribute)": [[24, "arkouda.Power_divergenceResult.statistic", false]], "statistic (arkouda.scipy.power_divergenceresult attribute)": [[44, "arkouda.scipy.Power_divergenceResult.statistic", false]], "std() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.std", false]], "std() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.std", false]], "std() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.std", false]], "std() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.std", false]], "std() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.std", false]], "std() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.std", false]], "std() (arkouda.groupby method)": [[24, "arkouda.GroupBy.std", false], [24, "id283", false], [24, "id330", false], [24, "id377", false], [24, "id424", false], [24, "id471", false], [91, "arkouda.GroupBy.std", false]], "std() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.std", false]], "std() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.std", false]], "std() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.std", false]], "std() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.std", false]], "std() (arkouda.pdarray method)": [[24, "arkouda.pdarray.std", false], [24, "id1048", false], [24, "id1119", false], [24, "id1190", false], [24, "id1261", false], [24, "id977", false], [92, "arkouda.pdarray.std", false]], "std() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.std", false]], "std() (arkouda.series method)": [[24, "arkouda.Series.std", false]], "std() (arkouda.series.series method)": [[49, "arkouda.series.Series.std", false]], "std() (arkouda.str_ method)": [[24, "arkouda.str_.std", false], [24, "id1343", false]], "std() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.std", false]], "std() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.std", false], [24, "id807", false]], "std() (in module arkouda)": [[24, "arkouda.std", false], [87, "arkouda.std", false]], "std() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.std", false]], "std() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.std", false]], "stick() (arkouda.strings method)": [[24, "arkouda.Strings.stick", false], [24, "id554", false], [24, "id630", false], [24, "id706", false], [24, "id782", false], [100, "arkouda.Strings.stick", false]], "stick() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.stick", false]], "str() (arkouda.dtype method)": [[24, "arkouda.DType.STR", false]], "str() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.STR", false]], "str() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.STR", false]], "str() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.STR", false]], "str_ (class in arkouda)": [[24, "arkouda.str_", false], [24, "id1288", false]], "str_ (class in arkouda.dtypes)": [[21, "arkouda.dtypes.str_", false]], "str_ (class in arkouda.numpy)": [[35, "arkouda.numpy.str_", false]], "str_ (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.str_", false]], "str_acc() (arkouda.series method)": [[24, "arkouda.Series.str_acc", false]], "str_acc() (arkouda.series.series method)": [[49, "arkouda.series.Series.str_acc", false]], "str_scalars (class in arkouda)": [[24, "arkouda.str_scalars", false]], "str_scalars (class in arkouda.dtypes)": [[21, "arkouda.dtypes.str_scalars", false]], "str_scalars (class in arkouda.numpy)": [[35, "arkouda.numpy.str_scalars", false]], "str_scalars (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.str_scalars", false]], "strdtype (class in arkouda)": [[24, "arkouda.StrDType", false]], "strdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.StrDType", false]], "strict() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.strict", false]], "strict() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.strict", false]], "strides() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.strides", false]], "strides() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.strides", false]], "strides() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.strides", false]], "strides() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.strides", false]], "strides() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.strides", false]], "strides() (arkouda.str_ method)": [[24, "arkouda.str_.strides", false], [24, "id1344", false]], "string_operators() (in module arkouda)": [[24, "arkouda.string_operators", false]], "string_operators() (in module arkouda.accessor)": [[2, "arkouda.accessor.string_operators", false]], "stringaccessor (class in arkouda)": [[24, "arkouda.StringAccessor", false]], "stringaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.StringAccessor", false]], "strings (class in arkouda)": [[24, "arkouda.Strings", false], [24, "id493", false], [24, "id569", false], [24, "id645", false], [24, "id721", false]], "strings (class in arkouda.strings)": [[53, "arkouda.strings.Strings", false]], "strip() (arkouda.strings method)": [[24, "arkouda.Strings.strip", false], [24, "id555", false], [24, "id631", false], [24, "id707", false], [24, "id783", false]], "strip() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.strip", false]], "sub() (arkouda.matcher.matcher method)": [[32, "arkouda.matcher.Matcher.sub", false]], "sub() (arkouda.strings method)": [[24, "arkouda.Strings.sub", false], [24, "id556", false], [24, "id632", false], [24, "id708", false], [24, "id784", false], [100, "arkouda.Strings.sub", false]], "sub() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.sub", false]], "subn() (arkouda.strings method)": [[24, "arkouda.Strings.subn", false], [24, "id557", false], [24, "id633", false], [24, "id709", false], [24, "id785", false], [100, "arkouda.Strings.subn", false]], "subn() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.subn", false]], "subtract() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.subtract", false]], "sum() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.sum", false]], "sum() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.sum", false]], "sum() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.sum", false]], "sum() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.sum", false]], "sum() (arkouda.datetime method)": [[24, "arkouda.Datetime.sum", false], [24, "id197", false], [24, "id230", false]], "sum() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.sum", false]], "sum() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.sum", false]], "sum() (arkouda.groupby method)": [[24, "arkouda.GroupBy.sum", false], [24, "id284", false], [24, "id331", false], [24, "id378", false], [24, "id425", false], [24, "id472", false], [91, "arkouda.GroupBy.sum", false]], "sum() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.sum", false]], "sum() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.sum", false]], "sum() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.sum", false]], "sum() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.sum", false]], "sum() (arkouda.pdarray method)": [[24, "arkouda.pdarray.sum", false], [24, "id1049", false], [24, "id1120", false], [24, "id1191", false], [24, "id1262", false], [24, "id978", false], [92, "arkouda.pdarray.sum", false]], "sum() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.sum", false]], "sum() (arkouda.segarray method)": [[24, "arkouda.SegArray.sum", false]], "sum() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.sum", false]], "sum() (arkouda.series method)": [[24, "arkouda.Series.sum", false]], "sum() (arkouda.series.series method)": [[49, "arkouda.series.Series.sum", false]], "sum() (arkouda.str_ method)": [[24, "arkouda.str_.sum", false], [24, "id1345", false]], "sum() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.sum", false]], "sum() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.sum", false]], "sum() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.sum", false], [24, "id808", false]], "sum() (in module arkouda)": [[24, "arkouda.sum", false], [87, "arkouda.sum", false]], "sum() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.sum", false]], "sum() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.sum", false]], "supported_opeq (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_opeq", false], [24, "id198", false], [24, "id231", false]], "supported_opeq (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_opeq", false]], "supported_opeq (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_opeq", false]], "supported_opeq (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_opeq", false], [24, "id809", false]], "supported_with_datetime (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_datetime", false], [24, "id199", false], [24, "id232", false]], "supported_with_datetime (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_datetime", false]], "supported_with_datetime (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_datetime", false]], "supported_with_datetime (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_datetime", false], [24, "id810", false]], "supported_with_pdarray (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_pdarray", false], [24, "id200", false], [24, "id233", false]], "supported_with_pdarray (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_pdarray", false]], "supported_with_pdarray (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_pdarray", false]], "supported_with_pdarray (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_pdarray", false], [24, "id811", false]], "supported_with_r_datetime (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_r_datetime", false], [24, "id201", false], [24, "id234", false]], "supported_with_r_datetime (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_datetime", false]], "supported_with_r_datetime (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_datetime", false]], "supported_with_r_datetime (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_r_datetime", false], [24, "id812", false]], "supported_with_r_pdarray (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_r_pdarray", false], [24, "id202", false], [24, "id235", false]], "supported_with_r_pdarray (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_pdarray", false]], "supported_with_r_pdarray (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_pdarray", false]], "supported_with_r_pdarray (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_r_pdarray", false], [24, "id813", false]], "supported_with_r_timedelta (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_r_timedelta", false], [24, "id203", false], [24, "id236", false]], "supported_with_r_timedelta (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_timedelta", false]], "supported_with_r_timedelta (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_timedelta", false]], "supported_with_r_timedelta (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_r_timedelta", false], [24, "id814", false]], "supported_with_timedelta (arkouda.datetime attribute)": [[24, "arkouda.Datetime.supported_with_timedelta", false], [24, "id204", false], [24, "id237", false]], "supported_with_timedelta (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_timedelta", false]], "supported_with_timedelta (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_timedelta", false]], "supported_with_timedelta (arkouda.timedelta attribute)": [[24, "arkouda.Timedelta.supported_with_timedelta", false], [24, "id815", false]], "swapaxes() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.swapaxes", false]], "swapaxes() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.swapaxes", false]], "swapaxes() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.swapaxes", false]], "swapaxes() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.swapaxes", false]], "swapaxes() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.swapaxes", false]], "swapaxes() (arkouda.str_ method)": [[24, "arkouda.str_.swapaxes", false], [24, "id1346", false]], "symmetric_difference() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes method)": [[24, "arkouda.DTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.inttypes method)": [[24, "arkouda.intTypes.symmetric_difference", false], [24, "id892", false], [24, "id901", false]], "symmetric_difference() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.symmetric_difference", false]], "symmetric_difference() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.symmetric_difference", false]], "t (arkouda.array_api.array property)": [[8, "arkouda.array_api.Array.T", false]], "t (arkouda.array_api.array_object.array property)": [[4, "arkouda.array_api.array_object.Array.T", false]], "t() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.T", false]], "t() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.T", false]], "t() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.T", false]], "t() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.T", false]], "t() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.T", false]], "t() (arkouda.str_ method)": [[24, "arkouda.str_.T", false], [24, "id1289", false]], "tail() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.tail", false], [24, "id167", false]], "tail() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.tail", false]], "tail() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.tail", false]], "tail() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.tail", false]], "tail() (arkouda.groupby method)": [[24, "arkouda.GroupBy.tail", false], [24, "id285", false], [24, "id332", false], [24, "id379", false], [24, "id426", false], [24, "id473", false], [91, "arkouda.GroupBy.tail", false]], "tail() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.tail", false]], "tail() (arkouda.series method)": [[24, "arkouda.Series.tail", false]], "tail() (arkouda.series.series method)": [[49, "arkouda.series.Series.tail", false]], "tail() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.tail", false]], "tail() (in module arkouda.series)": [[97, "arkouda.Series.tail", false]], "take() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.take", false]], "take() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.take", false]], "take() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.take", false]], "take() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.take", false]], "take() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.take", false]], "take() (arkouda.str_ method)": [[24, "arkouda.str_.take", false], [24, "id1347", false]], "take() (in module arkouda.array_api.indexing_functions)": [[9, "arkouda.array_api.indexing_functions.take", false]], "tan() (in module arkouda)": [[24, "arkouda.tan", false]], "tan() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.tan", false]], "tan() (in module arkouda.numpy)": [[35, "arkouda.numpy.tan", false]], "tanh() (in module arkouda)": [[24, "arkouda.tanh", false]], "tanh() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.tanh", false]], "tanh() (in module arkouda.numpy)": [[35, "arkouda.numpy.tanh", false]], "tensordot() (in module arkouda.array_api.linalg)": [[10, "arkouda.array_api.linalg.tensordot", false]], "tile() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.tile", false]], "timedelta (class in arkouda)": [[24, "arkouda.Timedelta", false], [24, "id797", false]], "timedelta (class in arkouda.timeclass)": [[55, "arkouda.timeclass.Timedelta", false]], "timedelta64 (class in arkouda)": [[24, "arkouda.timedelta64", false]], "timedelta64 (class in arkouda.numpy)": [[35, "arkouda.numpy.timedelta64", false]], "timedelta64dtype (class in arkouda)": [[24, "arkouda.TimeDelta64DType", false]], "timedelta64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.TimeDelta64DType", false]], "timedelta_range() (in module arkouda)": [[24, "arkouda.timedelta_range", false], [24, "id1356", false]], "timedelta_range() (in module arkouda.timeclass)": [[55, "arkouda.timeclass.timedelta_range", false]], "tiny (arkouda.finfo attribute)": [[24, "arkouda.finfo.tiny", false]], "tiny (arkouda.finfo property)": [[24, "id874", false]], "tiny (arkouda.numpy.finfo attribute)": [[35, "arkouda.numpy.finfo.tiny", false]], "tiny (arkouda.numpy.finfo property)": [[35, "id11", false]], "title() (arkouda.strings method)": [[24, "arkouda.Strings.title", false], [24, "id558", false], [24, "id634", false], [24, "id710", false], [24, "id786", false]], "title() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.title", false]], "to_csv() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_csv", false], [24, "id168", false]], "to_csv() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_csv", false]], "to_csv() (arkouda.index method)": [[24, "arkouda.Index.to_csv", false]], "to_csv() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_csv", false]], "to_csv() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_csv", false], [24, "id1050", false], [24, "id1121", false], [24, "id1192", false], [24, "id1263", false], [24, "id979", false]], "to_csv() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_csv", false]], "to_csv() (arkouda.strings method)": [[24, "arkouda.Strings.to_csv", false], [24, "id559", false], [24, "id635", false], [24, "id711", false], [24, "id787", false]], "to_csv() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_csv", false]], "to_csv() (in module arkouda)": [[24, "arkouda.to_csv", false]], "to_csv() (in module arkouda.io)": [[27, "arkouda.io.to_csv", false]], "to_cuda() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_cuda", false], [24, "id1053", false], [24, "id1124", false], [24, "id1195", false], [24, "id1266", false], [24, "id982", false]], "to_cuda() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_cuda", false]], "to_dataframe() (arkouda.series method)": [[24, "arkouda.Series.to_dataframe", false]], "to_dataframe() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_dataframe", false]], "to_device() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.to_device", false]], "to_device() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.to_device", false]], "to_dict() (arkouda.index method)": [[24, "arkouda.Index.to_dict", false]], "to_dict() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_dict", false]], "to_dict() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_dict", false]], "to_dict() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_dict", false]], "to_hdf() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_hdf", false], [24, "id111", false], [24, "id53", false]], "to_hdf() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_hdf", false]], "to_hdf() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.to_hdf", false]], "to_hdf() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_hdf", false], [24, "id169", false]], "to_hdf() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_hdf", false]], "to_hdf() (arkouda.groupby method)": [[24, "arkouda.GroupBy.to_hdf", false], [24, "id286", false], [24, "id333", false], [24, "id380", false], [24, "id427", false], [24, "id474", false], [91, "arkouda.GroupBy.to_hdf", false]], "to_hdf() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.to_hdf", false]], "to_hdf() (arkouda.index method)": [[24, "arkouda.Index.to_hdf", false]], "to_hdf() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_hdf", false]], "to_hdf() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_hdf", false]], "to_hdf() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.to_hdf", false]], "to_hdf() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_hdf", false]], "to_hdf() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_hdf", false], [24, "id1054", false], [24, "id1125", false], [24, "id1196", false], [24, "id1267", false], [24, "id983", false]], "to_hdf() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_hdf", false]], "to_hdf() (arkouda.segarray method)": [[24, "arkouda.SegArray.to_hdf", false]], "to_hdf() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.to_hdf", false]], "to_hdf() (arkouda.strings method)": [[24, "arkouda.Strings.to_hdf", false], [24, "id560", false], [24, "id636", false], [24, "id712", false], [24, "id788", false]], "to_hdf() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_hdf", false]], "to_hdf() (in module arkouda)": [[24, "arkouda.to_hdf", false]], "to_hdf() (in module arkouda.io)": [[27, "arkouda.io.to_hdf", false]], "to_list() (arkouda.bitvector method)": [[24, "arkouda.BitVector.to_list", false]], "to_list() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_list", false], [24, "id112", false], [24, "id54", false]], "to_list() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_list", false]], "to_list() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.to_list", false]], "to_list() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.to_list", false]], "to_list() (arkouda.index method)": [[24, "arkouda.Index.to_list", false]], "to_list() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_list", false]], "to_list() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_list", false]], "to_list() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.to_list", false]], "to_list() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_list", false]], "to_list() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_list", false], [24, "id1055", false], [24, "id1126", false], [24, "id1197", false], [24, "id1268", false], [24, "id984", false]], "to_list() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_list", false]], "to_list() (arkouda.segarray method)": [[24, "arkouda.SegArray.to_list", false]], "to_list() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.to_list", false]], "to_list() (arkouda.series method)": [[24, "arkouda.Series.to_list", false]], "to_list() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_list", false]], "to_list() (arkouda.strings method)": [[24, "arkouda.Strings.to_list", false], [24, "id561", false], [24, "id637", false], [24, "id713", false], [24, "id789", false]], "to_list() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_list", false]], "to_markdown() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_markdown", false], [24, "id170", false]], "to_markdown() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_markdown", false]], "to_markdown() (arkouda.series method)": [[24, "arkouda.Series.to_markdown", false]], "to_markdown() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_markdown", false]], "to_ndarray() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.to_ndarray", false]], "to_ndarray() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.to_ndarray", false]], "to_ndarray() (arkouda.bitvector method)": [[24, "arkouda.BitVector.to_ndarray", false]], "to_ndarray() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_ndarray", false], [24, "id113", false], [24, "id55", false]], "to_ndarray() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_ndarray", false]], "to_ndarray() (arkouda.client_dtypes.bitvector method)": [[19, "arkouda.client_dtypes.BitVector.to_ndarray", false]], "to_ndarray() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.to_ndarray", false]], "to_ndarray() (arkouda.index method)": [[24, "arkouda.Index.to_ndarray", false]], "to_ndarray() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_ndarray", false]], "to_ndarray() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_ndarray", false]], "to_ndarray() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.to_ndarray", false]], "to_ndarray() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_ndarray", false]], "to_ndarray() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_ndarray", false], [24, "id1056", false], [24, "id1127", false], [24, "id1198", false], [24, "id1269", false], [24, "id985", false]], "to_ndarray() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_ndarray", false]], "to_ndarray() (arkouda.segarray method)": [[24, "arkouda.SegArray.to_ndarray", false]], "to_ndarray() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.to_ndarray", false]], "to_ndarray() (arkouda.series method)": [[24, "arkouda.Series.to_ndarray", false]], "to_ndarray() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_ndarray", false]], "to_ndarray() (arkouda.strings method)": [[24, "arkouda.Strings.to_ndarray", false], [24, "id562", false], [24, "id638", false], [24, "id714", false], [24, "id790", false]], "to_ndarray() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_ndarray", false]], "to_ndarray() (in module arkouda.categorical)": [[88, "arkouda.Categorical.to_ndarray", false]], "to_ndarray() (in module arkouda.pdarray)": [[84, "arkouda.pdarray.to_ndarray", false], [94, "arkouda.pdarray.to_ndarray", false]], "to_ndarray() (in module arkouda.segarray)": [[96, "arkouda.SegArray.to_ndarray", false]], "to_ndarray() (in module arkouda.strings)": [[84, "arkouda.Strings.to_ndarray", false], [100, "arkouda.Strings.to_ndarray", false]], "to_pandas() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_pandas", false], [24, "id114", false], [24, "id56", false]], "to_pandas() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_pandas", false]], "to_pandas() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_pandas", false], [24, "id171", false]], "to_pandas() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_pandas", false]], "to_pandas() (arkouda.datetime method)": [[24, "arkouda.Datetime.to_pandas", false], [24, "id205", false], [24, "id238", false]], "to_pandas() (arkouda.index method)": [[24, "arkouda.Index.to_pandas", false]], "to_pandas() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_pandas", false]], "to_pandas() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.to_pandas", false]], "to_pandas() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.to_pandas", false]], "to_pandas() (arkouda.series method)": [[24, "arkouda.Series.to_pandas", false]], "to_pandas() (arkouda.series.series method)": [[49, "arkouda.series.Series.to_pandas", false]], "to_pandas() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.to_pandas", false]], "to_pandas() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.to_pandas", false]], "to_pandas() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.to_pandas", false], [24, "id816", false]], "to_pandas() (in module arkouda.dataframe)": [[90, "arkouda.DataFrame.to_pandas", false]], "to_pandas() (in module arkouda.series)": [[97, "arkouda.Series.to_pandas", false]], "to_parquet() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_parquet", false], [24, "id115", false], [24, "id57", false]], "to_parquet() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_parquet", false]], "to_parquet() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.to_parquet", false], [24, "id172", false]], "to_parquet() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.to_parquet", false]], "to_parquet() (arkouda.index method)": [[24, "arkouda.Index.to_parquet", false]], "to_parquet() (arkouda.index.index method)": [[25, "arkouda.index.Index.to_parquet", false]], "to_parquet() (arkouda.pdarray method)": [[24, "arkouda.pdarray.to_parquet", false], [24, "id1057", false], [24, "id1128", false], [24, "id1199", false], [24, "id1270", false], [24, "id986", false]], "to_parquet() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.to_parquet", false]], "to_parquet() (arkouda.segarray method)": [[24, "arkouda.SegArray.to_parquet", false]], "to_parquet() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.to_parquet", false]], "to_parquet() (arkouda.strings method)": [[24, "arkouda.Strings.to_parquet", false], [24, "id563", false], [24, "id639", false], [24, "id715", false], [24, "id791", false]], "to_parquet() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.to_parquet", false]], "to_parquet() (in module arkouda)": [[24, "arkouda.to_parquet", false]], "to_parquet() (in module arkouda.io)": [[27, "arkouda.io.to_parquet", false]], "to_pdarray() (arkouda.sparray method)": [[24, "arkouda.sparray.to_pdarray", false]], "to_pdarray() (arkouda.sparrayclass.sparray method)": [[51, "arkouda.sparrayclass.sparray.to_pdarray", false]], "to_strings() (arkouda.categorical method)": [[24, "arkouda.Categorical.to_strings", false], [24, "id116", false], [24, "id58", false]], "to_strings() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.to_strings", false]], "to_zarr() (in module arkouda)": [[24, "arkouda.to_zarr", false]], "to_zarr() (in module arkouda.io)": [[27, "arkouda.io.to_zarr", false]], "tobytes() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.tobytes", false]], "tobytes() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.tobytes", false]], "tobytes() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.tobytes", false]], "tobytes() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.tobytes", false]], "tobytes() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.tobytes", false]], "tobytes() (arkouda.str_ method)": [[24, "arkouda.str_.tobytes", false], [24, "id1348", false]], "tofile() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.tofile", false]], "tofile() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.tofile", false]], "tofile() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.tofile", false]], "tofile() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.tofile", false]], "tofile() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.tofile", false]], "tofile() (arkouda.str_ method)": [[24, "arkouda.str_.tofile", false], [24, "id1349", false]], "tolist() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.tolist", false]], "tolist() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.tolist", false]], "tolist() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.tolist", false]], "tolist() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.tolist", false]], "tolist() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.tolist", false]], "tolist() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.tolist", false]], "tolist() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.tolist", false]], "tolist() (arkouda.str_ method)": [[24, "arkouda.str_.tolist", false], [24, "id1350", false]], "tooharderror (class in arkouda)": [[24, "arkouda.TooHardError", false]], "tooharderror (class in arkouda.numpy)": [[35, "arkouda.numpy.TooHardError", false]], "topn() (arkouda.series method)": [[24, "arkouda.Series.topn", false]], "topn() (arkouda.series.series method)": [[49, "arkouda.series.Series.topn", false]], "topn() (in module arkouda.series)": [[97, "arkouda.Series.topn", false]], "tostring() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.tostring", false]], "tostring() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.tostring", false]], "tostring() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.tostring", false]], "tostring() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.tostring", false]], "tostring() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.tostring", false]], "tostring() (arkouda.str_ method)": [[24, "arkouda.str_.tostring", false], [24, "id1351", false]], "total_seconds() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.total_seconds", false]], "total_seconds() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.total_seconds", false], [24, "id817", false]], "trace() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.trace", false]], "trace() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.trace", false]], "trace() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.trace", false]], "trace() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.trace", false]], "trace() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.trace", false]], "trace() (arkouda.str_ method)": [[24, "arkouda.str_.trace", false], [24, "id1352", false]], "transfer() (arkouda.categorical method)": [[24, "arkouda.Categorical.transfer", false], [24, "id117", false], [24, "id59", false]], "transfer() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.transfer", false]], "transfer() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.transfer", false], [24, "id173", false]], "transfer() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.transfer", false]], "transfer() (arkouda.pdarray method)": [[24, "arkouda.pdarray.transfer", false], [24, "id1058", false], [24, "id1129", false], [24, "id1200", false], [24, "id1271", false], [24, "id987", false]], "transfer() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.transfer", false]], "transfer() (arkouda.segarray method)": [[24, "arkouda.SegArray.transfer", false]], "transfer() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.transfer", false]], "transfer() (arkouda.strings method)": [[24, "arkouda.Strings.transfer", false], [24, "id564", false], [24, "id640", false], [24, "id716", false], [24, "id792", false]], "transfer() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.transfer", false]], "transpose() (arkouda.array_api.array method)": [[8, "arkouda.array_api.Array.transpose", false]], "transpose() (arkouda.array_api.array_object.array method)": [[4, "arkouda.array_api.array_object.Array.transpose", false]], "transpose() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.transpose", false]], "transpose() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.transpose", false]], "transpose() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.transpose", false]], "transpose() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.transpose", false]], "transpose() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.transpose", false]], "transpose() (arkouda.str_ method)": [[24, "arkouda.str_.transpose", false], [24, "id1353", false]], "transpose() (in module arkouda)": [[24, "arkouda.transpose", false]], "transpose() (in module arkouda.numpy)": [[35, "arkouda.numpy.transpose", false]], "tril() (in module arkouda)": [[24, "arkouda.tril", false]], "tril() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.tril", false]], "tril() (in module arkouda.numpy)": [[35, "arkouda.numpy.tril", false]], "triu() (in module arkouda)": [[24, "arkouda.triu", false]], "triu() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.triu", false]], "triu() (in module arkouda.numpy)": [[35, "arkouda.numpy.triu", false]], "true_ (class in arkouda)": [[24, "arkouda.True_", false]], "true_ (class in arkouda.numpy)": [[35, "arkouda.numpy.True_", false]], "trunc() (in module arkouda)": [[24, "arkouda.trunc", false]], "trunc() (in module arkouda.array_api.elementwise_functions)": [[7, "arkouda.array_api.elementwise_functions.trunc", false]], "trunc() (in module arkouda.numpy)": [[35, "arkouda.numpy.trunc", false]], "type() (arkouda.bigint method)": [[24, "arkouda.bigint.type", false], [24, "id849", false]], "type() (arkouda.dtypes.bigint method)": [[21, "arkouda.dtypes.bigint.type", false]], "type() (arkouda.numpy.bigint method)": [[35, "arkouda.numpy.bigint.type", false]], "type() (arkouda.numpy.dtypes.bigint method)": [[34, "arkouda.numpy.dtypes.bigint.type", false]], "typename() (in module arkouda)": [[24, "arkouda.typename", false]], "typename() (in module arkouda.numpy)": [[35, "arkouda.numpy.typename", false]], "ubyte (class in arkouda)": [[24, "arkouda.ubyte", false]], "ubyte (class in arkouda.numpy)": [[35, "arkouda.numpy.ubyte", false]], "ubytedtype (class in arkouda)": [[24, "arkouda.UByteDType", false]], "ubytedtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UByteDType", false]], "uint (class in arkouda)": [[24, "arkouda.uint", false]], "uint (class in arkouda.numpy)": [[35, "arkouda.numpy.uint", false]], "uint() (arkouda.dtype method)": [[24, "arkouda.DType.UINT", false]], "uint() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT", false]], "uint() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT", false]], "uint() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT", false]], "uint16 (class in arkouda)": [[24, "arkouda.uint16", false]], "uint16 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.uint16", false]], "uint16 (class in arkouda.numpy)": [[35, "arkouda.numpy.uint16", false]], "uint16 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.uint16", false]], "uint16() (arkouda.dtype method)": [[24, "arkouda.DType.UINT16", false]], "uint16() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT16", false]], "uint16() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT16", false]], "uint16() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT16", false]], "uint16dtype (class in arkouda)": [[24, "arkouda.UInt16DType", false]], "uint16dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UInt16DType", false]], "uint32 (class in arkouda)": [[24, "arkouda.uint32", false]], "uint32 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.uint32", false]], "uint32 (class in arkouda.numpy)": [[35, "arkouda.numpy.uint32", false]], "uint32 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.uint32", false]], "uint32() (arkouda.dtype method)": [[24, "arkouda.DType.UINT32", false]], "uint32() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT32", false]], "uint32() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT32", false]], "uint32() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT32", false]], "uint32dtype (class in arkouda)": [[24, "arkouda.UInt32DType", false]], "uint32dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UInt32DType", false]], "uint64 (class in arkouda)": [[24, "arkouda.uint64", false]], "uint64 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.uint64", false]], "uint64 (class in arkouda.numpy)": [[35, "arkouda.numpy.uint64", false]], "uint64 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.uint64", false]], "uint64() (arkouda.dtype method)": [[24, "arkouda.DType.UINT64", false]], "uint64() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT64", false]], "uint64() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT64", false]], "uint64() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT64", false]], "uint64dtype (class in arkouda)": [[24, "arkouda.UInt64DType", false]], "uint64dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UInt64DType", false]], "uint8 (class in arkouda)": [[24, "arkouda.uint8", false]], "uint8 (class in arkouda.dtypes)": [[21, "arkouda.dtypes.uint8", false]], "uint8 (class in arkouda.numpy)": [[35, "arkouda.numpy.uint8", false]], "uint8 (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.uint8", false]], "uint8() (arkouda.dtype method)": [[24, "arkouda.DType.UINT8", false]], "uint8() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.UINT8", false]], "uint8() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.UINT8", false]], "uint8() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.UINT8", false]], "uint8dtype (class in arkouda)": [[24, "arkouda.UInt8DType", false]], "uint8dtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UInt8DType", false]], "uintc (class in arkouda)": [[24, "arkouda.uintc", false]], "uintc (class in arkouda.numpy)": [[35, "arkouda.numpy.uintc", false]], "uintdtype (class in arkouda)": [[24, "arkouda.UIntDType", false]], "uintdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UIntDType", false]], "uintp (class in arkouda)": [[24, "arkouda.uintp", false]], "uintp (class in arkouda.numpy)": [[35, "arkouda.numpy.uintp", false]], "ulongdtype (class in arkouda)": [[24, "arkouda.ULongDType", false]], "ulongdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ULongDType", false]], "ulonglong (class in arkouda)": [[24, "arkouda.ulonglong", false]], "ulonglong (class in arkouda.numpy)": [[35, "arkouda.numpy.ulonglong", false]], "ulonglongdtype (class in arkouda)": [[24, "arkouda.ULongLongDType", false]], "ulonglongdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.ULongLongDType", false]], "uniform() (arkouda.numpy.random.generator method)": [[36, "arkouda.numpy.random.Generator.uniform", false]], "uniform() (arkouda.random.generator method)": [[42, "arkouda.random.Generator.uniform", false]], "uniform() (in module arkouda)": [[24, "arkouda.uniform", false]], "uniform() (in module arkouda.numpy.random)": [[36, "arkouda.numpy.random.uniform", false]], "uniform() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.uniform", false]], "uniform() (in module arkouda.random)": [[42, "arkouda.random.uniform", false]], "uniform() (in module arkouda.random.generator)": [[95, "arkouda.random.Generator.uniform", false]], "union (class in arkouda.dtypes)": [[21, "arkouda.dtypes.Union", false]], "union (class in arkouda.numpy.dtypes)": [[34, "arkouda.numpy.dtypes.Union", false]], "union() (arkouda.arkouda_supported_dtypes method)": [[24, "arkouda.ARKOUDA_SUPPORTED_DTYPES.union", false]], "union() (arkouda.dtypeobjects method)": [[24, "arkouda.DTypeObjects.union", false]], "union() (arkouda.dtypes method)": [[24, "arkouda.DTypes.union", false]], "union() (arkouda.dtypes.arkouda_supported_dtypes method)": [[21, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES.union", false]], "union() (arkouda.dtypes.dtypeobjects method)": [[21, "arkouda.dtypes.DTypeObjects.union", false]], "union() (arkouda.dtypes.dtypes method)": [[21, "arkouda.dtypes.DTypes.union", false]], "union() (arkouda.dtypes.inttypes method)": [[21, "arkouda.dtypes.intTypes.union", false]], "union() (arkouda.dtypes.numericdtypes method)": [[21, "arkouda.dtypes.NumericDTypes.union", false]], "union() (arkouda.dtypes.scalardtypes method)": [[21, "arkouda.dtypes.ScalarDTypes.union", false]], "union() (arkouda.groupby_reduction_types method)": [[24, "arkouda.GROUPBY_REDUCTION_TYPES.union", false]], "union() (arkouda.groupbyclass.groupby_reduction_types method)": [[22, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES.union", false]], "union() (arkouda.inttypes method)": [[24, "arkouda.intTypes.union", false], [24, "id893", false], [24, "id902", false]], "union() (arkouda.numericdtypes method)": [[24, "arkouda.NumericDTypes.union", false]], "union() (arkouda.numpy.arkouda_supported_dtypes method)": [[35, "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES.union", false]], "union() (arkouda.numpy.dtypeobjects method)": [[35, "arkouda.numpy.DTypeObjects.union", false]], "union() (arkouda.numpy.dtypes method)": [[35, "arkouda.numpy.DTypes.union", false]], "union() (arkouda.numpy.dtypes.arkouda_supported_dtypes method)": [[34, "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES.union", false]], "union() (arkouda.numpy.dtypes.dtypeobjects method)": [[34, "arkouda.numpy.dtypes.DTypeObjects.union", false]], "union() (arkouda.numpy.dtypes.dtypes method)": [[34, "arkouda.numpy.dtypes.DTypes.union", false]], "union() (arkouda.numpy.dtypes.inttypes method)": [[34, "arkouda.numpy.dtypes.intTypes.union", false]], "union() (arkouda.numpy.dtypes.numericdtypes method)": [[34, "arkouda.numpy.dtypes.NumericDTypes.union", false]], "union() (arkouda.numpy.dtypes.scalardtypes method)": [[34, "arkouda.numpy.dtypes.ScalarDTypes.union", false]], "union() (arkouda.numpy.inttypes method)": [[35, "arkouda.numpy.intTypes.union", false]], "union() (arkouda.numpy.numericdtypes method)": [[35, "arkouda.numpy.NumericDTypes.union", false]], "union() (arkouda.numpy.scalardtypes method)": [[35, "arkouda.numpy.ScalarDTypes.union", false]], "union() (arkouda.scalardtypes method)": [[24, "arkouda.ScalarDTypes.union", false]], "union() (arkouda.segarray method)": [[24, "arkouda.SegArray.union", false]], "union() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.union", false]], "union() (in module arkouda.segarray)": [[96, "arkouda.SegArray.union", false]], "union1d() (in module arkouda)": [[24, "arkouda.union1d", false], [98, "arkouda.union1d", false]], "union1d() (in module arkouda.pdarraysetops)": [[40, "arkouda.pdarraysetops.union1d", false]], "unique() (arkouda.categorical method)": [[24, "arkouda.Categorical.unique", false], [24, "id118", false], [24, "id60", false]], "unique() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.unique", false]], "unique() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.unique", false]], "unique() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.unique", false]], "unique() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.unique", false]], "unique() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.unique", false]], "unique() (arkouda.groupby method)": [[24, "arkouda.GroupBy.unique", false], [24, "id287", false], [24, "id334", false], [24, "id381", false], [24, "id428", false], [24, "id475", false], [91, "arkouda.GroupBy.unique", false]], "unique() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.unique", false]], "unique() (arkouda.segarray method)": [[24, "arkouda.SegArray.unique", false]], "unique() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.unique", false]], "unique() (in module arkouda)": [[24, "arkouda.unique", false], [24, "id1357", false], [24, "id1358", false], [98, "arkouda.unique", false]], "unique() (in module arkouda.groupbyclass)": [[22, "arkouda.groupbyclass.unique", false]], "unique_all() (in module arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.unique_all", false]], "unique_counts() (in module arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.unique_counts", false]], "unique_inverse() (in module arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.unique_inverse", false]], "unique_keys (arkouda.groupby attribute)": [[24, "arkouda.GroupBy.unique_keys", false], [24, "id249", false], [24, "id296", false], [24, "id343", false], [24, "id390", false], [24, "id437", false], [91, "arkouda.GroupBy.unique_keys", false]], "unique_keys (arkouda.groupbyclass.groupby attribute)": [[22, "arkouda.groupbyclass.GroupBy.unique_keys", false]], "unique_values() (in module arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.unique_values", false]], "uniqueallresult (class in arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.UniqueAllResult", false]], "uniquecountsresult (class in arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.UniqueCountsResult", false]], "uniqueinverseresult (class in arkouda.array_api.set_functions)": [[13, "arkouda.array_api.set_functions.UniqueInverseResult", false]], "unregister() (arkouda.categorical method)": [[24, "arkouda.Categorical.unregister", false], [24, "id119", false], [24, "id61", false]], "unregister() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.unregister", false]], "unregister() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.unregister", false], [24, "id174", false]], "unregister() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.unregister", false]], "unregister() (arkouda.datetime method)": [[24, "arkouda.Datetime.unregister", false], [24, "id206", false], [24, "id239", false]], "unregister() (arkouda.groupby method)": [[24, "arkouda.GroupBy.unregister", false], [24, "id288", false], [24, "id335", false], [24, "id382", false], [24, "id429", false], [24, "id476", false], [91, "arkouda.GroupBy.unregister", false]], "unregister() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.unregister", false]], "unregister() (arkouda.index method)": [[24, "arkouda.Index.unregister", false]], "unregister() (arkouda.index.index method)": [[25, "arkouda.index.Index.unregister", false]], "unregister() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.unregister", false]], "unregister() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.unregister", false]], "unregister() (arkouda.pdarray method)": [[24, "arkouda.pdarray.unregister", false], [24, "id1059", false], [24, "id1130", false], [24, "id1201", false], [24, "id1272", false], [24, "id988", false]], "unregister() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.unregister", false]], "unregister() (arkouda.segarray method)": [[24, "arkouda.SegArray.unregister", false]], "unregister() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.unregister", false]], "unregister() (arkouda.series method)": [[24, "arkouda.Series.unregister", false]], "unregister() (arkouda.series.series method)": [[49, "arkouda.series.Series.unregister", false]], "unregister() (arkouda.strings method)": [[24, "arkouda.Strings.unregister", false], [24, "id565", false], [24, "id641", false], [24, "id717", false], [24, "id793", false]], "unregister() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.unregister", false]], "unregister() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.unregister", false]], "unregister() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.unregister", false]], "unregister() (arkouda.timedelta method)": [[24, "arkouda.Timedelta.unregister", false], [24, "id818", false]], "unregister() (in module arkouda)": [[24, "arkouda.unregister", false]], "unregister() (in module arkouda.util)": [[56, "arkouda.util.unregister", false]], "unregister_all() (in module arkouda)": [[24, "arkouda.unregister_all", false]], "unregister_all() (in module arkouda.util)": [[56, "arkouda.util.unregister_all", false]], "unregister_categorical_by_name() (arkouda.categorical static method)": [[24, "arkouda.Categorical.unregister_categorical_by_name", false], [24, "id120", false], [24, "id62", false]], "unregister_categorical_by_name() (arkouda.categorical.categorical static method)": [[17, "arkouda.categorical.Categorical.unregister_categorical_by_name", false]], "unregister_dataframe_by_name() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.unregister_dataframe_by_name", false], [24, "id175", false]], "unregister_dataframe_by_name() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.unregister_dataframe_by_name", false]], "unregister_groupby_by_name() (arkouda.groupby method)": [[24, "arkouda.GroupBy.unregister_groupby_by_name", false], [24, "id289", false], [24, "id336", false], [24, "id383", false], [24, "id430", false], [24, "id477", false]], "unregister_groupby_by_name() (arkouda.groupby static method)": [[91, "arkouda.GroupBy.unregister_groupby_by_name", false]], "unregister_groupby_by_name() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.unregister_groupby_by_name", false]], "unregister_pdarray_by_name() (in module arkouda)": [[24, "arkouda.unregister_pdarray_by_name", false]], "unregister_pdarray_by_name() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.unregister_pdarray_by_name", false]], "unregister_segarray_by_name() (arkouda.segarray static method)": [[24, "arkouda.SegArray.unregister_segarray_by_name", false]], "unregister_segarray_by_name() (arkouda.segarray.segarray static method)": [[48, "arkouda.segarray.SegArray.unregister_segarray_by_name", false]], "unregister_strings_by_name() (arkouda.strings static method)": [[24, "arkouda.Strings.unregister_strings_by_name", false], [24, "id566", false], [24, "id642", false], [24, "id718", false], [24, "id794", false]], "unregister_strings_by_name() (arkouda.strings.strings static method)": [[53, "arkouda.strings.Strings.unregister_strings_by_name", false]], "unsignedinteger (class in arkouda)": [[24, "arkouda.unsignedinteger", false]], "unsignedinteger (class in arkouda.numpy)": [[35, "arkouda.numpy.unsignedinteger", false]], "unsqueeze() (in module arkouda)": [[24, "arkouda.unsqueeze", false]], "unsqueeze() (in module arkouda.alignment)": [[3, "arkouda.alignment.unsqueeze", false]], "unstack() (in module arkouda.array_api.manipulation_functions)": [[11, "arkouda.array_api.manipulation_functions.unstack", false]], "update() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.update", false]], "update() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.update", false]], "update() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.update", false]], "update() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.update", false]], "update() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.update", false]], "update() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.update", false]], "update() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.update", false]], "update() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.update", false]], "update() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.update", false]], "update() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.update", false]], "update() (arkouda.sctypes method)": [[24, "arkouda.sctypes.update", false]], "update() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.update", false]], "update_hdf() (arkouda.categorical method)": [[24, "arkouda.Categorical.update_hdf", false], [24, "id121", false], [24, "id63", false]], "update_hdf() (arkouda.categorical.categorical method)": [[17, "arkouda.categorical.Categorical.update_hdf", false]], "update_hdf() (arkouda.client_dtypes.ipv4 method)": [[19, "arkouda.client_dtypes.IPv4.update_hdf", false]], "update_hdf() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.update_hdf", false], [24, "id176", false]], "update_hdf() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.update_hdf", false]], "update_hdf() (arkouda.groupby method)": [[24, "arkouda.GroupBy.update_hdf", false], [24, "id290", false], [24, "id337", false], [24, "id384", false], [24, "id431", false], [24, "id478", false]], "update_hdf() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.update_hdf", false]], "update_hdf() (arkouda.index method)": [[24, "arkouda.Index.update_hdf", false]], "update_hdf() (arkouda.index.index method)": [[25, "arkouda.index.Index.update_hdf", false]], "update_hdf() (arkouda.index.multiindex method)": [[25, "arkouda.index.MultiIndex.update_hdf", false]], "update_hdf() (arkouda.ipv4 method)": [[24, "arkouda.IPv4.update_hdf", false]], "update_hdf() (arkouda.multiindex method)": [[24, "arkouda.MultiIndex.update_hdf", false]], "update_hdf() (arkouda.pdarray method)": [[24, "arkouda.pdarray.update_hdf", false], [24, "id1060", false], [24, "id1131", false], [24, "id1202", false], [24, "id1273", false], [24, "id989", false]], "update_hdf() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.update_hdf", false]], "update_hdf() (arkouda.segarray method)": [[24, "arkouda.SegArray.update_hdf", false]], "update_hdf() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.update_hdf", false]], "update_hdf() (arkouda.strings method)": [[24, "arkouda.Strings.update_hdf", false], [24, "id567", false], [24, "id643", false], [24, "id719", false], [24, "id795", false]], "update_hdf() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.update_hdf", false]], "update_hdf() (in module arkouda)": [[24, "arkouda.update_hdf", false]], "update_hdf() (in module arkouda.io)": [[27, "arkouda.io.update_hdf", false]], "update_nrows() (arkouda.dataframe method)": [[24, "arkouda.DataFrame.update_nrows", false], [24, "id177", false]], "update_nrows() (arkouda.dataframe.dataframe method)": [[20, "arkouda.dataframe.DataFrame.update_nrows", false]], "upper() (arkouda.strings method)": [[24, "arkouda.Strings.upper", false], [24, "id568", false], [24, "id644", false], [24, "id720", false], [24, "id796", false]], "upper() (arkouda.strings.strings method)": [[53, "arkouda.strings.Strings.upper", false]], "username_tokenizer (in module arkouda.security)": [[47, "arkouda.security.username_tokenizer", false]], "ushort (class in arkouda)": [[24, "arkouda.ushort", false]], "ushort (class in arkouda.numpy)": [[35, "arkouda.numpy.ushort", false]], "ushortdtype (class in arkouda)": [[24, "arkouda.UShortDType", false]], "ushortdtype (class in arkouda.numpy)": [[35, "arkouda.numpy.UShortDType", false]], "val_suffix (in module arkouda)": [[24, "arkouda.VAL_SUFFIX", false]], "val_suffix (in module arkouda.segarray)": [[48, "arkouda.segarray.VAL_SUFFIX", false]], "validate_key() (arkouda.series method)": [[24, "arkouda.Series.validate_key", false]], "validate_key() (arkouda.series.series method)": [[49, "arkouda.series.Series.validate_key", false]], "validate_val() (arkouda.series method)": [[24, "arkouda.Series.validate_val", false]], "validate_val() (arkouda.series.series method)": [[49, "arkouda.series.Series.validate_val", false]], "valsize (arkouda.segarray attribute)": [[24, "arkouda.SegArray.valsize", false]], "valsize (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.valsize", false]], "value() (arkouda.dtype method)": [[24, "arkouda.DType.value", false]], "value() (arkouda.dtypes.dtype method)": [[21, "arkouda.dtypes.DType.value", false]], "value() (arkouda.errormode method)": [[24, "arkouda.ErrorMode.value", false]], "value() (arkouda.numpy.dtype method)": [[35, "arkouda.numpy.DType.value", false]], "value() (arkouda.numpy.dtypes.dtype method)": [[34, "arkouda.numpy.dtypes.DType.value", false]], "value() (arkouda.numpy.errormode method)": [[35, "arkouda.numpy.ErrorMode.value", false]], "value_counts() (arkouda.pdarray method)": [[24, "arkouda.pdarray.value_counts", false], [24, "id1061", false], [24, "id1132", false], [24, "id1203", false], [24, "id1274", false], [24, "id990", false]], "value_counts() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.value_counts", false]], "value_counts() (arkouda.series method)": [[24, "arkouda.Series.value_counts", false]], "value_counts() (arkouda.series.series method)": [[49, "arkouda.series.Series.value_counts", false]], "value_counts() (in module arkouda)": [[24, "arkouda.value_counts", false], [92, "arkouda.value_counts", false]], "value_counts() (in module arkouda.numpy)": [[35, "arkouda.numpy.value_counts", false]], "value_counts() (in module arkouda.series)": [[97, "arkouda.Series.value_counts", false]], "values (arkouda.array_api.set_functions.uniqueallresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueAllResult.values", false]], "values (arkouda.array_api.set_functions.uniquecountsresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueCountsResult.values", false]], "values (arkouda.array_api.set_functions.uniqueinverseresult attribute)": [[13, "arkouda.array_api.set_functions.UniqueInverseResult.values", false]], "values (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.values", false]], "values (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.values", false]], "values (arkouda.client_dtypes.ipv4 attribute)": [[19, "arkouda.client_dtypes.IPv4.values", false]], "values (arkouda.dataframe.diffaggregate attribute)": [[20, "arkouda.dataframe.DiffAggregate.values", false]], "values (arkouda.diffaggregate attribute)": [[24, "arkouda.DiffAggregate.values", false]], "values (arkouda.ipv4 attribute)": [[24, "arkouda.IPv4.values", false]], "values (arkouda.segarray attribute)": [[24, "arkouda.SegArray.values", false]], "values (arkouda.segarray.segarray attribute)": [[48, "arkouda.segarray.SegArray.values", false]], "values() (arkouda.dtypes.number_format_strings method)": [[21, "arkouda.dtypes.NUMBER_FORMAT_STRINGS.values", false]], "values() (arkouda.dtypes.seriesdtypes method)": [[21, "arkouda.dtypes.SeriesDTypes.values", false]], "values() (arkouda.number_format_strings method)": [[24, "arkouda.NUMBER_FORMAT_STRINGS.values", false]], "values() (arkouda.numpy.dtypes.number_format_strings method)": [[34, "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS.values", false]], "values() (arkouda.numpy.dtypes.seriesdtypes method)": [[34, "arkouda.numpy.dtypes.SeriesDTypes.values", false]], "values() (arkouda.numpy.number_format_strings method)": [[35, "arkouda.numpy.NUMBER_FORMAT_STRINGS.values", false]], "values() (arkouda.numpy.sctypedict method)": [[35, "arkouda.numpy.sctypeDict.values", false]], "values() (arkouda.numpy.sctypes method)": [[35, "arkouda.numpy.sctypes.values", false]], "values() (arkouda.numpy.seriesdtypes method)": [[35, "arkouda.numpy.SeriesDTypes.values", false]], "values() (arkouda.sctypedict method)": [[24, "arkouda.sctypeDict.values", false]], "values() (arkouda.sctypes method)": [[24, "arkouda.sctypes.values", false]], "values() (arkouda.seriesdtypes method)": [[24, "arkouda.SeriesDTypes.values", false]], "var() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.var", false]], "var() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.var", false]], "var() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.var", false]], "var() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.var", false]], "var() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.var", false]], "var() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.var", false]], "var() (arkouda.groupby method)": [[24, "arkouda.GroupBy.var", false], [24, "id291", false], [24, "id338", false], [24, "id385", false], [24, "id432", false], [24, "id479", false], [91, "arkouda.GroupBy.var", false]], "var() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.var", false]], "var() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.var", false]], "var() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.var", false]], "var() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.var", false]], "var() (arkouda.pdarray method)": [[24, "arkouda.pdarray.var", false], [24, "id1062", false], [24, "id1133", false], [24, "id1204", false], [24, "id1275", false], [24, "id991", false], [92, "arkouda.pdarray.var", false]], "var() (arkouda.pdarrayclass.pdarray method)": [[37, "arkouda.pdarrayclass.pdarray.var", false]], "var() (arkouda.series method)": [[24, "arkouda.Series.var", false]], "var() (arkouda.series.series method)": [[49, "arkouda.series.Series.var", false]], "var() (arkouda.str_ method)": [[24, "arkouda.str_.var", false], [24, "id1354", false]], "var() (in module arkouda)": [[24, "arkouda.var", false], [87, "arkouda.var", false]], "var() (in module arkouda.array_api.statistical_functions)": [[15, "arkouda.array_api.statistical_functions.var", false]], "var() (in module arkouda.pdarrayclass)": [[37, "arkouda.pdarrayclass.var", false]], "vecdot() (in module arkouda)": [[24, "arkouda.vecdot", false]], "vecdot() (in module arkouda.array_api.linalg)": [[10, "arkouda.array_api.linalg.vecdot", false]], "vecdot() (in module arkouda.numpy)": [[35, "arkouda.numpy.vecdot", false]], "vecentropy() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.vecentropy", false]], "view() (arkouda.bytes_ method)": [[24, "arkouda.bytes_.view", false]], "view() (arkouda.dtypes.str_ method)": [[21, "arkouda.dtypes.str_.view", false]], "view() (arkouda.numpy.bytes_ method)": [[35, "arkouda.numpy.bytes_.view", false]], "view() (arkouda.numpy.dtypes.str_ method)": [[34, "arkouda.numpy.dtypes.str_.view", false]], "view() (arkouda.numpy.str_ method)": [[35, "arkouda.numpy.str_.view", false]], "view() (arkouda.str_ method)": [[24, "arkouda.str_.view", false], [24, "id1355", false]], "void (class in arkouda)": [[24, "arkouda.void", false]], "void (class in arkouda.numpy)": [[35, "arkouda.numpy.void", false]], "voiddtype (class in arkouda)": [[24, "arkouda.VoidDType", false]], "voiddtype (class in arkouda.numpy)": [[35, "arkouda.numpy.VoidDType", false]], "vstack() (in module arkouda)": [[24, "arkouda.vstack", false]], "vstack() (in module arkouda.pdarraymanipulation)": [[39, "arkouda.pdarraymanipulation.vstack", false]], "warn (arkouda.logger.loglevel attribute)": [[30, "arkouda.logger.LogLevel.WARN", false]], "warn (arkouda.loglevel attribute)": [[24, "arkouda.LogLevel.WARN", false]], "week (arkouda.datetime property)": [[24, "arkouda.Datetime.week", false], [24, "id207", false], [24, "id240", false]], "week (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.week", false]], "weekday (arkouda.datetime property)": [[24, "arkouda.Datetime.weekday", false], [24, "id208", false], [24, "id241", false]], "weekday (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.weekday", false]], "weekofyear (arkouda.datetime property)": [[24, "arkouda.Datetime.weekofyear", false], [24, "id209", false], [24, "id242", false]], "weekofyear (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.weekofyear", false]], "where() (in module arkouda)": [[24, "arkouda.where", false], [24, "id1359", false], [24, "id1360", false], [87, "arkouda.where", false]], "where() (in module arkouda.array_api.searching_functions)": [[12, "arkouda.array_api.searching_functions.where", false]], "where() (in module arkouda.numpy)": [[35, "arkouda.numpy.where", false]], "width (arkouda.bitvector attribute)": [[24, "arkouda.BitVector.width", false]], "width (arkouda.client_dtypes.bitvector attribute)": [[19, "arkouda.client_dtypes.BitVector.width", false]], "width (arkouda.client_dtypes.fields attribute)": [[19, "arkouda.client_dtypes.Fields.width", false]], "width (arkouda.fields attribute)": [[24, "arkouda.Fields.width", false]], "write_line_to_file() (in module arkouda.io_util)": [[28, "arkouda.io_util.write_line_to_file", false]], "write_log() (in module arkouda)": [[24, "arkouda.write_log", false]], "write_log() (in module arkouda.logger)": [[30, "arkouda.logger.write_log", false]], "xlogy() (in module arkouda)": [[24, "arkouda.xlogy", false]], "xlogy() (in module arkouda.scipy.special)": [[45, "arkouda.scipy.special.xlogy", false]], "xor() (arkouda.dataframe.dataframegroupby method)": [[20, "arkouda.dataframe.DataFrameGroupBy.xor", false]], "xor() (arkouda.dataframe.diffaggregate method)": [[20, "arkouda.dataframe.DiffAggregate.xor", false]], "xor() (arkouda.dataframegroupby method)": [[24, "arkouda.DataFrameGroupBy.xor", false]], "xor() (arkouda.diffaggregate method)": [[24, "arkouda.DiffAggregate.xor", false]], "xor() (arkouda.groupby method)": [[24, "arkouda.GroupBy.XOR", false], [24, "id257", false], [24, "id304", false], [24, "id351", false], [24, "id398", false], [24, "id445", false], [91, "arkouda.GroupBy.XOR", false]], "xor() (arkouda.groupbyclass.groupby method)": [[22, "arkouda.groupbyclass.GroupBy.XOR", false]], "xor() (arkouda.segarray method)": [[24, "arkouda.SegArray.XOR", false]], "xor() (arkouda.segarray.segarray method)": [[48, "arkouda.segarray.SegArray.XOR", false]], "xtol() (arkouda.scipy.stats.chi2 method)": [[46, "arkouda.scipy.stats.chi2.xtol", false]], "year (arkouda.datetime property)": [[24, "arkouda.Datetime.year", false], [24, "id210", false], [24, "id243", false]], "year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.year", false]], "zero_up() (in module arkouda)": [[24, "arkouda.zero_up", false]], "zero_up() (in module arkouda.alignment)": [[3, "arkouda.alignment.zero_up", false]], "zeros() (in module arkouda)": [[24, "arkouda.zeros", false], [24, "id1361", false], [24, "id1362", false], [24, "id1363", false], [89, "arkouda.zeros", false]], "zeros() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.zeros", false]], "zeros() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.zeros", false]], "zeros_like() (in module arkouda)": [[24, "arkouda.zeros_like", false], [89, "arkouda.zeros_like", false]], "zeros_like() (in module arkouda.array_api.creation_functions)": [[5, "arkouda.array_api.creation_functions.zeros_like", false]], "zeros_like() (in module arkouda.pdarraycreation)": [[38, "arkouda.pdarraycreation.zeros_like", false]]}, "objects": {"": [[24, 0, 0, "-", "arkouda"]], "arkouda": [[24, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [24, 3, 1, "", "AllSymbols"], [24, 1, 1, "", "BitVector"], [24, 5, 1, "", "BitVectorizer"], [24, 1, 1, "", "BoolDType"], [24, 1, 1, "", "ByteDType"], [24, 1, 1, "", "BytesDType"], [24, 1, 1, "", "CLongDoubleDType"], [24, 1, 1, "", "CachedAccessor"], [88, 1, 1, "", "Categorical"], [24, 1, 1, "", "Complex128DType"], [24, 1, 1, "", "Complex64DType"], [24, 1, 1, "", "DType"], [24, 1, 1, "", "DTypeObjects"], [24, 1, 1, "", "DTypes"], [90, 1, 1, "", "DataFrame"], [24, 1, 1, "", "DataFrameGroupBy"], [24, 1, 1, "", "DataSource"], [24, 1, 1, "", "DateTime64DType"], [24, 1, 1, "id211", "Datetime"], [24, 1, 1, "", "DatetimeAccessor"], [24, 1, 1, "", "DiffAggregate"], [24, 1, 1, "", "ErrorMode"], [24, 1, 1, "", "False_"], [24, 1, 1, "", "Fields"], [24, 1, 1, "", "Float16DType"], [24, 1, 1, "", "Float32DType"], [24, 1, 1, "", "Float64DType"], [24, 1, 1, "", "GROUPBY_REDUCTION_TYPES"], [91, 1, 1, "", "GroupBy"], [24, 1, 1, "", "IPv4"], [85, 1, 1, "", "Index"], [24, 3, 1, "", "Inf"], [24, 3, 1, "", "Infinity"], [24, 1, 1, "", "Int16DType"], [24, 1, 1, "", "Int32DType"], [24, 1, 1, "", "Int64DType"], [24, 1, 1, "", "Int8DType"], [24, 1, 1, "", "IntDType"], [24, 3, 1, "", "LEN_SUFFIX"], [24, 1, 1, "", "LogLevel"], [24, 1, 1, "", "LongDType"], [24, 1, 1, "", "LongDoubleDType"], [24, 1, 1, "", "LongLongDType"], [24, 1, 1, "", "MultiIndex"], [24, 3, 1, "", "NAN"], [24, 3, 1, "", "NINF"], [24, 1, 1, "", "NUMBER_FORMAT_STRINGS"], [24, 3, 1, "", "NZERO"], [24, 3, 1, "", "NaN"], [24, 7, 1, "", "NonUniqueError"], [24, 1, 1, "", "NumericDTypes"], [24, 1, 1, "", "ObjectDType"], [24, 3, 1, "", "PINF"], [24, 3, 1, "", "PZERO"], [24, 1, 1, "", "Power_divergenceResult"], [24, 1, 1, "", "Properties"], [24, 1, 1, "", "RankWarning"], [24, 3, 1, "", "RegisteredSymbols"], [24, 7, 1, "id487", "RegistrationError"], [24, 1, 1, "", "Row"], [24, 3, 1, "", "SEG_SUFFIX"], [24, 1, 1, "", "ScalarDTypes"], [24, 1, 1, "", "ScalarType"], [24, 1, 1, "", "SegArray"], [97, 1, 1, "", "Series"], [24, 1, 1, "", "SeriesDTypes"], [24, 1, 1, "", "ShortDType"], [24, 1, 1, "", "StrDType"], [24, 1, 1, "", "StringAccessor"], [24, 1, 1, "id721", "Strings"], [24, 1, 1, "", "TimeDelta64DType"], [24, 1, 1, "id797", "Timedelta"], [24, 1, 1, "", "TooHardError"], [24, 1, 1, "", "True_"], [24, 1, 1, "", "UByteDType"], [24, 1, 1, "", "UInt16DType"], [24, 1, 1, "", "UInt32DType"], [24, 1, 1, "", "UInt64DType"], [24, 1, 1, "", "UInt8DType"], [24, 1, 1, "", "UIntDType"], [24, 1, 1, "", "ULongDType"], [24, 1, 1, "", "ULongLongDType"], [24, 1, 1, "", "UShortDType"], [24, 3, 1, "", "VAL_SUFFIX"], [24, 1, 1, "", "VoidDType"], [87, 5, 1, "", "abs"], [2, 0, 0, "-", "accessor"], [24, 5, 1, "", "add_newdoc"], [24, 5, 1, "", "akabs"], [24, 1, 1, "id819", "akbool"], [24, 5, 1, "id820", "akcast"], [24, 1, 1, "id821", "akfloat64"], [24, 1, 1, "id828", "akint64"], [24, 1, 1, "id832", "akuint64"], [24, 5, 1, "", "align"], [3, 0, 0, "-", "alignment"], [87, 5, 1, "", "all"], [24, 1, 1, "", "all_scalars"], [87, 5, 1, "", "any"], [89, 5, 1, "", "arange"], [24, 5, 1, "", "arccos"], [24, 5, 1, "", "arccosh"], [24, 5, 1, "", "arcsin"], [24, 5, 1, "", "arcsinh"], [24, 5, 1, "", "arctan"], [24, 5, 1, "", "arctan2"], [24, 5, 1, "", "arctanh"], [87, 5, 1, "", "argmax"], [87, 5, 1, "", "argmaxk"], [87, 5, 1, "", "argmin"], [87, 5, 1, "", "argmink"], [86, 5, 1, "", "argsort"], [84, 5, 1, "", "array"], [8, 0, 0, "-", "array_api"], [24, 5, 1, "", "array_equal"], [24, 5, 1, "", "assert_almost_equal"], [24, 5, 1, "", "assert_almost_equivalent"], [24, 5, 1, "", "assert_arkouda_array_equal"], [24, 5, 1, "", "assert_arkouda_array_equivalent"], [24, 5, 1, "", "assert_arkouda_pdarray_equal"], [24, 5, 1, "", "assert_arkouda_segarray_equal"], [24, 5, 1, "", "assert_arkouda_strings_equal"], [24, 5, 1, "", "assert_attr_equal"], [24, 5, 1, "", "assert_categorical_equal"], [24, 5, 1, "", "assert_class_equal"], [24, 5, 1, "", "assert_contains_all"], [24, 5, 1, "", "assert_copy"], [24, 5, 1, "", "assert_dict_equal"], [24, 5, 1, "", "assert_equal"], [24, 5, 1, "", "assert_equivalent"], [24, 5, 1, "", "assert_frame_equal"], [24, 5, 1, "", "assert_frame_equivalent"], [24, 5, 1, "", "assert_index_equal"], [24, 5, 1, "", "assert_index_equivalent"], [24, 5, 1, "", "assert_is_sorted"], [24, 5, 1, "", "assert_series_equal"], [24, 5, 1, "", "assert_series_equivalent"], [24, 5, 1, "", "attach"], [24, 5, 1, "", "attach_all"], [24, 5, 1, "", "attach_pdarray"], [24, 5, 1, "", "base_repr"], [24, 1, 1, "id844", "bigint"], [24, 5, 1, "", "bigint_from_uint_arrays"], [24, 5, 1, "", "binary_repr"], [24, 1, 1, "id852", "bitType"], [24, 1, 1, "", "bool_"], [24, 1, 1, "", "bool_scalars"], [24, 5, 1, "id856", "broadcast"], [24, 5, 1, "", "broadcast_dims"], [24, 5, 1, "", "broadcast_to_shape"], [24, 1, 1, "", "byte"], [24, 1, 1, "", "bytes_"], [94, 5, 1, "", "cast"], [17, 0, 0, "-", "categorical"], [24, 1, 1, "", "cdouble"], [24, 5, 1, "", "ceil"], [24, 1, 1, "", "cfloat"], [24, 1, 1, "", "character"], [24, 5, 1, "", "chisquare"], [24, 5, 1, "", "clear"], [18, 0, 0, "-", "client"], [19, 0, 0, "-", "client_dtypes"], [24, 5, 1, "", "clip"], [24, 1, 1, "", "clongdouble"], [24, 1, 1, "", "clongfloat"], [24, 5, 1, "", "clz"], [86, 5, 1, "", "coargsort"], [24, 1, 1, "", "complex128"], [24, 1, 1, "", "complex64"], [24, 5, 1, "", "compute_join_size"], [89, 5, 1, "", "concatenate"], [99, 5, 1, "", "connect"], [24, 5, 1, "", "convert_if_categorical"], [24, 5, 1, "", "corr"], [87, 5, 1, "", "cos"], [24, 5, 1, "", "cosh"], [24, 5, 1, "", "count_nonzero"], [24, 5, 1, "", "cov"], [24, 5, 1, "id865", "create_pdarray"], [24, 5, 1, "", "create_sparray"], [24, 1, 1, "", "csingle"], [24, 5, 1, "", "ctz"], [87, 5, 1, "", "cumprod"], [87, 5, 1, "", "cumsum"], [20, 0, 0, "-", "dataframe"], [24, 5, 1, "", "date_operators"], [24, 5, 1, "id868", "date_range"], [24, 1, 1, "", "datetime64"], [24, 5, 1, "", "deg2rad"], [24, 5, 1, "", "delete"], [24, 5, 1, "", "deprecate"], [24, 5, 1, "", "deprecate_with_doc"], [24, 5, 1, "", "disableVerbose"], [24, 5, 1, "", "disp"], [24, 5, 1, "", "divmod"], [24, 5, 1, "", "dot"], [24, 1, 1, "", "double"], [24, 5, 1, "", "dtype"], [21, 0, 0, "-", "dtypes"], [24, 3, 1, "", "e"], [24, 5, 1, "", "enableVerbose"], [24, 3, 1, "", "euler_gamma"], [87, 5, 1, "", "exp"], [24, 5, 1, "", "expm1"], [84, 5, 1, "", "export"], [24, 5, 1, "", "eye"], [24, 5, 1, "", "find"], [24, 1, 1, "", "finfo"], [24, 1, 1, "", "flexible"], [24, 5, 1, "", "flip"], [24, 1, 1, "", "float16"], [24, 1, 1, "", "float32"], [24, 1, 1, "", "float64"], [24, 1, 1, "", "float_"], [24, 1, 1, "", "float_scalars"], [24, 1, 1, "", "floating"], [24, 5, 1, "", "floor"], [24, 5, 1, "", "fmod"], [24, 5, 1, "", "format_float_positional"], [24, 5, 1, "", "format_float_scientific"], [24, 1, 1, "", "format_parser"], [24, 5, 1, "id875", "from_series"], [24, 5, 1, "id876", "full"], [24, 5, 1, "", "full_like"], [24, 5, 1, "id877", "gen_ranges"], [24, 5, 1, "", "generic_concat"], [24, 5, 1, "", "getArkoudaLogger"], [24, 5, 1, "", "get_byteorder"], [24, 5, 1, "", "get_callback"], [24, 5, 1, "", "get_columns"], [84, 5, 1, "", "get_datasets"], [24, 5, 1, "", "get_filetype"], [24, 5, 1, "", "get_null_indices"], [24, 5, 1, "", "get_server_byteorder"], [22, 0, 0, "-", "groupbyclass"], [24, 1, 1, "", "half"], [24, 5, 1, "", "hash"], [24, 5, 1, "", "hist_all"], [92, 5, 1, "", "histogram"], [24, 5, 1, "", "histogram2d"], [24, 5, 1, "", "histogramdd"], [23, 0, 0, "-", "history"], [24, 1, 1, "", "iinfo"], [84, 5, 1, "", "import_data"], [98, 5, 1, "", "in1d"], [24, 5, 1, "", "in1d_intervals"], [25, 0, 0, "-", "index"], [24, 5, 1, "", "indexof1d"], [24, 1, 1, "", "inexact"], [24, 3, 1, "", "inf"], [26, 0, 0, "-", "infoclass"], [24, 5, 1, "", "information"], [24, 3, 1, "", "infty"], [24, 1, 1, "", "int16"], [24, 1, 1, "", "int32"], [24, 1, 1, "id883", "int64"], [24, 1, 1, "", "int8"], [24, 1, 1, "id894", "intTypes"], [24, 1, 1, "", "int_"], [24, 1, 1, "id904", "int_scalars"], [24, 1, 1, "", "intc"], [24, 1, 1, "", "integer"], [24, 5, 1, "", "intersect"], [98, 5, 1, "", "intersect1d"], [24, 5, 1, "", "interval_lookup"], [24, 1, 1, "", "intp"], [24, 5, 1, "", "intx"], [24, 5, 1, "", "invert_permutation"], [27, 0, 0, "-", "io"], [28, 0, 0, "-", "io_util"], [24, 5, 1, "", "ip_address"], [24, 5, 1, "", "isSupportedFloat"], [24, 5, 1, "id907", "isSupportedInt"], [24, 5, 1, "", "isSupportedNumber"], [24, 5, 1, "", "is_cosorted"], [24, 5, 1, "", "is_ipv4"], [24, 5, 1, "", "is_ipv6"], [24, 5, 1, "", "is_registered"], [87, 5, 1, "", "is_sorted"], [24, 5, 1, "", "isfinite"], [24, 5, 1, "", "isinf"], [24, 5, 1, "id909", "isnan"], [24, 5, 1, "", "isscalar"], [24, 5, 1, "", "issctype"], [24, 5, 1, "", "issubclass_"], [24, 5, 1, "", "issubdtype"], [29, 0, 0, "-", "join"], [24, 5, 1, "", "join_on_eq_with_dt"], [24, 5, 1, "", "left_align"], [89, 5, 1, "", "linspace"], [24, 5, 1, "", "list_registry"], [24, 5, 1, "", "list_symbol_table"], [24, 5, 1, "", "load"], [24, 5, 1, "", "load_all"], [87, 5, 1, "", "log"], [24, 5, 1, "", "log10"], [24, 5, 1, "", "log1p"], [24, 5, 1, "", "log2"], [30, 0, 0, "-", "logger"], [24, 1, 1, "", "longdouble"], [24, 1, 1, "", "longfloat"], [24, 1, 1, "", "longlong"], [24, 5, 1, "", "lookup"], [24, 5, 1, "", "ls"], [24, 5, 1, "", "ls_csv"], [31, 0, 0, "-", "match"], [32, 0, 0, "-", "matcher"], [24, 5, 1, "", "matmul"], [87, 5, 1, "", "max"], [24, 5, 1, "", "maximum_sctype"], [87, 5, 1, "", "maxk"], [87, 5, 1, "", "mean"], [24, 5, 1, "", "median"], [24, 5, 1, "", "merge"], [87, 5, 1, "", "min"], [87, 5, 1, "", "mink"], [24, 5, 1, "", "mod"], [24, 3, 1, "", "nan"], [24, 1, 1, "", "number"], [33, 0, 0, "-", "numeric"], [24, 1, 1, "", "numeric_and_bool_scalars"], [24, 1, 1, "", "numeric_scalars"], [35, 0, 0, "-", "numpy"], [24, 1, 1, "", "numpy_scalars"], [24, 1, 1, "", "object_"], [89, 5, 1, "", "ones"], [89, 5, 1, "", "ones_like"], [24, 5, 1, "", "parity"], [94, 1, 1, "", "pdarray"], [37, 0, 0, "-", "pdarrayclass"], [38, 0, 0, "-", "pdarraycreation"], [39, 0, 0, "-", "pdarraymanipulation"], [40, 0, 0, "-", "pdarraysetops"], [24, 3, 1, "", "pi"], [24, 5, 1, "", "plot_dist"], [41, 0, 0, "-", "plotting"], [24, 5, 1, "", "popcount"], [24, 5, 1, "", "power"], [24, 5, 1, "", "power_divergence"], [24, 5, 1, "", "pretty_print_information"], [87, 5, 1, "", "prod"], [24, 5, 1, "", "promote_to_common_dtype"], [24, 5, 1, "", "putmask"], [24, 5, 1, "", "rad2deg"], [89, 5, 1, "", "randint"], [42, 0, 0, "-", "random"], [24, 5, 1, "", "random_strings_lognormal"], [24, 5, 1, "", "random_strings_uniform"], [84, 5, 1, "", "read"], [24, 5, 1, "", "read_csv"], [24, 5, 1, "", "read_hdf"], [24, 5, 1, "", "read_parquet"], [24, 5, 1, "", "read_tagged_data"], [24, 5, 1, "", "read_zarr"], [24, 5, 1, "", "receive"], [24, 5, 1, "", "receive_dataframe"], [24, 5, 1, "", "register_all"], [24, 5, 1, "", "resolve_scalar_dtype"], [24, 5, 1, "", "restore"], [24, 5, 1, "", "right_align"], [24, 5, 1, "", "rotl"], [24, 5, 1, "", "rotr"], [24, 5, 1, "", "round"], [43, 0, 0, "-", "row"], [24, 5, 1, "", "save_all"], [24, 5, 1, "", "scalar_array"], [44, 0, 0, "-", "scipy"], [24, 1, 1, "", "sctypeDict"], [24, 1, 1, "", "sctypes"], [24, 5, 1, "", "search_intervals"], [47, 0, 0, "-", "security"], [48, 0, 0, "-", "segarray"], [49, 0, 0, "-", "series"], [98, 5, 1, "", "setdiff1d"], [98, 5, 1, "", "setxor1d"], [24, 1, 1, "", "short"], [24, 5, 1, "", "sign"], [24, 1, 1, "", "signedinteger"], [87, 5, 1, "", "sin"], [24, 1, 1, "", "single"], [24, 5, 1, "", "sinh"], [24, 5, 1, "", "skew"], [24, 5, 1, "", "snapshot"], [24, 5, 1, "", "sort"], [50, 0, 0, "-", "sorting"], [24, 1, 1, "", "sparray"], [51, 0, 0, "-", "sparrayclass"], [52, 0, 0, "-", "sparsematrix"], [24, 5, 1, "", "sqrt"], [24, 5, 1, "", "square"], [24, 5, 1, "", "standard_normal"], [87, 5, 1, "", "std"], [24, 1, 1, "id1288", "str_"], [24, 1, 1, "", "str_scalars"], [24, 5, 1, "", "string_operators"], [53, 0, 0, "-", "strings"], [87, 5, 1, "", "sum"], [24, 5, 1, "", "tan"], [24, 5, 1, "", "tanh"], [54, 0, 0, "-", "testing"], [55, 0, 0, "-", "timeclass"], [24, 1, 1, "", "timedelta64"], [24, 5, 1, "id1356", "timedelta_range"], [24, 5, 1, "", "to_csv"], [24, 5, 1, "", "to_hdf"], [24, 5, 1, "", "to_parquet"], [24, 5, 1, "", "to_zarr"], [24, 5, 1, "", "transpose"], [24, 5, 1, "", "tril"], [24, 5, 1, "", "triu"], [24, 5, 1, "", "trunc"], [24, 5, 1, "", "typename"], [24, 1, 1, "", "ubyte"], [24, 1, 1, "", "uint"], [24, 1, 1, "", "uint16"], [24, 1, 1, "", "uint32"], [24, 1, 1, "", "uint64"], [24, 1, 1, "", "uint8"], [24, 1, 1, "", "uintc"], [24, 1, 1, "", "uintp"], [24, 1, 1, "", "ulonglong"], [24, 5, 1, "", "uniform"], [98, 5, 1, "", "union1d"], [98, 5, 1, "", "unique"], [24, 5, 1, "", "unregister"], [24, 5, 1, "", "unregister_all"], [24, 5, 1, "", "unregister_pdarray_by_name"], [24, 1, 1, "", "unsignedinteger"], [24, 5, 1, "", "unsqueeze"], [24, 5, 1, "", "update_hdf"], [24, 1, 1, "", "ushort"], [56, 0, 0, "-", "util"], [92, 5, 1, "", "value_counts"], [87, 5, 1, "", "var"], [24, 5, 1, "", "vecdot"], [24, 1, 1, "", "void"], [24, 5, 1, "", "vstack"], [87, 5, 1, "", "where"], [24, 5, 1, "", "write_log"], [24, 5, 1, "", "xlogy"], [24, 5, 1, "", "zero_up"], [89, 5, 1, "", "zeros"], [89, 5, 1, "", "zeros_like"]], "arkouda.ARKOUDA_SUPPORTED_DTYPES": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.BitVector": [[24, 4, 1, "", "conserves"], [24, 2, 1, "", "format"], [24, 2, 1, "", "from_return_msg"], [24, 2, 1, "", "opeq"], [24, 2, 1, "", "register"], [24, 4, 1, "", "registered_name"], [24, 4, 1, "", "reverse"], [24, 4, 1, "", "special_objType"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_ndarray"], [24, 4, 1, "", "values"], [24, 4, 1, "", "width"]], "arkouda.Categorical": [[24, 4, 1, "id73", "BinOps"], [24, 4, 1, "id74", "RegisterablePieces"], [24, 4, 1, "id75", "RequiredPieces"], [24, 2, 1, "id76", "argsort"], [24, 2, 1, "id77", "attach"], [88, 4, 1, "", "categories"], [88, 4, 1, "", "codes"], [24, 2, 1, "id78", "concatenate"], [88, 2, 1, "", "contains"], [24, 4, 1, "id80", "dtype"], [88, 2, 1, "", "endswith"], [24, 2, 1, "id82", "equals"], [88, 2, 1, "", "from_codes"], [24, 2, 1, "id84", "from_return_msg"], [24, 2, 1, "id85", "group"], [24, 2, 1, "id86", "hash"], [24, 2, 1, "id87", "in1d"], [24, 6, 1, "id88", "inferred_type"], [24, 2, 1, "id89", "info"], [24, 2, 1, "id90", "is_registered"], [24, 2, 1, "id91", "isna"], [24, 4, 1, "id92", "logger"], [24, 6, 1, "id93", "nbytes"], [88, 4, 1, "", "ndim"], [88, 4, 1, "", "nlevels"], [24, 4, 1, "id96", "objType"], [24, 2, 1, "id97", "parse_hdf_categoricals"], [88, 4, 1, "", "permutation"], [24, 2, 1, "id99", "pretty_print_info"], [24, 2, 1, "id100", "register"], [24, 4, 1, "id101", "registered_name"], [24, 2, 1, "id102", "reset_categories"], [24, 2, 1, "id103", "save"], [88, 4, 1, "", "segments"], [24, 2, 1, "id105", "set_categories"], [88, 4, 1, "", "shape"], [88, 4, 1, "", "size"], [24, 2, 1, "id108", "sort_values"], [24, 2, 1, "id109", "standardize_categories"], [88, 2, 1, "", "startswith"], [24, 2, 1, "id111", "to_hdf"], [24, 2, 1, "id112", "to_list"], [88, 5, 1, "", "to_ndarray"], [24, 2, 1, "id114", "to_pandas"], [24, 2, 1, "id115", "to_parquet"], [24, 2, 1, "id116", "to_strings"], [24, 2, 1, "id117", "transfer"], [24, 2, 1, "id118", "unique"], [24, 2, 1, "id119", "unregister"], [24, 2, 1, "id120", "unregister_categorical_by_name"], [24, 2, 1, "id121", "update_hdf"]], "arkouda.DType": [[24, 2, 1, "", "BIGINT"], [24, 2, 1, "", "BOOL"], [24, 2, 1, "", "COMPLEX128"], [24, 2, 1, "", "COMPLEX64"], [24, 2, 1, "", "FLOAT"], [24, 2, 1, "", "FLOAT32"], [24, 2, 1, "", "FLOAT64"], [24, 2, 1, "", "INT"], [24, 2, 1, "", "INT16"], [24, 2, 1, "", "INT32"], [24, 2, 1, "", "INT64"], [24, 2, 1, "", "INT8"], [24, 2, 1, "", "STR"], [24, 2, 1, "", "UINT"], [24, 2, 1, "", "UINT16"], [24, 2, 1, "", "UINT32"], [24, 2, 1, "", "UINT64"], [24, 2, 1, "", "UINT8"], [24, 2, 1, "", "name"], [24, 2, 1, "", "value"]], "arkouda.DTypeObjects": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.DTypes": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.DataFrame": [[24, 2, 1, "id123", "GroupBy"], [24, 2, 1, "id124", "all"], [24, 2, 1, "id125", "any"], [24, 2, 1, "id126", "append"], [90, 5, 1, "", "apply_permutation"], [90, 5, 1, "", "argsort"], [24, 2, 1, "id129", "assign"], [24, 2, 1, "id130", "attach"], [90, 5, 1, "", "coargsort"], [24, 6, 1, "id132", "columns"], [90, 5, 1, "", "concat"], [90, 5, 1, "", "copy"], [24, 2, 1, "id134", "corr"], [24, 2, 1, "id135", "count"], [90, 5, 1, "", "drop"], [90, 5, 1, "", "drop_duplicates"], [24, 2, 1, "id138", "dropna"], [24, 6, 1, "id139", "dtypes"], [24, 6, 1, "id140", "empty"], [24, 2, 1, "id141", "filter_by_range"], [24, 2, 1, "id142", "from_pandas"], [24, 2, 1, "id143", "from_return_msg"], [90, 5, 1, "", "groupby"], [90, 5, 1, "", "head"], [24, 6, 1, "id146", "index"], [24, 6, 1, "id147", "info"], [24, 2, 1, "id148", "is_registered"], [24, 2, 1, "id149", "isin"], [24, 2, 1, "id150", "isna"], [24, 2, 1, "id151", "load"], [24, 2, 1, "id152", "memory_usage"], [24, 2, 1, "id153", "memory_usage_info"], [24, 2, 1, "id154", "merge"], [24, 2, 1, "id155", "notna"], [24, 2, 1, "id156", "objType"], [24, 2, 1, "id157", "read_csv"], [24, 2, 1, "id158", "register"], [90, 5, 1, "", "rename"], [90, 5, 1, "", "reset_index"], [24, 2, 1, "id161", "sample"], [24, 2, 1, "id162", "save"], [24, 6, 1, "id163", "shape"], [24, 6, 1, "id164", "size"], [24, 2, 1, "id165", "sort_index"], [90, 5, 1, "", "sort_values"], [90, 5, 1, "", "tail"], [24, 2, 1, "id168", "to_csv"], [24, 2, 1, "id169", "to_hdf"], [24, 2, 1, "id170", "to_markdown"], [90, 5, 1, "", "to_pandas"], [24, 2, 1, "id172", "to_parquet"], [24, 2, 1, "id173", "transfer"], [24, 2, 1, "id174", "unregister"], [24, 2, 1, "id175", "unregister_dataframe_by_name"], [24, 2, 1, "id176", "update_hdf"], [24, 2, 1, "id177", "update_nrows"]], "arkouda.DataFrameGroupBy": [[24, 2, 1, "", "all"], [24, 2, 1, "", "any"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 4, 1, "", "as_index"], [24, 2, 1, "", "broadcast"], [24, 2, 1, "", "count"], [24, 4, 1, "", "df"], [24, 2, 1, "", "diff"], [24, 2, 1, "", "first"], [24, 4, 1, "", "gb"], [24, 4, 1, "", "gb_key_names"], [24, 2, 1, "", "head"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "median"], [24, 2, 1, "", "min"], [24, 2, 1, "", "mode"], [24, 2, 1, "", "nunique"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "sample"], [24, 2, 1, "", "size"], [24, 2, 1, "", "std"], [24, 2, 1, "", "sum"], [24, 2, 1, "", "tail"], [24, 2, 1, "", "unique"], [24, 2, 1, "", "var"], [24, 2, 1, "", "xor"]], "arkouda.DataSource": [[24, 2, 1, "", "abspath"], [24, 2, 1, "", "exists"], [24, 2, 1, "", "open"]], "arkouda.Datetime": [[24, 6, 1, "id212", "date"], [24, 6, 1, "id213", "day"], [24, 6, 1, "id214", "day_of_week"], [24, 6, 1, "id215", "day_of_year"], [24, 6, 1, "id216", "dayofweek"], [24, 6, 1, "id217", "dayofyear"], [24, 6, 1, "id218", "hour"], [24, 6, 1, "id219", "is_leap_year"], [24, 2, 1, "id220", "is_registered"], [24, 2, 1, "id221", "isocalendar"], [24, 6, 1, "id222", "microsecond"], [24, 6, 1, "id223", "millisecond"], [24, 6, 1, "id224", "minute"], [24, 6, 1, "id225", "month"], [24, 6, 1, "id226", "nanosecond"], [24, 2, 1, "id227", "register"], [24, 6, 1, "id228", "second"], [24, 4, 1, "id229", "special_objType"], [24, 2, 1, "id230", "sum"], [24, 4, 1, "id231", "supported_opeq"], [24, 4, 1, "id232", "supported_with_datetime"], [24, 4, 1, "id233", "supported_with_pdarray"], [24, 4, 1, "id234", "supported_with_r_datetime"], [24, 4, 1, "id235", "supported_with_r_pdarray"], [24, 4, 1, "id236", "supported_with_r_timedelta"], [24, 4, 1, "id237", "supported_with_timedelta"], [24, 2, 1, "id238", "to_pandas"], [24, 2, 1, "id239", "unregister"], [24, 6, 1, "id240", "week"], [24, 6, 1, "id241", "weekday"], [24, 6, 1, "id242", "weekofyear"], [24, 6, 1, "id243", "year"]], "arkouda.DatetimeAccessor": [[24, 4, 1, "", "data"], [24, 4, 1, "", "series"]], "arkouda.DiffAggregate": [[24, 2, 1, "", "all"], [24, 2, 1, "", "any"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 2, 1, "", "count"], [24, 2, 1, "", "first"], [24, 4, 1, "", "gb"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "median"], [24, 2, 1, "", "min"], [24, 2, 1, "", "mode"], [24, 2, 1, "", "nunique"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "std"], [24, 2, 1, "", "sum"], [24, 2, 1, "", "unique"], [24, 4, 1, "", "values"], [24, 2, 1, "", "var"], [24, 2, 1, "", "xor"]], "arkouda.ErrorMode": [[24, 2, 1, "", "ignore"], [24, 2, 1, "", "name"], [24, 2, 1, "", "return_validity"], [24, 2, 1, "", "strict"], [24, 2, 1, "", "value"]], "arkouda.Fields": [[24, 4, 1, "", "MSB_left"], [24, 2, 1, "", "format"], [24, 4, 1, "", "name"], [24, 4, 1, "", "names"], [24, 4, 1, "", "namewidth"], [24, 2, 1, "", "opeq"], [24, 4, 1, "", "pad"], [24, 4, 1, "", "padchar"], [24, 4, 1, "", "separator"], [24, 4, 1, "", "show_int"], [24, 4, 1, "", "width"]], "arkouda.GROUPBY_REDUCTION_TYPES": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.GroupBy": [[91, 2, 1, "", "AND"], [91, 2, 1, "", "OR"], [24, 2, 1, "id444", "Reductions"], [91, 2, 1, "", "XOR"], [91, 2, 1, "", "aggregate"], [91, 2, 1, "", "all"], [91, 2, 1, "", "any"], [91, 2, 1, "", "argmax"], [91, 2, 1, "", "argmin"], [91, 2, 1, "", "attach"], [91, 2, 1, "", "broadcast"], [91, 2, 1, "", "build_from_components"], [91, 2, 1, "", "count"], [91, 4, 1, "", "dropna"], [91, 2, 1, "", "first"], [24, 2, 1, "id456", "from_return_msg"], [91, 2, 1, "", "head"], [91, 2, 1, "", "is_registered"], [91, 4, 1, "", "logger"], [91, 2, 1, "", "max"], [91, 2, 1, "", "mean"], [91, 2, 1, "", "median"], [91, 2, 1, "", "min"], [91, 2, 1, "", "mode"], [91, 2, 1, "", "most_common"], [91, 4, 1, "", "ngroups"], [91, 4, 1, "", "nkeys"], [91, 2, 1, "", "nunique"], [24, 2, 1, "id466", "objType"], [91, 4, 1, "", "permutation"], [91, 2, 1, "", "prod"], [91, 2, 1, "", "register"], [91, 2, 1, "", "sample"], [91, 4, 1, "", "segments"], [91, 2, 1, "id0", "size"], [91, 2, 1, "", "std"], [91, 2, 1, "", "sum"], [91, 2, 1, "", "tail"], [91, 2, 1, "", "to_hdf"], [91, 2, 1, "", "unique"], [91, 4, 1, "", "unique_keys"], [91, 2, 1, "", "unregister"], [91, 2, 1, "", "unregister_groupby_by_name"], [24, 2, 1, "id478", "update_hdf"], [91, 2, 1, "", "var"]], "arkouda.IPv4": [[24, 2, 1, "", "export_uint"], [24, 2, 1, "", "format"], [24, 2, 1, "", "normalize"], [24, 2, 1, "", "opeq"], [24, 2, 1, "", "register"], [24, 4, 1, "", "special_objType"], [24, 2, 1, "", "to_hdf"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_ndarray"], [24, 2, 1, "", "update_hdf"], [24, 4, 1, "", "values"]], "arkouda.Index": [[85, 5, 1, "", "argsort"], [85, 5, 1, "", "concat"], [24, 2, 1, "", "equals"], [24, 2, 1, "", "factory"], [24, 2, 1, "", "from_return_msg"], [24, 6, 1, "", "index"], [24, 6, 1, "", "inferred_type"], [24, 2, 1, "", "is_registered"], [85, 5, 1, "", "lookup"], [24, 2, 1, "", "map"], [24, 4, 1, "", "max_list_size"], [24, 2, 1, "", "memory_usage"], [24, 6, 1, "", "names"], [24, 6, 1, "", "ndim"], [24, 6, 1, "", "nlevels"], [24, 4, 1, "", "objType"], [24, 2, 1, "", "register"], [24, 4, 1, "", "registered_name"], [24, 2, 1, "", "save"], [85, 5, 1, "", "set_dtype"], [24, 6, 1, "", "shape"], [24, 2, 1, "", "to_csv"], [24, 2, 1, "", "to_dict"], [24, 2, 1, "", "to_hdf"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_ndarray"], [24, 2, 1, "", "to_pandas"], [24, 2, 1, "", "to_parquet"], [24, 2, 1, "", "unregister"], [24, 2, 1, "", "update_hdf"]], "arkouda.LogLevel": [[24, 4, 1, "", "CRITICAL"], [24, 4, 1, "", "DEBUG"], [24, 4, 1, "", "ERROR"], [24, 4, 1, "", "INFO"], [24, 4, 1, "", "WARN"]], "arkouda.MultiIndex": [[85, 5, 1, "", "argsort"], [85, 5, 1, "", "concat"], [24, 6, 1, "", "dtype"], [24, 2, 1, "", "equal_levels"], [24, 4, 1, "", "first"], [24, 2, 1, "", "get_level_values"], [24, 6, 1, "", "index"], [24, 6, 1, "", "inferred_type"], [24, 2, 1, "", "is_registered"], [24, 4, 1, "", "levels"], [85, 5, 1, "", "lookup"], [24, 2, 1, "", "memory_usage"], [24, 6, 1, "", "name"], [24, 6, 1, "", "names"], [24, 6, 1, "", "ndim"], [24, 6, 1, "", "nlevels"], [24, 4, 1, "", "objType"], [24, 2, 1, "", "register"], [24, 4, 1, "", "registered_name"], [85, 5, 1, "", "set_dtype"], [24, 2, 1, "", "to_dict"], [24, 2, 1, "", "to_hdf"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_ndarray"], [24, 2, 1, "", "to_pandas"], [24, 2, 1, "", "unregister"], [24, 2, 1, "", "update_hdf"]], "arkouda.NUMBER_FORMAT_STRINGS": [[24, 2, 1, "", "clear"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "fromkeys"], [24, 2, 1, "", "get"], [24, 2, 1, "", "items"], [24, 2, 1, "", "keys"], [24, 2, 1, "", "pop"], [24, 2, 1, "", "popitem"], [24, 2, 1, "", "setdefault"], [24, 2, 1, "", "update"], [24, 2, 1, "", "values"]], "arkouda.NumericDTypes": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.Power_divergenceResult": [[24, 4, 1, "", "pvalue"], [24, 4, 1, "", "statistic"]], "arkouda.ScalarDTypes": [[24, 2, 1, "", "copy"], [24, 2, 1, "", "difference"], [24, 2, 1, "", "intersection"], [24, 2, 1, "", "isdisjoint"], [24, 2, 1, "", "issubset"], [24, 2, 1, "", "issuperset"], [24, 2, 1, "", "symmetric_difference"], [24, 2, 1, "", "union"]], "arkouda.ScalarType": [[24, 2, 1, "", "count"], [24, 2, 1, "", "index"]], "arkouda.SegArray": [[24, 2, 1, "", "AND"], [24, 2, 1, "", "OR"], [24, 2, 1, "", "XOR"], [24, 2, 1, "", "aggregate"], [24, 2, 1, "", "all"], [24, 2, 1, "", "any"], [96, 5, 1, "", "append"], [96, 5, 1, "", "append_single"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 2, 1, "", "attach"], [24, 2, 1, "", "concat"], [24, 2, 1, "", "copy"], [24, 4, 1, "", "dtype"], [24, 2, 1, "", "filter"], [24, 2, 1, "", "from_multi_array"], [24, 2, 1, "", "from_parts"], [24, 2, 1, "", "from_return_msg"], [96, 5, 1, "", "get_jth"], [96, 5, 1, "", "get_length_n"], [96, 5, 1, "", "get_ngrams"], [96, 5, 1, "", "get_prefixes"], [96, 5, 1, "", "get_suffixes"], [24, 6, 1, "", "grouping"], [24, 2, 1, "", "hash"], [96, 5, 1, "", "intersect"], [24, 2, 1, "", "is_registered"], [24, 2, 1, "", "load"], [24, 4, 1, "", "logger"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "min"], [24, 6, 1, "", "nbytes"], [24, 6, 1, "", "non_empty"], [24, 2, 1, "", "nunique"], [24, 4, 1, "", "objType"], [96, 5, 1, "", "prepend_single"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "read_hdf"], [24, 2, 1, "", "register"], [24, 4, 1, "", "registered_name"], [96, 5, 1, "", "remove_repeats"], [24, 2, 1, "", "save"], [24, 4, 1, "", "segments"], [96, 5, 1, "", "set_jth"], [96, 5, 1, "", "setdiff"], [96, 5, 1, "", "setxor"], [24, 4, 1, "", "size"], [24, 2, 1, "", "sum"], [24, 2, 1, "", "to_hdf"], [24, 2, 1, "", "to_list"], [96, 5, 1, "", "to_ndarray"], [24, 2, 1, "", "to_parquet"], [24, 2, 1, "", "transfer"], [96, 5, 1, "", "union"], [24, 2, 1, "", "unique"], [24, 2, 1, "", "unregister"], [24, 2, 1, "", "unregister_segarray_by_name"], [24, 2, 1, "", "update_hdf"], [24, 4, 1, "", "valsize"], [24, 4, 1, "", "values"]], "arkouda.Series": [[24, 2, 1, "", "add"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 6, 1, "", "at"], [24, 2, 1, "", "attach"], [24, 2, 1, "", "concat"], [24, 2, 1, "", "diff"], [24, 2, 1, "", "dt"], [24, 6, 1, "", "dtype"], [24, 2, 1, "", "fillna"], [24, 2, 1, "", "from_return_msg"], [24, 2, 1, "", "has_repeat_labels"], [24, 2, 1, "", "hasnans"], [97, 5, 1, "", "head"], [24, 6, 1, "", "iat"], [24, 6, 1, "", "iloc"], [24, 2, 1, "", "is_registered"], [24, 2, 1, "", "isin"], [24, 2, 1, "", "isna"], [24, 2, 1, "", "isnull"], [24, 6, 1, "", "loc"], [97, 5, 1, "id0", "locate"], [24, 2, 1, "", "map"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "memory_usage"], [24, 2, 1, "", "min"], [24, 6, 1, "", "ndim"], [24, 2, 1, "", "notna"], [24, 2, 1, "", "notnull"], [24, 2, 1, "", "objType"], [97, 5, 1, "", "pdconcat"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "register"], [24, 6, 1, "", "shape"], [97, 5, 1, "", "sort_index"], [97, 5, 1, "", "sort_values"], [24, 2, 1, "", "std"], [24, 2, 1, "", "str_acc"], [24, 2, 1, "", "sum"], [97, 5, 1, "", "tail"], [24, 2, 1, "", "to_dataframe"], [24, 2, 1, "", "to_list"], [24, 2, 1, "", "to_markdown"], [24, 2, 1, "", "to_ndarray"], [97, 5, 1, "", "to_pandas"], [97, 5, 1, "", "topn"], [24, 2, 1, "", "unregister"], [24, 2, 1, "", "validate_key"], [24, 2, 1, "", "validate_val"], [97, 5, 1, "", "value_counts"], [24, 2, 1, "", "var"]], "arkouda.SeriesDTypes": [[24, 2, 1, "", "clear"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "fromkeys"], [24, 2, 1, "", "get"], [24, 2, 1, "", "items"], [24, 2, 1, "", "keys"], [24, 2, 1, "", "pop"], [24, 2, 1, "", "popitem"], [24, 2, 1, "", "setdefault"], [24, 2, 1, "", "update"], [24, 2, 1, "", "values"]], "arkouda.StringAccessor": [[24, 4, 1, "", "data"], [24, 4, 1, "", "series"]], "arkouda.Strings": [[24, 4, 1, "id729", "BinOps"], [24, 2, 1, "id730", "astype"], [24, 2, 1, "id731", "attach"], [24, 2, 1, "id732", "cached_regex_patterns"], [24, 2, 1, "id733", "capitalize"], [100, 2, 1, "", "contains"], [24, 2, 1, "id735", "decode"], [24, 4, 1, "id736", "dtype"], [24, 2, 1, "id737", "encode"], [100, 2, 1, "", "endswith"], [24, 4, 1, "id739", "entry"], [24, 2, 1, "id740", "equals"], [100, 2, 1, "", "find_locations"], [100, 2, 1, "", "findall"], [100, 2, 1, "", "flatten"], [24, 2, 1, "id744", "from_parts"], [24, 2, 1, "id745", "from_return_msg"], [100, 2, 1, "", "fullmatch"], [24, 2, 1, "id747", "get_bytes"], [24, 2, 1, "id748", "get_lengths"], [24, 2, 1, "id749", "get_offsets"], [24, 2, 1, "id750", "get_prefixes"], [24, 2, 1, "id751", "get_suffixes"], [24, 2, 1, "id752", "group"], [24, 2, 1, "id753", "hash"], [24, 6, 1, "id754", "inferred_type"], [24, 2, 1, "id755", "info"], [24, 2, 1, "id756", "is_registered"], [24, 2, 1, "id757", "isalnum"], [24, 2, 1, "id758", "isalpha"], [24, 2, 1, "id759", "isdecimal"], [24, 2, 1, "id760", "isdigit"], [24, 2, 1, "id761", "isempty"], [24, 2, 1, "id762", "islower"], [24, 2, 1, "id763", "isspace"], [24, 2, 1, "id764", "istitle"], [24, 2, 1, "id765", "isupper"], [24, 4, 1, "id766", "logger"], [24, 2, 1, "id767", "lower"], [100, 2, 1, "", "lstick"], [100, 2, 1, "", "match"], [24, 4, 1, "id724", "nbytes"], [24, 4, 1, "id725", "ndim"], [24, 4, 1, "id770", "objType"], [100, 2, 1, "", "peel"], [24, 2, 1, "id772", "pretty_print_info"], [24, 2, 1, "id773", "purge_cached_regex_patterns"], [24, 2, 1, "id774", "regex_split"], [24, 2, 1, "id775", "register"], [24, 4, 1, "id776", "registered_name"], [100, 2, 1, "", "rpeel"], [24, 2, 1, "id778", "save"], [100, 2, 1, "", "search"], [24, 4, 1, "id726", "shape"], [24, 4, 1, "id723", "size"], [100, 2, 1, "", "split"], [100, 2, 1, "", "startswith"], [100, 2, 1, "", "stick"], [24, 2, 1, "id783", "strip"], [100, 2, 1, "", "sub"], [100, 2, 1, "", "subn"], [24, 2, 1, "id786", "title"], [24, 2, 1, "id787", "to_csv"], [24, 2, 1, "id788", "to_hdf"], [24, 2, 1, "id789", "to_list"], [100, 5, 1, "", "to_ndarray"], [24, 2, 1, "id791", "to_parquet"], [24, 2, 1, "id792", "transfer"], [24, 2, 1, "id793", "unregister"], [24, 2, 1, "id794", "unregister_strings_by_name"], [24, 2, 1, "id795", "update_hdf"], [24, 2, 1, "id796", "upper"]], "arkouda.Timedelta": [[24, 2, 1, "id798", "abs"], [24, 6, 1, "id799", "components"], [24, 6, 1, "id800", "days"], [24, 2, 1, "id801", "is_registered"], [24, 6, 1, "id802", "microseconds"], [24, 6, 1, "id803", "nanoseconds"], [24, 2, 1, "id804", "register"], [24, 6, 1, "id805", "seconds"], [24, 4, 1, "id806", "special_objType"], [24, 2, 1, "id807", "std"], [24, 2, 1, "id808", "sum"], [24, 4, 1, "id809", "supported_opeq"], [24, 4, 1, "id810", "supported_with_datetime"], [24, 4, 1, "id811", "supported_with_pdarray"], [24, 4, 1, "id812", "supported_with_r_datetime"], [24, 4, 1, "id813", "supported_with_r_pdarray"], [24, 4, 1, "id814", "supported_with_r_timedelta"], [24, 4, 1, "id815", "supported_with_timedelta"], [24, 2, 1, "id816", "to_pandas"], [24, 2, 1, "id817", "total_seconds"], [24, 2, 1, "id818", "unregister"]], "arkouda.accessor": [[2, 1, 1, "", "CachedAccessor"], [2, 1, 1, "", "DatetimeAccessor"], [2, 1, 1, "", "Properties"], [2, 1, 1, "", "StringAccessor"], [2, 5, 1, "", "date_operators"], [2, 5, 1, "", "string_operators"]], "arkouda.accessor.DatetimeAccessor": [[2, 4, 1, "", "data"], [2, 4, 1, "", "series"]], "arkouda.accessor.StringAccessor": [[2, 4, 1, "", "data"], [2, 4, 1, "", "series"]], "arkouda.akfloat64": [[24, 2, 1, "id822", "as_integer_ratio"], [24, 2, 1, "id823", "fromhex"], [24, 2, 1, "id824", "hex"], [24, 2, 1, "id825", "is_integer"]], "arkouda.akint64": [[24, 2, 1, "id829", "bit_count"]], "arkouda.akuint64": [[24, 2, 1, "id833", "bit_count"]], "arkouda.alignment": [[3, 7, 1, "", "NonUniqueError"], [3, 5, 1, "", "align"], [3, 5, 1, "", "find"], [3, 5, 1, "", "in1d_intervals"], [3, 5, 1, "", "interval_lookup"], [3, 5, 1, "", "is_cosorted"], [3, 5, 1, "", "left_align"], [3, 5, 1, "", "lookup"], [3, 5, 1, "", "right_align"], [3, 5, 1, "", "search_intervals"], [3, 5, 1, "", "unsqueeze"], [3, 5, 1, "", "zero_up"]], "arkouda.array_api": [[8, 1, 1, "", "Array"], [4, 0, 0, "-", "array_object"], [5, 0, 0, "-", "creation_functions"], [6, 0, 0, "-", "data_type_functions"], [7, 0, 0, "-", "elementwise_functions"], [9, 0, 0, "-", "indexing_functions"], [10, 0, 0, "-", "linalg"], [11, 0, 0, "-", "manipulation_functions"], [12, 0, 0, "-", "searching_functions"], [13, 0, 0, "-", "set_functions"], [14, 0, 0, "-", "sorting_functions"], [15, 0, 0, "-", "statistical_functions"], [16, 0, 0, "-", "utility_functions"]], "arkouda.array_api.Array": [[8, 6, 1, "", "T"], [8, 2, 1, "", "chunk_info"], [8, 6, 1, "", "device"], [8, 6, 1, "", "dtype"], [8, 2, 1, "", "item"], [8, 6, 1, "", "mT"], [8, 6, 1, "", "ndim"], [8, 6, 1, "", "shape"], [8, 6, 1, "", "size"], [8, 2, 1, "", "to_device"], [8, 2, 1, "", "to_ndarray"], [8, 2, 1, "", "tolist"], [8, 2, 1, "", "transpose"]], "arkouda.array_api.array_object": [[4, 1, 1, "", "Array"], [4, 3, 1, "", "HANDLED_FUNCTIONS"], [4, 5, 1, "", "implements_numpy"]], "arkouda.array_api.array_object.Array": [[4, 6, 1, "", "T"], [4, 2, 1, "", "chunk_info"], [4, 6, 1, "", "device"], [4, 6, 1, "", "dtype"], [4, 2, 1, "", "item"], [4, 6, 1, "", "mT"], [4, 6, 1, "", "ndim"], [4, 6, 1, "", "shape"], [4, 6, 1, "", "size"], [4, 2, 1, "", "to_device"], [4, 2, 1, "", "to_ndarray"], [4, 2, 1, "", "tolist"], [4, 2, 1, "", "transpose"]], "arkouda.array_api.creation_functions": [[5, 5, 1, "", "arange"], [5, 5, 1, "", "asarray"], [5, 5, 1, "", "empty"], [5, 5, 1, "", "empty_like"], [5, 5, 1, "", "eye"], [5, 5, 1, "", "from_dlpack"], [5, 5, 1, "", "full"], [5, 5, 1, "", "full_like"], [5, 5, 1, "", "linspace"], [5, 5, 1, "", "meshgrid"], [5, 5, 1, "", "ones"], [5, 5, 1, "", "ones_like"], [5, 5, 1, "", "tril"], [5, 5, 1, "", "triu"], [5, 5, 1, "", "zeros"], [5, 5, 1, "", "zeros_like"]], "arkouda.array_api.data_type_functions": [[6, 5, 1, "", "astype"], [6, 5, 1, "", "can_cast"], [6, 5, 1, "", "finfo"], [6, 1, 1, "", "finfo_object"], [6, 5, 1, "", "iinfo"], [6, 1, 1, "", "iinfo_object"], [6, 5, 1, "", "isdtype"], [6, 5, 1, "", "result_type"]], "arkouda.array_api.data_type_functions.finfo_object": [[6, 4, 1, "", "bits"], [6, 4, 1, "", "dtype"], [6, 4, 1, "", "eps"], [6, 4, 1, "", "max"], [6, 4, 1, "", "min"], [6, 4, 1, "", "smallest_normal"]], "arkouda.array_api.data_type_functions.iinfo_object": [[6, 4, 1, "", "bits"], [6, 4, 1, "", "dtype"], [6, 4, 1, "", "max"], [6, 4, 1, "", "min"]], "arkouda.array_api.elementwise_functions": [[7, 5, 1, "", "abs"], [7, 5, 1, "", "acos"], [7, 5, 1, "", "acosh"], [7, 5, 1, "", "add"], [7, 5, 1, "", "asin"], [7, 5, 1, "", "asinh"], [7, 5, 1, "", "atan"], [7, 5, 1, "", "atan2"], [7, 5, 1, "", "atanh"], [7, 5, 1, "", "bitwise_and"], [7, 5, 1, "", "bitwise_invert"], [7, 5, 1, "", "bitwise_left_shift"], [7, 5, 1, "", "bitwise_or"], [7, 5, 1, "", "bitwise_right_shift"], [7, 5, 1, "", "bitwise_xor"], [7, 5, 1, "", "ceil"], [7, 5, 1, "", "conj"], [7, 5, 1, "", "cos"], [7, 5, 1, "", "cosh"], [7, 5, 1, "", "divide"], [7, 5, 1, "", "equal"], [7, 5, 1, "", "exp"], [7, 5, 1, "", "expm1"], [7, 5, 1, "", "floor"], [7, 5, 1, "", "floor_divide"], [7, 5, 1, "", "greater"], [7, 5, 1, "", "greater_equal"], [7, 5, 1, "", "imag"], [7, 5, 1, "", "isfinite"], [7, 5, 1, "", "isinf"], [7, 5, 1, "", "isnan"], [7, 5, 1, "", "less"], [7, 5, 1, "", "less_equal"], [7, 5, 1, "", "log"], [7, 5, 1, "", "log10"], [7, 5, 1, "", "log1p"], [7, 5, 1, "", "log2"], [7, 5, 1, "", "logaddexp"], [7, 5, 1, "", "logical_and"], [7, 5, 1, "", "logical_not"], [7, 5, 1, "", "logical_or"], [7, 5, 1, "", "logical_xor"], [7, 5, 1, "", "multiply"], [7, 5, 1, "", "negative"], [7, 5, 1, "", "not_equal"], [7, 5, 1, "", "positive"], [7, 5, 1, "", "pow"], [7, 5, 1, "", "real"], [7, 5, 1, "", "remainder"], [7, 5, 1, "", "round"], [7, 5, 1, "", "sign"], [7, 5, 1, "", "sin"], [7, 5, 1, "", "sinh"], [7, 5, 1, "", "sqrt"], [7, 5, 1, "", "square"], [7, 5, 1, "", "subtract"], [7, 5, 1, "", "tan"], [7, 5, 1, "", "tanh"], [7, 5, 1, "", "trunc"]], "arkouda.array_api.indexing_functions": [[9, 5, 1, "", "take"]], "arkouda.array_api.linalg": [[10, 5, 1, "", "matmul"], [10, 5, 1, "", "matrix_transpose"], [10, 5, 1, "", "tensordot"], [10, 5, 1, "", "vecdot"]], "arkouda.array_api.manipulation_functions": [[11, 5, 1, "", "broadcast_arrays"], [11, 5, 1, "", "broadcast_to"], [11, 5, 1, "", "concat"], [11, 5, 1, "", "expand_dims"], [11, 5, 1, "", "flip"], [11, 5, 1, "", "moveaxis"], [11, 5, 1, "", "permute_dims"], [11, 5, 1, "", "repeat"], [11, 5, 1, "", "reshape"], [11, 5, 1, "", "roll"], [11, 5, 1, "", "squeeze"], [11, 5, 1, "", "stack"], [11, 5, 1, "", "tile"], [11, 5, 1, "", "unstack"]], "arkouda.array_api.searching_functions": [[12, 5, 1, "", "argmax"], [12, 5, 1, "", "argmin"], [12, 5, 1, "", "nonzero"], [12, 5, 1, "", "searchsorted"], [12, 5, 1, "", "where"]], "arkouda.array_api.set_functions": [[13, 1, 1, "", "UniqueAllResult"], [13, 1, 1, "", "UniqueCountsResult"], [13, 1, 1, "", "UniqueInverseResult"], [13, 5, 1, "", "unique_all"], [13, 5, 1, "", "unique_counts"], [13, 5, 1, "", "unique_inverse"], [13, 5, 1, "", "unique_values"]], "arkouda.array_api.set_functions.UniqueAllResult": [[13, 4, 1, "", "counts"], [13, 4, 1, "", "indices"], [13, 4, 1, "", "inverse_indices"], [13, 4, 1, "", "values"]], "arkouda.array_api.set_functions.UniqueCountsResult": [[13, 4, 1, "", "counts"], [13, 4, 1, "", "values"]], "arkouda.array_api.set_functions.UniqueInverseResult": [[13, 4, 1, "", "inverse_indices"], [13, 4, 1, "", "values"]], "arkouda.array_api.sorting_functions": [[14, 5, 1, "", "argsort"], [14, 5, 1, "", "sort"]], "arkouda.array_api.statistical_functions": [[15, 5, 1, "", "cumulative_sum"], [15, 5, 1, "", "max"], [15, 5, 1, "", "mean"], [15, 5, 1, "", "mean_shim"], [15, 5, 1, "", "min"], [15, 5, 1, "", "prod"], [15, 5, 1, "", "std"], [15, 5, 1, "", "sum"], [15, 5, 1, "", "var"]], "arkouda.array_api.utility_functions": [[16, 5, 1, "", "all"], [16, 5, 1, "", "any"], [16, 5, 1, "", "clip"], [16, 5, 1, "", "diff"], [16, 5, 1, "", "pad"]], "arkouda.bigint": [[24, 2, 1, "id845", "itemsize"], [24, 2, 1, "id846", "name"], [24, 2, 1, "id847", "ndim"], [24, 2, 1, "id848", "shape"], [24, 2, 1, "id849", "type"]], "arkouda.bitType": [[24, 2, 1, "id853", "bit_count"]], "arkouda.byte": [[24, 2, 1, "", "bit_count"]], "arkouda.bytes_": [[24, 2, 1, "", "T"], [24, 2, 1, "", "all"], [24, 2, 1, "", "any"], [24, 2, 1, "", "argmax"], [24, 2, 1, "", "argmin"], [24, 2, 1, "", "argsort"], [24, 2, 1, "", "astype"], [24, 2, 1, "", "base"], [24, 2, 1, "", "byteswap"], [24, 2, 1, "", "choose"], [24, 2, 1, "", "clip"], [24, 2, 1, "", "compress"], [24, 2, 1, "", "conj"], [24, 2, 1, "", "conjugate"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "cumprod"], [24, 2, 1, "", "cumsum"], [24, 2, 1, "", "data"], [24, 2, 1, "", "diagonal"], [24, 2, 1, "", "dtype"], [24, 2, 1, "", "dump"], [24, 2, 1, "", "dumps"], [24, 2, 1, "", "fill"], [24, 2, 1, "", "flags"], [24, 2, 1, "", "flat"], [24, 2, 1, "", "flatten"], [24, 2, 1, "", "getfield"], [24, 2, 1, "", "imag"], [24, 2, 1, "", "item"], [24, 2, 1, "", "itemset"], [24, 2, 1, "", "itemsize"], [24, 2, 1, "", "max"], [24, 2, 1, "", "mean"], [24, 2, 1, "", "min"], [24, 2, 1, "", "nbytes"], [24, 2, 1, "", "ndim"], [24, 2, 1, "", "newbyteorder"], [24, 2, 1, "", "nonzero"], [24, 2, 1, "", "prod"], [24, 2, 1, "", "ptp"], [24, 2, 1, "", "put"], [24, 2, 1, "", "ravel"], [24, 2, 1, "", "real"], [24, 2, 1, "", "repeat"], [24, 2, 1, "", "reshape"], [24, 2, 1, "", "resize"], [24, 2, 1, "", "round"], [24, 2, 1, "", "searchsorted"], [24, 2, 1, "", "setfield"], [24, 2, 1, "", "setflags"], [24, 2, 1, "", "shape"], [24, 2, 1, "", "size"], [24, 2, 1, "", "sort"], [24, 2, 1, "", "squeeze"], [24, 2, 1, "", "std"], [24, 2, 1, "", "strides"], [24, 2, 1, "", "sum"], [24, 2, 1, "", "swapaxes"], [24, 2, 1, "", "take"], [24, 2, 1, "", "tobytes"], [24, 2, 1, "", "tofile"], [24, 2, 1, "", "tolist"], [24, 2, 1, "", "tostring"], [24, 2, 1, "", "trace"], [24, 2, 1, "", "transpose"], [24, 2, 1, "", "var"], [24, 2, 1, "", "view"]], "arkouda.categorical": [[17, 1, 1, "", "Categorical"]], "arkouda.categorical.Categorical": [[17, 4, 1, "", "BinOps"], [17, 4, 1, "", "RegisterablePieces"], [17, 4, 1, "", "RequiredPieces"], [17, 2, 1, "", "argsort"], [17, 2, 1, "", "attach"], [17, 4, 1, "", "categories"], [17, 4, 1, "", "codes"], [17, 2, 1, "", "concatenate"], [17, 2, 1, "", "contains"], [17, 4, 1, "", "dtype"], [17, 2, 1, "", "endswith"], [17, 2, 1, "", "equals"], [17, 2, 1, "", "from_codes"], [17, 2, 1, "", "from_return_msg"], [17, 2, 1, "", "group"], [17, 2, 1, "", "hash"], [17, 2, 1, "", "in1d"], [17, 6, 1, "", "inferred_type"], [17, 2, 1, "", "info"], [17, 2, 1, "", "is_registered"], [17, 2, 1, "", "isna"], [17, 4, 1, "", "logger"], [17, 6, 1, "", "nbytes"], [17, 4, 1, "id0", "ndim"], [17, 4, 1, "id1", "nlevels"], [17, 4, 1, "", "objType"], [17, 2, 1, "", "parse_hdf_categoricals"], [17, 4, 1, "id2", "permutation"], [17, 2, 1, "", "pretty_print_info"], [17, 2, 1, "", "register"], [17, 4, 1, "", "registered_name"], [17, 2, 1, "", "reset_categories"], [17, 2, 1, "", "save"], [17, 4, 1, "id3", "segments"], [17, 2, 1, "", "set_categories"], [17, 4, 1, "id4", "shape"], [17, 4, 1, "id5", "size"], [17, 2, 1, "", "sort_values"], [17, 2, 1, "", "standardize_categories"], [17, 2, 1, "", "startswith"], [17, 2, 1, "", "to_hdf"], [17, 2, 1, "", "to_list"], [17, 2, 1, "", "to_ndarray"], [17, 2, 1, "", "to_pandas"], [17, 2, 1, "", "to_parquet"], [17, 2, 1, "", "to_strings"], [17, 2, 1, "", "transfer"], [17, 2, 1, "", "unique"], [17, 2, 1, "", "unregister"], [17, 2, 1, "", "unregister_categorical_by_name"], [17, 2, 1, "", "update_hdf"]], "arkouda.client": [[18, 5, 1, "", "connect"], [18, 5, 1, "", "disconnect"], [18, 5, 1, "", "generate_history"], [18, 5, 1, "", "get_config"], [18, 5, 1, "", "get_max_array_rank"], [18, 5, 1, "", "get_mem_avail"], [18, 5, 1, "", "get_mem_status"], [18, 5, 1, "", "get_mem_used"], [18, 5, 1, "", "get_server_commands"], [18, 5, 1, "", "print_server_commands"], [18, 5, 1, "", "ruok"], [18, 5, 1, "", "shutdown"]], "arkouda.client_dtypes": [[19, 1, 1, "", "BitVector"], [19, 5, 1, "", "BitVectorizer"], [19, 1, 1, "", "Fields"], [19, 1, 1, "", "IPv4"], [19, 5, 1, "", "ip_address"], [19, 5, 1, "", "is_ipv4"], [19, 5, 1, "", "is_ipv6"]], "arkouda.client_dtypes.BitVector": [[19, 4, 1, "", "conserves"], [19, 2, 1, "", "format"], [19, 2, 1, "", "from_return_msg"], [19, 2, 1, "", "opeq"], [19, 2, 1, "", "register"], [19, 4, 1, "", "registered_name"], [19, 4, 1, "", "reverse"], [19, 4, 1, "", "special_objType"], [19, 2, 1, "", "to_list"], [19, 2, 1, "", "to_ndarray"], [19, 4, 1, "", "values"], [19, 4, 1, "", "width"]], "arkouda.client_dtypes.Fields": [[19, 4, 1, "", "MSB_left"], [19, 2, 1, "", "format"], [19, 4, 1, "", "name"], [19, 4, 1, "", "names"], [19, 4, 1, "", "namewidth"], [19, 2, 1, "", "opeq"], [19, 4, 1, "", "pad"], [19, 4, 1, "", "padchar"], [19, 4, 1, "", "separator"], [19, 4, 1, "", "show_int"], [19, 4, 1, "", "width"]], "arkouda.client_dtypes.IPv4": [[19, 2, 1, "", "export_uint"], [19, 2, 1, "", "format"], [19, 2, 1, "", "normalize"], [19, 2, 1, "", "opeq"], [19, 2, 1, "", "register"], [19, 4, 1, "", "special_objType"], [19, 2, 1, "", "to_hdf"], [19, 2, 1, "", "to_list"], [19, 2, 1, "", "to_ndarray"], [19, 2, 1, "", "update_hdf"], [19, 4, 1, "", "values"]], "arkouda.dataframe": [[20, 1, 1, "", "DataFrame"], [20, 1, 1, "", "DataFrameGroupBy"], [20, 1, 1, "", "DiffAggregate"], [20, 5, 1, "", "intersect"], [20, 5, 1, "", "intx"], [20, 5, 1, "", "invert_permutation"], [20, 5, 1, "", "merge"]], "arkouda.dataframe.DataFrame": [[20, 2, 1, "", "GroupBy"], [20, 2, 1, "", "all"], [20, 2, 1, "", "any"], [20, 2, 1, "", "append"], [20, 2, 1, "", "apply_permutation"], [20, 2, 1, "", "argsort"], [20, 2, 1, "", "assign"], [20, 2, 1, "", "attach"], [20, 2, 1, "", "coargsort"], [20, 6, 1, "", "columns"], [20, 2, 1, "", "concat"], [20, 2, 1, "", "corr"], [20, 2, 1, "", "count"], [20, 2, 1, "", "drop"], [20, 2, 1, "", "drop_duplicates"], [20, 2, 1, "", "dropna"], [20, 6, 1, "", "dtypes"], [20, 6, 1, "", "empty"], [20, 2, 1, "", "filter_by_range"], [20, 2, 1, "", "from_pandas"], [20, 2, 1, "", "from_return_msg"], [20, 2, 1, "", "groupby"], [20, 2, 1, "", "head"], [20, 6, 1, "", "index"], [20, 6, 1, "", "info"], [20, 2, 1, "", "is_registered"], [20, 2, 1, "", "isin"], [20, 2, 1, "", "isna"], [20, 2, 1, "", "load"], [20, 2, 1, "", "memory_usage"], [20, 2, 1, "", "memory_usage_info"], [20, 2, 1, "", "merge"], [20, 2, 1, "", "notna"], [20, 2, 1, "", "objType"], [20, 2, 1, "", "read_csv"], [20, 2, 1, "", "register"], [20, 2, 1, "", "rename"], [20, 2, 1, "", "reset_index"], [20, 2, 1, "", "sample"], [20, 2, 1, "", "save"], [20, 6, 1, "", "shape"], [20, 6, 1, "", "size"], [20, 2, 1, "", "sort_index"], [20, 2, 1, "", "sort_values"], [20, 2, 1, "", "tail"], [20, 2, 1, "", "to_csv"], [20, 2, 1, "", "to_hdf"], [20, 2, 1, "", "to_markdown"], [20, 2, 1, "", "to_pandas"], [20, 2, 1, "", "to_parquet"], [20, 2, 1, "", "transfer"], [20, 2, 1, "", "unregister"], [20, 2, 1, "", "unregister_dataframe_by_name"], [20, 2, 1, "", "update_hdf"], [20, 2, 1, "", "update_nrows"]], "arkouda.dataframe.DataFrameGroupBy": [[20, 2, 1, "", "all"], [20, 2, 1, "", "any"], [20, 2, 1, "", "argmax"], [20, 2, 1, "", "argmin"], [20, 4, 1, "", "as_index"], [20, 2, 1, "", "broadcast"], [20, 2, 1, "", "count"], [20, 4, 1, "", "df"], [20, 2, 1, "", "diff"], [20, 2, 1, "", "first"], [20, 4, 1, "", "gb"], [20, 4, 1, "", "gb_key_names"], [20, 2, 1, "", "head"], [20, 2, 1, "", "max"], [20, 2, 1, "", "mean"], [20, 2, 1, "", "median"], [20, 2, 1, "", "min"], [20, 2, 1, "", "mode"], [20, 2, 1, "", "nunique"], [20, 2, 1, "", "prod"], [20, 2, 1, "", "sample"], [20, 2, 1, "", "size"], [20, 2, 1, "", "std"], [20, 2, 1, "", "sum"], [20, 2, 1, "", "tail"], [20, 2, 1, "", "unique"], [20, 2, 1, "", "var"], [20, 2, 1, "", "xor"]], "arkouda.dataframe.DiffAggregate": [[20, 2, 1, "", "all"], [20, 2, 1, "", "any"], [20, 2, 1, "", "argmax"], [20, 2, 1, "", "argmin"], [20, 2, 1, "", "count"], [20, 2, 1, "", "first"], [20, 4, 1, "", "gb"], [20, 2, 1, "", "max"], [20, 2, 1, "", "mean"], [20, 2, 1, "", "median"], [20, 2, 1, "", "min"], [20, 2, 1, "", "mode"], [20, 2, 1, "", "nunique"], [20, 2, 1, "", "prod"], [20, 2, 1, "", "std"], [20, 2, 1, "", "sum"], [20, 2, 1, "", "unique"], [20, 4, 1, "", "values"], [20, 2, 1, "", "var"], [20, 2, 1, "", "xor"]], "arkouda.double": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "fromhex"], [24, 2, 1, "", "hex"], [24, 2, 1, "", "is_integer"]], "arkouda.dtypes": [[21, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [21, 1, 1, "", "ARKOUDA_SUPPORTED_FLOATS"], [21, 1, 1, "", "ARKOUDA_SUPPORTED_INTS"], [21, 1, 1, "", "ARKOUDA_SUPPORTED_NUMBERS"], [21, 1, 1, "", "DType"], [21, 1, 1, "", "DTypeObjects"], [21, 1, 1, "", "DTypes"], [21, 1, 1, "", "Enum"], [21, 1, 1, "", "NUMBER_FORMAT_STRINGS"], [21, 1, 1, "", "NumericDTypes"], [21, 1, 1, "", "ScalarDTypes"], [21, 1, 1, "", "SeriesDTypes"], [21, 1, 1, "", "Union"], [21, 1, 1, "", "all_scalars"], [21, 1, 1, "", "annotations"], [21, 1, 1, "", "bigint"], [21, 1, 1, "", "bitType"], [21, 1, 1, "", "bool_"], [21, 1, 1, "", "bool_scalars"], [21, 5, 1, "", "cast"], [21, 1, 1, "", "complex128"], [21, 1, 1, "", "complex64"], [21, 5, 1, "", "dtype"], [21, 1, 1, "", "float16"], [21, 1, 1, "", "float32"], [21, 1, 1, "", "float64"], [21, 1, 1, "", "float_scalars"], [21, 5, 1, "", "get_byteorder"], [21, 5, 1, "", "get_server_byteorder"], [21, 1, 1, "", "int16"], [21, 1, 1, "", "int32"], [21, 1, 1, "", "int64"], [21, 1, 1, "", "int8"], [21, 1, 1, "", "intTypes"], [21, 1, 1, "", "int_scalars"], [21, 5, 1, "", "isSupportedFloat"], [21, 5, 1, "", "isSupportedInt"], [21, 5, 1, "", "isSupportedNumber"], [21, 1, 1, "", "numeric_and_bool_scalars"], [21, 1, 1, "", "numeric_scalars"], [21, 1, 1, "", "numpy_scalars"], [21, 5, 1, "", "resolve_scalar_dtype"], [21, 1, 1, "", "str_"], [21, 1, 1, "", "str_scalars"], [21, 1, 1, "", "uint16"], [21, 1, 1, "", "uint32"], [21, 1, 1, "", "uint64"], [21, 1, 1, "", "uint8"]], "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.ARKOUDA_SUPPORTED_FLOATS": [[21, 2, 1, "", "count"], [21, 2, 1, "", "index"]], "arkouda.dtypes.ARKOUDA_SUPPORTED_INTS": [[21, 2, 1, "", "count"], [21, 2, 1, "", "index"]], "arkouda.dtypes.ARKOUDA_SUPPORTED_NUMBERS": [[21, 2, 1, "", "count"], [21, 2, 1, "", "index"]], "arkouda.dtypes.DType": [[21, 2, 1, "", "BIGINT"], [21, 2, 1, "", "BOOL"], [21, 2, 1, "", "COMPLEX128"], [21, 2, 1, "", "COMPLEX64"], [21, 2, 1, "", "FLOAT"], [21, 2, 1, "", "FLOAT32"], [21, 2, 1, "", "FLOAT64"], [21, 2, 1, "", "INT"], [21, 2, 1, "", "INT16"], [21, 2, 1, "", "INT32"], [21, 2, 1, "", "INT64"], [21, 2, 1, "", "INT8"], [21, 2, 1, "", "STR"], [21, 2, 1, "", "UINT"], [21, 2, 1, "", "UINT16"], [21, 2, 1, "", "UINT32"], [21, 2, 1, "", "UINT64"], [21, 2, 1, "", "UINT8"], [21, 2, 1, "", "name"], [21, 2, 1, "", "value"]], "arkouda.dtypes.DTypeObjects": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.DTypes": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.NUMBER_FORMAT_STRINGS": [[21, 2, 1, "", "clear"], [21, 2, 1, "", "copy"], [21, 2, 1, "", "fromkeys"], [21, 2, 1, "", "get"], [21, 2, 1, "", "items"], [21, 2, 1, "", "keys"], [21, 2, 1, "", "pop"], [21, 2, 1, "", "popitem"], [21, 2, 1, "", "setdefault"], [21, 2, 1, "", "update"], [21, 2, 1, "", "values"]], "arkouda.dtypes.NumericDTypes": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.ScalarDTypes": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.SeriesDTypes": [[21, 2, 1, "", "clear"], [21, 2, 1, "", "copy"], [21, 2, 1, "", "fromkeys"], [21, 2, 1, "", "get"], [21, 2, 1, "", "items"], [21, 2, 1, "", "keys"], [21, 2, 1, "", "pop"], [21, 2, 1, "", "popitem"], [21, 2, 1, "", "setdefault"], [21, 2, 1, "", "update"], [21, 2, 1, "", "values"]], "arkouda.dtypes.annotations": [[21, 2, 1, "", "compiler_flag"], [21, 2, 1, "", "getMandatoryRelease"], [21, 2, 1, "", "getOptionalRelease"], [21, 2, 1, "", "mandatory"], [21, 2, 1, "", "optional"]], "arkouda.dtypes.bigint": [[21, 2, 1, "", "itemsize"], [21, 2, 1, "", "name"], [21, 2, 1, "", "ndim"], [21, 2, 1, "", "shape"], [21, 2, 1, "", "type"]], "arkouda.dtypes.bitType": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.float16": [[21, 2, 1, "", "as_integer_ratio"], [21, 2, 1, "", "is_integer"]], "arkouda.dtypes.float32": [[21, 2, 1, "", "as_integer_ratio"], [21, 2, 1, "", "is_integer"]], "arkouda.dtypes.float64": [[21, 2, 1, "", "as_integer_ratio"], [21, 2, 1, "", "fromhex"], [21, 2, 1, "", "hex"], [21, 2, 1, "", "is_integer"]], "arkouda.dtypes.int16": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.int32": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.int64": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.int8": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.intTypes": [[21, 2, 1, "", "copy"], [21, 2, 1, "", "difference"], [21, 2, 1, "", "intersection"], [21, 2, 1, "", "isdisjoint"], [21, 2, 1, "", "issubset"], [21, 2, 1, "", "issuperset"], [21, 2, 1, "", "symmetric_difference"], [21, 2, 1, "", "union"]], "arkouda.dtypes.str_": [[21, 2, 1, "", "T"], [21, 2, 1, "", "all"], [21, 2, 1, "", "any"], [21, 2, 1, "", "argmax"], [21, 2, 1, "", "argmin"], [21, 2, 1, "", "argsort"], [21, 2, 1, "", "astype"], [21, 2, 1, "", "base"], [21, 2, 1, "", "byteswap"], [21, 2, 1, "", "choose"], [21, 2, 1, "", "clip"], [21, 2, 1, "", "compress"], [21, 2, 1, "", "conj"], [21, 2, 1, "", "conjugate"], [21, 2, 1, "", "copy"], [21, 2, 1, "", "cumprod"], [21, 2, 1, "", "cumsum"], [21, 2, 1, "", "data"], [21, 2, 1, "", "diagonal"], [21, 2, 1, "", "dtype"], [21, 2, 1, "", "dump"], [21, 2, 1, "", "dumps"], [21, 2, 1, "", "fill"], [21, 2, 1, "", "flags"], [21, 2, 1, "", "flat"], [21, 2, 1, "", "flatten"], [21, 2, 1, "", "getfield"], [21, 2, 1, "", "imag"], [21, 2, 1, "", "item"], [21, 2, 1, "", "itemset"], [21, 2, 1, "", "itemsize"], [21, 2, 1, "", "max"], [21, 2, 1, "", "mean"], [21, 2, 1, "", "min"], [21, 2, 1, "", "nbytes"], [21, 2, 1, "", "ndim"], [21, 2, 1, "", "newbyteorder"], [21, 2, 1, "", "nonzero"], [21, 2, 1, "", "prod"], [21, 2, 1, "", "ptp"], [21, 2, 1, "", "put"], [21, 2, 1, "", "ravel"], [21, 2, 1, "", "real"], [21, 2, 1, "", "repeat"], [21, 2, 1, "", "reshape"], [21, 2, 1, "", "resize"], [21, 2, 1, "", "round"], [21, 2, 1, "", "searchsorted"], [21, 2, 1, "", "setfield"], [21, 2, 1, "", "setflags"], [21, 2, 1, "", "shape"], [21, 2, 1, "", "size"], [21, 2, 1, "", "sort"], [21, 2, 1, "", "squeeze"], [21, 2, 1, "", "std"], [21, 2, 1, "", "strides"], [21, 2, 1, "", "sum"], [21, 2, 1, "", "swapaxes"], [21, 2, 1, "", "take"], [21, 2, 1, "", "tobytes"], [21, 2, 1, "", "tofile"], [21, 2, 1, "", "tolist"], [21, 2, 1, "", "tostring"], [21, 2, 1, "", "trace"], [21, 2, 1, "", "transpose"], [21, 2, 1, "", "var"], [21, 2, 1, "", "view"]], "arkouda.dtypes.uint16": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.uint32": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.uint64": [[21, 2, 1, "", "bit_count"]], "arkouda.dtypes.uint8": [[21, 2, 1, "", "bit_count"]], "arkouda.finfo": [[24, 4, 1, "", "bits"], [24, 4, 1, "", "dtype"], [24, 4, 1, "", "eps"], [24, 4, 1, "", "epsneg"], [24, 4, 1, "", "iexp"], [24, 4, 1, "", "machep"], [24, 4, 1, "", "max"], [24, 4, 1, "", "maxexp"], [24, 4, 1, "", "min"], [24, 4, 1, "", "minexp"], [24, 4, 1, "", "negep"], [24, 4, 1, "", "nexp"], [24, 4, 1, "", "nmant"], [24, 4, 1, "", "precision"], [24, 4, 1, "", "resolution"], [24, 6, 1, "id873", "smallest_normal"], [24, 4, 1, "", "smallest_subnormal"], [24, 6, 1, "id874", "tiny"]], "arkouda.float16": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.float32": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.float64": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "fromhex"], [24, 2, 1, "", "hex"], [24, 2, 1, "", "is_integer"]], "arkouda.float_": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "fromhex"], [24, 2, 1, "", "hex"], [24, 2, 1, "", "is_integer"]], "arkouda.format_parser": [[24, 4, 1, "", "dtype"]], "arkouda.groupbyclass": [[22, 1, 1, "", "GROUPBY_REDUCTION_TYPES"], [22, 1, 1, "", "GroupBy"], [22, 5, 1, "", "broadcast"], [22, 5, 1, "", "unique"]], "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES": [[22, 2, 1, "", "copy"], [22, 2, 1, "", "difference"], [22, 2, 1, "", "intersection"], [22, 2, 1, "", "isdisjoint"], [22, 2, 1, "", "issubset"], [22, 2, 1, "", "issuperset"], [22, 2, 1, "", "symmetric_difference"], [22, 2, 1, "", "union"]], "arkouda.groupbyclass.GroupBy": [[22, 2, 1, "", "AND"], [22, 2, 1, "", "OR"], [22, 2, 1, "", "Reductions"], [22, 2, 1, "", "XOR"], [22, 2, 1, "", "aggregate"], [22, 2, 1, "", "all"], [22, 2, 1, "", "any"], [22, 2, 1, "", "argmax"], [22, 2, 1, "", "argmin"], [22, 2, 1, "", "attach"], [22, 2, 1, "", "broadcast"], [22, 2, 1, "", "build_from_components"], [22, 2, 1, "", "count"], [22, 4, 1, "", "dropna"], [22, 2, 1, "", "first"], [22, 2, 1, "", "from_return_msg"], [22, 2, 1, "", "head"], [22, 2, 1, "", "is_registered"], [22, 4, 1, "", "logger"], [22, 2, 1, "", "max"], [22, 2, 1, "", "mean"], [22, 2, 1, "", "median"], [22, 2, 1, "", "min"], [22, 2, 1, "", "mode"], [22, 2, 1, "", "most_common"], [22, 4, 1, "", "ngroups"], [22, 4, 1, "", "nkeys"], [22, 2, 1, "", "nunique"], [22, 2, 1, "", "objType"], [22, 4, 1, "", "permutation"], [22, 2, 1, "", "prod"], [22, 2, 1, "", "register"], [22, 2, 1, "", "sample"], [22, 4, 1, "", "segments"], [22, 2, 1, "id0", "size"], [22, 2, 1, "", "std"], [22, 2, 1, "", "sum"], [22, 2, 1, "", "tail"], [22, 2, 1, "", "to_hdf"], [22, 2, 1, "", "unique"], [22, 4, 1, "", "unique_keys"], [22, 2, 1, "", "unregister"], [22, 2, 1, "", "unregister_groupby_by_name"], [22, 2, 1, "", "update_hdf"], [22, 2, 1, "", "var"]], "arkouda.half": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.history": [[23, 1, 1, "", "HistoryRetriever"], [23, 1, 1, "", "NotebookHistoryRetriever"], [23, 1, 1, "", "ShellHistoryRetriever"]], "arkouda.history.HistoryRetriever": [[23, 2, 1, "", "retrieve"]], "arkouda.history.NotebookHistoryRetriever": [[23, 2, 1, "", "retrieve"]], "arkouda.history.ShellHistoryRetriever": [[23, 2, 1, "", "retrieve"]], "arkouda.iinfo": [[24, 4, 1, "", "bits"], [24, 4, 1, "", "dtype"], [24, 6, 1, "id879", "max"], [24, 6, 1, "id880", "min"]], "arkouda.index": [[25, 1, 1, "", "Index"], [25, 1, 1, "", "MultiIndex"]], "arkouda.index.Index": [[25, 2, 1, "", "argsort"], [25, 2, 1, "", "concat"], [25, 2, 1, "", "equals"], [25, 2, 1, "", "factory"], [25, 2, 1, "", "from_return_msg"], [25, 6, 1, "", "index"], [25, 6, 1, "", "inferred_type"], [25, 2, 1, "", "is_registered"], [25, 2, 1, "", "lookup"], [25, 2, 1, "", "map"], [25, 4, 1, "", "max_list_size"], [25, 2, 1, "", "memory_usage"], [25, 6, 1, "", "names"], [25, 6, 1, "", "ndim"], [25, 6, 1, "", "nlevels"], [25, 4, 1, "", "objType"], [25, 2, 1, "", "register"], [25, 4, 1, "", "registered_name"], [25, 2, 1, "", "save"], [25, 2, 1, "", "set_dtype"], [25, 6, 1, "", "shape"], [25, 2, 1, "", "to_csv"], [25, 2, 1, "", "to_dict"], [25, 2, 1, "", "to_hdf"], [25, 2, 1, "", "to_list"], [25, 2, 1, "", "to_ndarray"], [25, 2, 1, "", "to_pandas"], [25, 2, 1, "", "to_parquet"], [25, 2, 1, "", "unregister"], [25, 2, 1, "", "update_hdf"]], "arkouda.index.MultiIndex": [[25, 2, 1, "", "argsort"], [25, 2, 1, "", "concat"], [25, 6, 1, "", "dtype"], [25, 2, 1, "", "equal_levels"], [25, 4, 1, "", "first"], [25, 2, 1, "", "get_level_values"], [25, 6, 1, "", "index"], [25, 6, 1, "", "inferred_type"], [25, 2, 1, "", "is_registered"], [25, 4, 1, "", "levels"], [25, 2, 1, "", "lookup"], [25, 2, 1, "", "memory_usage"], [25, 6, 1, "", "name"], [25, 6, 1, "", "names"], [25, 6, 1, "", "ndim"], [25, 6, 1, "", "nlevels"], [25, 4, 1, "", "objType"], [25, 2, 1, "", "register"], [25, 4, 1, "", "registered_name"], [25, 2, 1, "", "set_dtype"], [25, 2, 1, "", "to_dict"], [25, 2, 1, "", "to_hdf"], [25, 2, 1, "", "to_list"], [25, 2, 1, "", "to_ndarray"], [25, 2, 1, "", "to_pandas"], [25, 2, 1, "", "unregister"], [25, 2, 1, "", "update_hdf"]], "arkouda.infoclass": [[26, 3, 1, "", "AllSymbols"], [26, 3, 1, "", "RegisteredSymbols"], [26, 5, 1, "", "information"], [26, 5, 1, "", "list_registry"], [26, 5, 1, "", "list_symbol_table"], [26, 5, 1, "", "pretty_print_information"]], "arkouda.int16": [[24, 2, 1, "", "bit_count"]], "arkouda.int32": [[24, 2, 1, "", "bit_count"]], "arkouda.int64": [[24, 2, 1, "id884", "bit_count"]], "arkouda.int8": [[24, 2, 1, "", "bit_count"]], "arkouda.intTypes": [[24, 2, 1, "id895", "copy"], [24, 2, 1, "id896", "difference"], [24, 2, 1, "id897", "intersection"], [24, 2, 1, "id898", "isdisjoint"], [24, 2, 1, "id899", "issubset"], [24, 2, 1, "id900", "issuperset"], [24, 2, 1, "id901", "symmetric_difference"], [24, 2, 1, "id902", "union"]], "arkouda.int_": [[24, 2, 1, "", "bit_count"]], "arkouda.intc": [[24, 2, 1, "", "bit_count"]], "arkouda.integer": [[24, 2, 1, "", "denominator"], [24, 2, 1, "", "is_integer"], [24, 2, 1, "", "numerator"]], "arkouda.intp": [[24, 2, 1, "", "bit_count"]], "arkouda.io": [[27, 5, 1, "", "export"], [27, 5, 1, "", "get_columns"], [27, 5, 1, "", "get_datasets"], [27, 5, 1, "", "get_filetype"], [27, 5, 1, "", "get_null_indices"], [27, 5, 1, "", "import_data"], [27, 5, 1, "", "load"], [27, 5, 1, "", "load_all"], [27, 5, 1, "", "ls"], [27, 5, 1, "", "ls_csv"], [27, 5, 1, "", "read"], [27, 5, 1, "", "read_csv"], [27, 5, 1, "", "read_hdf"], [27, 5, 1, "", "read_parquet"], [27, 5, 1, "", "read_tagged_data"], [27, 5, 1, "", "read_zarr"], [27, 5, 1, "", "receive"], [27, 5, 1, "", "receive_dataframe"], [27, 5, 1, "", "restore"], [27, 5, 1, "", "save_all"], [27, 5, 1, "", "snapshot"], [27, 5, 1, "", "to_csv"], [27, 5, 1, "", "to_hdf"], [27, 5, 1, "", "to_parquet"], [27, 5, 1, "", "to_zarr"], [27, 5, 1, "", "update_hdf"]], "arkouda.io_util": [[28, 5, 1, "", "delete_directory"], [28, 5, 1, "", "delimited_file_to_dict"], [28, 5, 1, "", "dict_to_delimited_file"], [28, 5, 1, "", "get_directory"], [28, 5, 1, "", "write_line_to_file"]], "arkouda.join": [[29, 5, 1, "", "compute_join_size"], [29, 5, 1, "", "gen_ranges"], [29, 5, 1, "", "join_on_eq_with_dt"]], "arkouda.logger": [[30, 1, 1, "", "LogLevel"], [30, 5, 1, "", "disableVerbose"], [30, 5, 1, "", "enableVerbose"], [30, 5, 1, "", "write_log"]], "arkouda.logger.LogLevel": [[30, 4, 1, "", "CRITICAL"], [30, 4, 1, "", "DEBUG"], [30, 4, 1, "", "ERROR"], [30, 4, 1, "", "INFO"], [30, 4, 1, "", "WARN"]], "arkouda.longdouble": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.longfloat": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.longlong": [[24, 2, 1, "", "bit_count"]], "arkouda.match": [[31, 1, 1, "", "Match"]], "arkouda.match.Match": [[100, 2, 1, "", "end"], [100, 2, 1, "", "find_matches"], [100, 2, 1, "", "group"], [100, 2, 1, "", "match_type"], [100, 2, 1, "", "matched"], [31, 4, 1, "", "re"], [100, 2, 1, "", "start"]], "arkouda.matcher": [[32, 1, 1, "", "Matcher"]], "arkouda.matcher.Matcher": [[32, 4, 1, "", "LocationsInfo"], [32, 2, 1, "", "find_locations"], [32, 2, 1, "", "findall"], [32, 4, 1, "", "full_match_bool"], [32, 4, 1, "", "full_match_ind"], [32, 2, 1, "", "get_match"], [32, 4, 1, "", "indices"], [32, 4, 1, "", "lengths"], [32, 4, 1, "", "logger"], [32, 4, 1, "", "match_bool"], [32, 4, 1, "", "match_ind"], [32, 4, 1, "", "num_matches"], [32, 4, 1, "", "objType"], [32, 4, 1, "", "parent_entry_name"], [32, 4, 1, "", "populated"], [32, 4, 1, "", "search_bool"], [32, 4, 1, "", "search_ind"], [32, 2, 1, "", "split"], [32, 4, 1, "", "starts"], [32, 2, 1, "", "sub"]], "arkouda.numpy": [[35, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [35, 1, 1, "", "BoolDType"], [35, 1, 1, "", "ByteDType"], [35, 1, 1, "", "BytesDType"], [35, 1, 1, "", "CLongDoubleDType"], [35, 1, 1, "", "Complex128DType"], [35, 1, 1, "", "Complex64DType"], [35, 1, 1, "", "DType"], [35, 1, 1, "", "DTypeObjects"], [35, 1, 1, "", "DTypes"], [35, 1, 1, "", "DataSource"], [35, 1, 1, "", "DateTime64DType"], [35, 1, 1, "", "ErrorMode"], [35, 1, 1, "", "False_"], [35, 1, 1, "", "Float16DType"], [35, 1, 1, "", "Float32DType"], [35, 1, 1, "", "Float64DType"], [35, 3, 1, "", "Inf"], [35, 3, 1, "", "Infinity"], [35, 1, 1, "", "Int16DType"], [35, 1, 1, "", "Int32DType"], [35, 1, 1, "", "Int64DType"], [35, 1, 1, "", "Int8DType"], [35, 1, 1, "", "IntDType"], [35, 1, 1, "", "LongDType"], [35, 1, 1, "", "LongDoubleDType"], [35, 1, 1, "", "LongLongDType"], [35, 3, 1, "", "NAN"], [35, 3, 1, "", "NINF"], [35, 1, 1, "", "NUMBER_FORMAT_STRINGS"], [35, 3, 1, "", "NZERO"], [35, 3, 1, "", "NaN"], [35, 1, 1, "", "NumericDTypes"], [35, 1, 1, "", "ObjectDType"], [35, 3, 1, "", "PINF"], [35, 3, 1, "", "PZERO"], [35, 1, 1, "", "RankWarning"], [35, 1, 1, "", "ScalarDTypes"], [35, 1, 1, "", "ScalarType"], [35, 1, 1, "", "SeriesDTypes"], [35, 1, 1, "", "ShortDType"], [35, 1, 1, "", "StrDType"], [35, 1, 1, "", "TimeDelta64DType"], [35, 1, 1, "", "TooHardError"], [35, 1, 1, "", "True_"], [35, 1, 1, "", "UByteDType"], [35, 1, 1, "", "UInt16DType"], [35, 1, 1, "", "UInt32DType"], [35, 1, 1, "", "UInt64DType"], [35, 1, 1, "", "UInt8DType"], [35, 1, 1, "", "UIntDType"], [35, 1, 1, "", "ULongDType"], [35, 1, 1, "", "ULongLongDType"], [35, 1, 1, "", "UShortDType"], [35, 1, 1, "", "VoidDType"], [35, 5, 1, "", "abs"], [35, 5, 1, "", "add_newdoc"], [35, 1, 1, "", "all_scalars"], [35, 5, 1, "", "arccos"], [35, 5, 1, "", "arccosh"], [35, 5, 1, "", "arcsin"], [35, 5, 1, "", "arcsinh"], [35, 5, 1, "", "arctan"], [35, 5, 1, "", "arctan2"], [35, 5, 1, "", "arctanh"], [35, 5, 1, "", "array_equal"], [35, 5, 1, "", "base_repr"], [35, 1, 1, "", "bigint"], [35, 5, 1, "", "binary_repr"], [35, 1, 1, "", "bitType"], [35, 1, 1, "", "bool_"], [35, 1, 1, "", "bool_scalars"], [35, 1, 1, "", "byte"], [35, 1, 1, "", "bytes_"], [35, 5, 1, "", "cast"], [35, 1, 1, "", "cdouble"], [35, 5, 1, "", "ceil"], [35, 1, 1, "", "cfloat"], [35, 1, 1, "", "character"], [35, 5, 1, "", "clip"], [35, 1, 1, "", "clongdouble"], [35, 1, 1, "", "clongfloat"], [35, 1, 1, "", "complex128"], [35, 1, 1, "", "complex64"], [35, 5, 1, "", "cos"], [35, 5, 1, "", "cosh"], [35, 5, 1, "", "count_nonzero"], [35, 1, 1, "", "csingle"], [35, 5, 1, "", "cumprod"], [35, 5, 1, "", "cumsum"], [35, 1, 1, "", "datetime64"], [35, 5, 1, "", "deg2rad"], [35, 5, 1, "", "deprecate"], [35, 5, 1, "", "deprecate_with_doc"], [35, 5, 1, "", "disp"], [35, 1, 1, "", "double"], [35, 5, 1, "", "dtype"], [34, 0, 0, "-", "dtypes"], [35, 3, 1, "", "e"], [35, 3, 1, "", "euler_gamma"], [35, 5, 1, "", "exp"], [35, 5, 1, "", "expm1"], [35, 5, 1, "", "eye"], [35, 1, 1, "", "finfo"], [35, 1, 1, "", "flexible"], [35, 5, 1, "", "flip"], [35, 1, 1, "", "float16"], [35, 1, 1, "", "float32"], [35, 1, 1, "", "float64"], [35, 1, 1, "", "float_"], [35, 1, 1, "", "float_scalars"], [35, 1, 1, "", "floating"], [35, 5, 1, "", "floor"], [35, 5, 1, "", "format_float_positional"], [35, 5, 1, "", "format_float_scientific"], [35, 1, 1, "", "format_parser"], [35, 5, 1, "", "get_byteorder"], [35, 5, 1, "", "get_server_byteorder"], [35, 1, 1, "", "half"], [35, 5, 1, "", "hash"], [35, 5, 1, "", "histogram"], [35, 5, 1, "", "histogram2d"], [35, 5, 1, "", "histogramdd"], [35, 1, 1, "", "iinfo"], [35, 1, 1, "", "inexact"], [35, 3, 1, "", "inf"], [35, 3, 1, "", "infty"], [35, 1, 1, "", "int16"], [35, 1, 1, "", "int32"], [35, 1, 1, "", "int64"], [35, 1, 1, "", "int8"], [35, 1, 1, "", "intTypes"], [35, 1, 1, "", "int_"], [35, 1, 1, "", "int_scalars"], [35, 1, 1, "", "intc"], [35, 1, 1, "", "integer"], [35, 1, 1, "", "intp"], [35, 5, 1, "", "isSupportedFloat"], [35, 5, 1, "", "isSupportedInt"], [35, 5, 1, "", "isSupportedNumber"], [35, 5, 1, "", "isfinite"], [35, 5, 1, "", "isinf"], [35, 5, 1, "", "isnan"], [35, 5, 1, "", "isscalar"], [35, 5, 1, "", "issctype"], [35, 5, 1, "", "issubclass_"], [35, 5, 1, "", "issubdtype"], [35, 5, 1, "", "log"], [35, 5, 1, "", "log10"], [35, 5, 1, "", "log1p"], [35, 5, 1, "", "log2"], [35, 1, 1, "", "longdouble"], [35, 1, 1, "", "longfloat"], [35, 1, 1, "", "longlong"], [35, 5, 1, "", "matmul"], [35, 5, 1, "", "maximum_sctype"], [35, 5, 1, "", "median"], [35, 3, 1, "", "nan"], [35, 1, 1, "", "number"], [35, 1, 1, "", "numeric_and_bool_scalars"], [35, 1, 1, "", "numeric_scalars"], [35, 1, 1, "", "numpy_scalars"], [35, 1, 1, "", "object_"], [35, 3, 1, "", "pi"], [35, 5, 1, "", "putmask"], [35, 5, 1, "", "rad2deg"], [36, 0, 0, "-", "random"], [35, 5, 1, "", "resolve_scalar_dtype"], [35, 5, 1, "", "round"], [35, 1, 1, "", "sctypeDict"], [35, 1, 1, "", "sctypes"], [35, 1, 1, "", "short"], [35, 5, 1, "", "sign"], [35, 1, 1, "", "signedinteger"], [35, 5, 1, "", "sin"], [35, 1, 1, "", "single"], [35, 5, 1, "", "sinh"], [35, 5, 1, "", "square"], [35, 1, 1, "", "str_"], [35, 1, 1, "", "str_scalars"], [35, 5, 1, "", "tan"], [35, 5, 1, "", "tanh"], [35, 1, 1, "", "timedelta64"], [35, 5, 1, "", "transpose"], [35, 5, 1, "", "tril"], [35, 5, 1, "", "triu"], [35, 5, 1, "", "trunc"], [35, 5, 1, "", "typename"], [35, 1, 1, "", "ubyte"], [35, 1, 1, "", "uint"], [35, 1, 1, "", "uint16"], [35, 1, 1, "", "uint32"], [35, 1, 1, "", "uint64"], [35, 1, 1, "", "uint8"], [35, 1, 1, "", "uintc"], [35, 1, 1, "", "uintp"], [35, 1, 1, "", "ulonglong"], [35, 1, 1, "", "unsignedinteger"], [35, 1, 1, "", "ushort"], [35, 5, 1, "", "value_counts"], [35, 5, 1, "", "vecdot"], [35, 1, 1, "", "void"], [35, 5, 1, "", "where"]], "arkouda.numpy.ARKOUDA_SUPPORTED_DTYPES": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.DType": [[35, 2, 1, "", "BIGINT"], [35, 2, 1, "", "BOOL"], [35, 2, 1, "", "COMPLEX128"], [35, 2, 1, "", "COMPLEX64"], [35, 2, 1, "", "FLOAT"], [35, 2, 1, "", "FLOAT32"], [35, 2, 1, "", "FLOAT64"], [35, 2, 1, "", "INT"], [35, 2, 1, "", "INT16"], [35, 2, 1, "", "INT32"], [35, 2, 1, "", "INT64"], [35, 2, 1, "", "INT8"], [35, 2, 1, "", "STR"], [35, 2, 1, "", "UINT"], [35, 2, 1, "", "UINT16"], [35, 2, 1, "", "UINT32"], [35, 2, 1, "", "UINT64"], [35, 2, 1, "", "UINT8"], [35, 2, 1, "", "name"], [35, 2, 1, "", "value"]], "arkouda.numpy.DTypeObjects": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.DTypes": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.DataSource": [[35, 2, 1, "", "abspath"], [35, 2, 1, "", "exists"], [35, 2, 1, "", "open"]], "arkouda.numpy.ErrorMode": [[35, 2, 1, "", "ignore"], [35, 2, 1, "", "name"], [35, 2, 1, "", "return_validity"], [35, 2, 1, "", "strict"], [35, 2, 1, "", "value"]], "arkouda.numpy.NUMBER_FORMAT_STRINGS": [[35, 2, 1, "", "clear"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "fromkeys"], [35, 2, 1, "", "get"], [35, 2, 1, "", "items"], [35, 2, 1, "", "keys"], [35, 2, 1, "", "pop"], [35, 2, 1, "", "popitem"], [35, 2, 1, "", "setdefault"], [35, 2, 1, "", "update"], [35, 2, 1, "", "values"]], "arkouda.numpy.NumericDTypes": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.ScalarDTypes": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.ScalarType": [[35, 2, 1, "", "count"], [35, 2, 1, "", "index"]], "arkouda.numpy.SeriesDTypes": [[35, 2, 1, "", "clear"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "fromkeys"], [35, 2, 1, "", "get"], [35, 2, 1, "", "items"], [35, 2, 1, "", "keys"], [35, 2, 1, "", "pop"], [35, 2, 1, "", "popitem"], [35, 2, 1, "", "setdefault"], [35, 2, 1, "", "update"], [35, 2, 1, "", "values"]], "arkouda.numpy.bigint": [[35, 2, 1, "", "itemsize"], [35, 2, 1, "", "name"], [35, 2, 1, "", "ndim"], [35, 2, 1, "", "shape"], [35, 2, 1, "", "type"]], "arkouda.numpy.bitType": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.byte": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.bytes_": [[35, 2, 1, "", "T"], [35, 2, 1, "", "all"], [35, 2, 1, "", "any"], [35, 2, 1, "", "argmax"], [35, 2, 1, "", "argmin"], [35, 2, 1, "", "argsort"], [35, 2, 1, "", "astype"], [35, 2, 1, "", "base"], [35, 2, 1, "", "byteswap"], [35, 2, 1, "", "choose"], [35, 2, 1, "", "clip"], [35, 2, 1, "", "compress"], [35, 2, 1, "", "conj"], [35, 2, 1, "", "conjugate"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "cumprod"], [35, 2, 1, "", "cumsum"], [35, 2, 1, "", "data"], [35, 2, 1, "", "diagonal"], [35, 2, 1, "", "dtype"], [35, 2, 1, "", "dump"], [35, 2, 1, "", "dumps"], [35, 2, 1, "", "fill"], [35, 2, 1, "", "flags"], [35, 2, 1, "", "flat"], [35, 2, 1, "", "flatten"], [35, 2, 1, "", "getfield"], [35, 2, 1, "", "imag"], [35, 2, 1, "", "item"], [35, 2, 1, "", "itemset"], [35, 2, 1, "", "itemsize"], [35, 2, 1, "", "max"], [35, 2, 1, "", "mean"], [35, 2, 1, "", "min"], [35, 2, 1, "", "nbytes"], [35, 2, 1, "", "ndim"], [35, 2, 1, "", "newbyteorder"], [35, 2, 1, "", "nonzero"], [35, 2, 1, "", "prod"], [35, 2, 1, "", "ptp"], [35, 2, 1, "", "put"], [35, 2, 1, "", "ravel"], [35, 2, 1, "", "real"], [35, 2, 1, "", "repeat"], [35, 2, 1, "", "reshape"], [35, 2, 1, "", "resize"], [35, 2, 1, "", "round"], [35, 2, 1, "", "searchsorted"], [35, 2, 1, "", "setfield"], [35, 2, 1, "", "setflags"], [35, 2, 1, "", "shape"], [35, 2, 1, "", "size"], [35, 2, 1, "", "sort"], [35, 2, 1, "", "squeeze"], [35, 2, 1, "", "std"], [35, 2, 1, "", "strides"], [35, 2, 1, "", "sum"], [35, 2, 1, "", "swapaxes"], [35, 2, 1, "", "take"], [35, 2, 1, "", "tobytes"], [35, 2, 1, "", "tofile"], [35, 2, 1, "", "tolist"], [35, 2, 1, "", "tostring"], [35, 2, 1, "", "trace"], [35, 2, 1, "", "transpose"], [35, 2, 1, "", "var"], [35, 2, 1, "", "view"]], "arkouda.numpy.double": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "fromhex"], [35, 2, 1, "", "hex"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.dtypes": [[34, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [34, 1, 1, "", "ARKOUDA_SUPPORTED_FLOATS"], [34, 1, 1, "", "ARKOUDA_SUPPORTED_INTS"], [34, 1, 1, "", "ARKOUDA_SUPPORTED_NUMBERS"], [34, 1, 1, "", "DType"], [34, 1, 1, "", "DTypeObjects"], [34, 1, 1, "", "DTypes"], [34, 1, 1, "", "Enum"], [34, 1, 1, "", "NUMBER_FORMAT_STRINGS"], [34, 1, 1, "", "NumericDTypes"], [34, 1, 1, "", "ScalarDTypes"], [34, 1, 1, "", "SeriesDTypes"], [34, 1, 1, "", "Union"], [34, 1, 1, "", "all_scalars"], [34, 1, 1, "", "annotations"], [34, 1, 1, "", "bigint"], [34, 1, 1, "", "bitType"], [34, 1, 1, "", "bool_"], [34, 1, 1, "", "bool_scalars"], [34, 5, 1, "", "cast"], [34, 1, 1, "", "complex128"], [34, 1, 1, "", "complex64"], [34, 5, 1, "", "dtype"], [34, 1, 1, "", "float16"], [34, 1, 1, "", "float32"], [34, 1, 1, "", "float64"], [34, 1, 1, "", "float_scalars"], [34, 5, 1, "", "get_byteorder"], [34, 5, 1, "", "get_server_byteorder"], [34, 1, 1, "", "int16"], [34, 1, 1, "", "int32"], [34, 1, 1, "", "int64"], [34, 1, 1, "", "int8"], [34, 1, 1, "", "intTypes"], [34, 1, 1, "", "int_scalars"], [34, 5, 1, "", "isSupportedFloat"], [34, 5, 1, "", "isSupportedInt"], [34, 5, 1, "", "isSupportedNumber"], [34, 1, 1, "", "numeric_and_bool_scalars"], [34, 1, 1, "", "numeric_scalars"], [34, 1, 1, "", "numpy_scalars"], [34, 5, 1, "", "resolve_scalar_dtype"], [34, 1, 1, "", "str_"], [34, 1, 1, "", "str_scalars"], [34, 1, 1, "", "uint16"], [34, 1, 1, "", "uint32"], [34, 1, 1, "", "uint64"], [34, 1, 1, "", "uint8"]], "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_DTYPES": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_FLOATS": [[34, 2, 1, "", "count"], [34, 2, 1, "", "index"]], "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_INTS": [[34, 2, 1, "", "count"], [34, 2, 1, "", "index"]], "arkouda.numpy.dtypes.ARKOUDA_SUPPORTED_NUMBERS": [[34, 2, 1, "", "count"], [34, 2, 1, "", "index"]], "arkouda.numpy.dtypes.DType": [[34, 2, 1, "", "BIGINT"], [34, 2, 1, "", "BOOL"], [34, 2, 1, "", "COMPLEX128"], [34, 2, 1, "", "COMPLEX64"], [34, 2, 1, "", "FLOAT"], [34, 2, 1, "", "FLOAT32"], [34, 2, 1, "", "FLOAT64"], [34, 2, 1, "", "INT"], [34, 2, 1, "", "INT16"], [34, 2, 1, "", "INT32"], [34, 2, 1, "", "INT64"], [34, 2, 1, "", "INT8"], [34, 2, 1, "", "STR"], [34, 2, 1, "", "UINT"], [34, 2, 1, "", "UINT16"], [34, 2, 1, "", "UINT32"], [34, 2, 1, "", "UINT64"], [34, 2, 1, "", "UINT8"], [34, 2, 1, "", "name"], [34, 2, 1, "", "value"]], "arkouda.numpy.dtypes.DTypeObjects": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.DTypes": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.NUMBER_FORMAT_STRINGS": [[34, 2, 1, "", "clear"], [34, 2, 1, "", "copy"], [34, 2, 1, "", "fromkeys"], [34, 2, 1, "", "get"], [34, 2, 1, "", "items"], [34, 2, 1, "", "keys"], [34, 2, 1, "", "pop"], [34, 2, 1, "", "popitem"], [34, 2, 1, "", "setdefault"], [34, 2, 1, "", "update"], [34, 2, 1, "", "values"]], "arkouda.numpy.dtypes.NumericDTypes": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.ScalarDTypes": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.SeriesDTypes": [[34, 2, 1, "", "clear"], [34, 2, 1, "", "copy"], [34, 2, 1, "", "fromkeys"], [34, 2, 1, "", "get"], [34, 2, 1, "", "items"], [34, 2, 1, "", "keys"], [34, 2, 1, "", "pop"], [34, 2, 1, "", "popitem"], [34, 2, 1, "", "setdefault"], [34, 2, 1, "", "update"], [34, 2, 1, "", "values"]], "arkouda.numpy.dtypes.annotations": [[34, 2, 1, "", "compiler_flag"], [34, 2, 1, "", "getMandatoryRelease"], [34, 2, 1, "", "getOptionalRelease"], [34, 2, 1, "", "mandatory"], [34, 2, 1, "", "optional"]], "arkouda.numpy.dtypes.bigint": [[34, 2, 1, "", "itemsize"], [34, 2, 1, "", "name"], [34, 2, 1, "", "ndim"], [34, 2, 1, "", "shape"], [34, 2, 1, "", "type"]], "arkouda.numpy.dtypes.bitType": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.float16": [[34, 2, 1, "", "as_integer_ratio"], [34, 2, 1, "", "is_integer"]], "arkouda.numpy.dtypes.float32": [[34, 2, 1, "", "as_integer_ratio"], [34, 2, 1, "", "is_integer"]], "arkouda.numpy.dtypes.float64": [[34, 2, 1, "", "as_integer_ratio"], [34, 2, 1, "", "fromhex"], [34, 2, 1, "", "hex"], [34, 2, 1, "", "is_integer"]], "arkouda.numpy.dtypes.int16": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.int32": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.int64": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.int8": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.intTypes": [[34, 2, 1, "", "copy"], [34, 2, 1, "", "difference"], [34, 2, 1, "", "intersection"], [34, 2, 1, "", "isdisjoint"], [34, 2, 1, "", "issubset"], [34, 2, 1, "", "issuperset"], [34, 2, 1, "", "symmetric_difference"], [34, 2, 1, "", "union"]], "arkouda.numpy.dtypes.str_": [[34, 2, 1, "", "T"], [34, 2, 1, "", "all"], [34, 2, 1, "", "any"], [34, 2, 1, "", "argmax"], [34, 2, 1, "", "argmin"], [34, 2, 1, "", "argsort"], [34, 2, 1, "", "astype"], [34, 2, 1, "", "base"], [34, 2, 1, "", "byteswap"], [34, 2, 1, "", "choose"], [34, 2, 1, "", "clip"], [34, 2, 1, "", "compress"], [34, 2, 1, "", "conj"], [34, 2, 1, "", "conjugate"], [34, 2, 1, "", "copy"], [34, 2, 1, "", "cumprod"], [34, 2, 1, "", "cumsum"], [34, 2, 1, "", "data"], [34, 2, 1, "", "diagonal"], [34, 2, 1, "", "dtype"], [34, 2, 1, "", "dump"], [34, 2, 1, "", "dumps"], [34, 2, 1, "", "fill"], [34, 2, 1, "", "flags"], [34, 2, 1, "", "flat"], [34, 2, 1, "", "flatten"], [34, 2, 1, "", "getfield"], [34, 2, 1, "", "imag"], [34, 2, 1, "", "item"], [34, 2, 1, "", "itemset"], [34, 2, 1, "", "itemsize"], [34, 2, 1, "", "max"], [34, 2, 1, "", "mean"], [34, 2, 1, "", "min"], [34, 2, 1, "", "nbytes"], [34, 2, 1, "", "ndim"], [34, 2, 1, "", "newbyteorder"], [34, 2, 1, "", "nonzero"], [34, 2, 1, "", "prod"], [34, 2, 1, "", "ptp"], [34, 2, 1, "", "put"], [34, 2, 1, "", "ravel"], [34, 2, 1, "", "real"], [34, 2, 1, "", "repeat"], [34, 2, 1, "", "reshape"], [34, 2, 1, "", "resize"], [34, 2, 1, "", "round"], [34, 2, 1, "", "searchsorted"], [34, 2, 1, "", "setfield"], [34, 2, 1, "", "setflags"], [34, 2, 1, "", "shape"], [34, 2, 1, "", "size"], [34, 2, 1, "", "sort"], [34, 2, 1, "", "squeeze"], [34, 2, 1, "", "std"], [34, 2, 1, "", "strides"], [34, 2, 1, "", "sum"], [34, 2, 1, "", "swapaxes"], [34, 2, 1, "", "take"], [34, 2, 1, "", "tobytes"], [34, 2, 1, "", "tofile"], [34, 2, 1, "", "tolist"], [34, 2, 1, "", "tostring"], [34, 2, 1, "", "trace"], [34, 2, 1, "", "transpose"], [34, 2, 1, "", "var"], [34, 2, 1, "", "view"]], "arkouda.numpy.dtypes.uint16": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.uint32": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.uint64": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.dtypes.uint8": [[34, 2, 1, "", "bit_count"]], "arkouda.numpy.finfo": [[35, 4, 1, "", "bits"], [35, 4, 1, "", "dtype"], [35, 4, 1, "", "eps"], [35, 4, 1, "", "epsneg"], [35, 4, 1, "", "iexp"], [35, 4, 1, "", "machep"], [35, 4, 1, "", "max"], [35, 4, 1, "", "maxexp"], [35, 4, 1, "", "min"], [35, 4, 1, "", "minexp"], [35, 4, 1, "", "negep"], [35, 4, 1, "", "nexp"], [35, 4, 1, "", "nmant"], [35, 4, 1, "", "precision"], [35, 4, 1, "", "resolution"], [35, 6, 1, "id0", "smallest_normal"], [35, 4, 1, "", "smallest_subnormal"], [35, 6, 1, "id11", "tiny"]], "arkouda.numpy.float16": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.float32": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.float64": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "fromhex"], [35, 2, 1, "", "hex"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.float_": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "fromhex"], [35, 2, 1, "", "hex"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.format_parser": [[35, 4, 1, "", "dtype"]], "arkouda.numpy.half": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.iinfo": [[35, 4, 1, "", "bits"], [35, 4, 1, "", "dtype"], [35, 6, 1, "id12", "max"], [35, 6, 1, "id13", "min"]], "arkouda.numpy.int16": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.int32": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.int64": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.int8": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.intTypes": [[35, 2, 1, "", "copy"], [35, 2, 1, "", "difference"], [35, 2, 1, "", "intersection"], [35, 2, 1, "", "isdisjoint"], [35, 2, 1, "", "issubset"], [35, 2, 1, "", "issuperset"], [35, 2, 1, "", "symmetric_difference"], [35, 2, 1, "", "union"]], "arkouda.numpy.int_": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.intc": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.integer": [[35, 2, 1, "", "denominator"], [35, 2, 1, "", "is_integer"], [35, 2, 1, "", "numerator"]], "arkouda.numpy.intp": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.longdouble": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.longfloat": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.longlong": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.random": [[36, 1, 1, "", "Generator"], [36, 5, 1, "", "default_rng"], [36, 5, 1, "", "randint"], [36, 5, 1, "", "standard_normal"], [36, 5, 1, "", "uniform"]], "arkouda.numpy.random.Generator": [[36, 2, 1, "", "choice"], [36, 2, 1, "", "exponential"], [36, 2, 1, "", "integers"], [36, 2, 1, "", "logistic"], [36, 2, 1, "", "lognormal"], [36, 2, 1, "", "normal"], [36, 2, 1, "", "permutation"], [36, 2, 1, "", "poisson"], [36, 2, 1, "", "random"], [36, 2, 1, "", "shuffle"], [36, 2, 1, "", "standard_exponential"], [36, 2, 1, "", "standard_normal"], [36, 2, 1, "", "uniform"]], "arkouda.numpy.sctypeDict": [[35, 2, 1, "", "clear"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "fromkeys"], [35, 2, 1, "", "get"], [35, 2, 1, "", "items"], [35, 2, 1, "", "keys"], [35, 2, 1, "", "pop"], [35, 2, 1, "", "popitem"], [35, 2, 1, "", "setdefault"], [35, 2, 1, "", "update"], [35, 2, 1, "", "values"]], "arkouda.numpy.sctypes": [[35, 2, 1, "", "clear"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "fromkeys"], [35, 2, 1, "", "get"], [35, 2, 1, "", "items"], [35, 2, 1, "", "keys"], [35, 2, 1, "", "pop"], [35, 2, 1, "", "popitem"], [35, 2, 1, "", "setdefault"], [35, 2, 1, "", "update"], [35, 2, 1, "", "values"]], "arkouda.numpy.short": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.single": [[35, 2, 1, "", "as_integer_ratio"], [35, 2, 1, "", "is_integer"]], "arkouda.numpy.str_": [[35, 2, 1, "", "T"], [35, 2, 1, "", "all"], [35, 2, 1, "", "any"], [35, 2, 1, "", "argmax"], [35, 2, 1, "", "argmin"], [35, 2, 1, "", "argsort"], [35, 2, 1, "", "astype"], [35, 2, 1, "", "base"], [35, 2, 1, "", "byteswap"], [35, 2, 1, "", "choose"], [35, 2, 1, "", "clip"], [35, 2, 1, "", "compress"], [35, 2, 1, "", "conj"], [35, 2, 1, "", "conjugate"], [35, 2, 1, "", "copy"], [35, 2, 1, "", "cumprod"], [35, 2, 1, "", "cumsum"], [35, 2, 1, "", "data"], [35, 2, 1, "", "diagonal"], [35, 2, 1, "", "dtype"], [35, 2, 1, "", "dump"], [35, 2, 1, "", "dumps"], [35, 2, 1, "", "fill"], [35, 2, 1, "", "flags"], [35, 2, 1, "", "flat"], [35, 2, 1, "", "flatten"], [35, 2, 1, "", "getfield"], [35, 2, 1, "", "imag"], [35, 2, 1, "", "item"], [35, 2, 1, "", "itemset"], [35, 2, 1, "", "itemsize"], [35, 2, 1, "", "max"], [35, 2, 1, "", "mean"], [35, 2, 1, "", "min"], [35, 2, 1, "", "nbytes"], [35, 2, 1, "", "ndim"], [35, 2, 1, "", "newbyteorder"], [35, 2, 1, "", "nonzero"], [35, 2, 1, "", "prod"], [35, 2, 1, "", "ptp"], [35, 2, 1, "", "put"], [35, 2, 1, "", "ravel"], [35, 2, 1, "", "real"], [35, 2, 1, "", "repeat"], [35, 2, 1, "", "reshape"], [35, 2, 1, "", "resize"], [35, 2, 1, "", "round"], [35, 2, 1, "", "searchsorted"], [35, 2, 1, "", "setfield"], [35, 2, 1, "", "setflags"], [35, 2, 1, "", "shape"], [35, 2, 1, "", "size"], [35, 2, 1, "", "sort"], [35, 2, 1, "", "squeeze"], [35, 2, 1, "", "std"], [35, 2, 1, "", "strides"], [35, 2, 1, "", "sum"], [35, 2, 1, "", "swapaxes"], [35, 2, 1, "", "take"], [35, 2, 1, "", "tobytes"], [35, 2, 1, "", "tofile"], [35, 2, 1, "", "tolist"], [35, 2, 1, "", "tostring"], [35, 2, 1, "", "trace"], [35, 2, 1, "", "transpose"], [35, 2, 1, "", "var"], [35, 2, 1, "", "view"]], "arkouda.numpy.ubyte": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint16": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint32": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint64": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uint8": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uintc": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.uintp": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.ulonglong": [[35, 2, 1, "", "bit_count"]], "arkouda.numpy.ushort": [[35, 2, 1, "", "bit_count"]], "arkouda.pdarray": [[24, 4, 1, "id1212", "BinOps"], [24, 4, 1, "id1213", "OpEqOps"], [92, 2, 1, "", "all"], [92, 2, 1, "", "any"], [92, 2, 1, "", "argmax"], [92, 2, 1, "", "argmaxk"], [92, 2, 1, "", "argmin"], [92, 2, 1, "", "argmink"], [24, 2, 1, "id1220", "astype"], [24, 2, 1, "id1221", "attach"], [24, 2, 1, "id1222", "bigint_to_uint_arrays"], [24, 2, 1, "id1223", "clz"], [24, 2, 1, "id1224", "corr"], [24, 2, 1, "id1225", "cov"], [24, 2, 1, "id1226", "ctz"], [94, 4, 1, "", "dtype"], [24, 2, 1, "id1228", "equals"], [24, 2, 1, "id1229", "fill"], [24, 2, 1, "id1230", "flatten"], [24, 2, 1, "id1231", "format_other"], [24, 6, 1, "id1232", "inferred_type"], [24, 2, 1, "id1233", "info"], [24, 2, 1, "id1234", "is_registered"], [92, 2, 1, "", "is_sorted"], [94, 4, 1, "", "itemsize"], [92, 2, 1, "", "max"], [24, 6, 1, "id1238", "max_bits"], [92, 2, 1, "", "maxk"], [92, 2, 1, "", "mean"], [92, 2, 1, "", "min"], [92, 2, 1, "", "mink"], [94, 4, 1, "", "name"], [24, 6, 1, "id1244", "nbytes"], [94, 4, 1, "", "ndim"], [24, 4, 1, "id1246", "objType"], [24, 2, 1, "id1247", "opeq"], [24, 2, 1, "id1248", "parity"], [24, 2, 1, "id1249", "popcount"], [24, 2, 1, "id1250", "pretty_print_info"], [92, 2, 1, "", "prod"], [24, 2, 1, "id1252", "register"], [24, 4, 1, "id1253", "registered_name"], [24, 2, 1, "id1254", "reshape"], [24, 2, 1, "id1255", "rotl"], [24, 2, 1, "id1256", "rotr"], [24, 2, 1, "id1257", "save"], [94, 4, 1, "", "shape"], [94, 4, 1, "", "size"], [24, 2, 1, "id1260", "slice_bits"], [92, 2, 1, "", "std"], [92, 2, 1, "", "sum"], [24, 2, 1, "id1263", "to_csv"], [24, 2, 1, "id1266", "to_cuda"], [24, 2, 1, "id1267", "to_hdf"], [24, 2, 1, "id1268", "to_list"], [94, 5, 1, "", "to_ndarray"], [24, 2, 1, "id1270", "to_parquet"], [24, 2, 1, "id1271", "transfer"], [24, 2, 1, "id1272", "unregister"], [24, 2, 1, "id1273", "update_hdf"], [24, 2, 1, "id1274", "value_counts"], [92, 2, 1, "", "var"]], "arkouda.pdarrayclass": [[37, 7, 1, "", "RegistrationError"], [37, 5, 1, "", "all"], [37, 5, 1, "", "any"], [37, 5, 1, "", "argmax"], [37, 5, 1, "", "argmaxk"], [37, 5, 1, "", "argmin"], [37, 5, 1, "", "argmink"], [37, 5, 1, "", "attach_pdarray"], [37, 5, 1, "", "broadcast_to_shape"], [37, 5, 1, "", "clear"], [37, 5, 1, "", "clz"], [37, 5, 1, "", "corr"], [37, 5, 1, "", "cov"], [37, 5, 1, "", "ctz"], [37, 5, 1, "", "divmod"], [37, 5, 1, "", "dot"], [37, 5, 1, "", "fmod"], [37, 5, 1, "", "is_sorted"], [37, 5, 1, "", "max"], [37, 5, 1, "", "maxk"], [37, 5, 1, "", "mean"], [37, 5, 1, "", "min"], [37, 5, 1, "", "mink"], [37, 5, 1, "", "mod"], [37, 5, 1, "", "parity"], [37, 1, 1, "", "pdarray"], [37, 5, 1, "", "popcount"], [37, 5, 1, "", "power"], [37, 5, 1, "", "prod"], [37, 5, 1, "", "rotl"], [37, 5, 1, "", "rotr"], [37, 5, 1, "", "sqrt"], [37, 5, 1, "", "std"], [37, 5, 1, "", "sum"], [37, 5, 1, "", "unregister_pdarray_by_name"], [37, 5, 1, "", "var"]], "arkouda.pdarrayclass.pdarray": [[37, 4, 1, "", "BinOps"], [37, 4, 1, "", "OpEqOps"], [37, 2, 1, "", "all"], [37, 2, 1, "", "any"], [37, 2, 1, "", "argmax"], [37, 2, 1, "", "argmaxk"], [37, 2, 1, "", "argmin"], [37, 2, 1, "", "argmink"], [37, 2, 1, "", "astype"], [37, 2, 1, "", "attach"], [37, 2, 1, "", "bigint_to_uint_arrays"], [37, 2, 1, "", "clz"], [37, 2, 1, "", "corr"], [37, 2, 1, "", "cov"], [37, 2, 1, "", "ctz"], [37, 4, 1, "id0", "dtype"], [37, 2, 1, "", "equals"], [37, 2, 1, "", "fill"], [37, 2, 1, "", "flatten"], [37, 2, 1, "", "format_other"], [37, 6, 1, "", "inferred_type"], [37, 2, 1, "", "info"], [37, 2, 1, "", "is_registered"], [37, 2, 1, "", "is_sorted"], [37, 4, 1, "id1", "itemsize"], [37, 2, 1, "", "max"], [37, 6, 1, "", "max_bits"], [37, 2, 1, "", "maxk"], [37, 2, 1, "", "mean"], [37, 2, 1, "", "min"], [37, 2, 1, "", "mink"], [37, 4, 1, "id2", "name"], [37, 6, 1, "", "nbytes"], [37, 4, 1, "id3", "ndim"], [37, 4, 1, "", "objType"], [37, 2, 1, "", "opeq"], [37, 2, 1, "", "parity"], [37, 2, 1, "", "popcount"], [37, 2, 1, "", "pretty_print_info"], [37, 2, 1, "", "prod"], [37, 2, 1, "", "register"], [37, 4, 1, "", "registered_name"], [37, 2, 1, "", "reshape"], [37, 2, 1, "", "rotl"], [37, 2, 1, "", "rotr"], [37, 2, 1, "", "save"], [37, 6, 1, "id4", "shape"], [37, 4, 1, "id5", "size"], [37, 2, 1, "", "slice_bits"], [37, 2, 1, "", "std"], [37, 2, 1, "", "sum"], [37, 2, 1, "", "to_csv"], [37, 2, 1, "", "to_cuda"], [37, 2, 1, "", "to_hdf"], [37, 2, 1, "", "to_list"], [37, 2, 1, "", "to_ndarray"], [37, 2, 1, "", "to_parquet"], [37, 2, 1, "", "transfer"], [37, 2, 1, "", "unregister"], [37, 2, 1, "", "update_hdf"], [37, 2, 1, "", "value_counts"], [37, 2, 1, "", "var"]], "arkouda.pdarraycreation": [[38, 5, 1, "", "arange"], [38, 5, 1, "", "array"], [38, 5, 1, "", "bigint_from_uint_arrays"], [38, 5, 1, "", "from_series"], [38, 5, 1, "", "full"], [38, 5, 1, "", "full_like"], [38, 5, 1, "", "linspace"], [38, 5, 1, "", "ones"], [38, 5, 1, "", "ones_like"], [38, 5, 1, "", "promote_to_common_dtype"], [38, 5, 1, "", "randint"], [38, 5, 1, "", "random_strings_lognormal"], [38, 5, 1, "", "random_strings_uniform"], [38, 5, 1, "", "scalar_array"], [38, 5, 1, "", "standard_normal"], [38, 5, 1, "", "uniform"], [38, 5, 1, "", "zeros"], [38, 5, 1, "", "zeros_like"]], "arkouda.pdarraymanipulation": [[39, 5, 1, "", "delete"], [39, 5, 1, "", "vstack"]], "arkouda.pdarraysetops": [[40, 5, 1, "", "concatenate"], [40, 5, 1, "", "in1d"], [40, 5, 1, "", "indexof1d"], [40, 5, 1, "", "intersect1d"], [40, 5, 1, "", "setdiff1d"], [40, 5, 1, "", "setxor1d"], [40, 5, 1, "", "union1d"]], "arkouda.plotting": [[41, 5, 1, "", "hist_all"], [41, 5, 1, "", "plot_dist"]], "arkouda.random": [[95, 1, 1, "", "Generator"], [42, 5, 1, "", "default_rng"], [42, 5, 1, "", "randint"], [42, 5, 1, "", "standard_normal"], [42, 5, 1, "", "uniform"]], "arkouda.random.Generator": [[95, 5, 1, "", "choice"], [95, 5, 1, "", "exponential"], [95, 5, 1, "", "integers"], [95, 5, 1, "", "logistic"], [95, 5, 1, "", "lognormal"], [95, 5, 1, "", "normal"], [95, 5, 1, "", "permutation"], [95, 5, 1, "", "poisson"], [95, 5, 1, "", "random"], [95, 5, 1, "", "shuffle"], [95, 5, 1, "", "standard_exponential"], [95, 5, 1, "", "standard_normal"], [95, 5, 1, "", "uniform"]], "arkouda.row": [[43, 1, 1, "", "Row"]], "arkouda.scipy": [[44, 1, 1, "", "Power_divergenceResult"], [44, 5, 1, "", "chisquare"], [44, 5, 1, "", "power_divergence"], [45, 0, 0, "-", "special"], [46, 0, 0, "-", "stats"]], "arkouda.scipy.Power_divergenceResult": [[44, 4, 1, "", "pvalue"], [44, 4, 1, "", "statistic"]], "arkouda.scipy.special": [[45, 5, 1, "", "xlogy"]], "arkouda.scipy.stats": [[46, 1, 1, "", "chi2"]], "arkouda.scipy.stats.chi2": [[46, 2, 1, "", "a"], [46, 2, 1, "", "b"], [46, 2, 1, "", "badvalue"], [46, 2, 1, "", "generic_moment"], [46, 2, 1, "", "moment_type"], [46, 2, 1, "", "name"], [46, 2, 1, "", "numargs"], [46, 2, 1, "", "shapes"], [46, 2, 1, "", "vecentropy"], [46, 2, 1, "", "xtol"]], "arkouda.sctypeDict": [[24, 2, 1, "", "clear"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "fromkeys"], [24, 2, 1, "", "get"], [24, 2, 1, "", "items"], [24, 2, 1, "", "keys"], [24, 2, 1, "", "pop"], [24, 2, 1, "", "popitem"], [24, 2, 1, "", "setdefault"], [24, 2, 1, "", "update"], [24, 2, 1, "", "values"]], "arkouda.sctypes": [[24, 2, 1, "", "clear"], [24, 2, 1, "", "copy"], [24, 2, 1, "", "fromkeys"], [24, 2, 1, "", "get"], [24, 2, 1, "", "items"], [24, 2, 1, "", "keys"], [24, 2, 1, "", "pop"], [24, 2, 1, "", "popitem"], [24, 2, 1, "", "setdefault"], [24, 2, 1, "", "update"], [24, 2, 1, "", "values"]], "arkouda.security": [[47, 5, 1, "", "generate_token"], [47, 5, 1, "", "generate_username_token_json"], [47, 5, 1, "", "get_arkouda_client_directory"], [47, 5, 1, "", "get_home_directory"], [47, 5, 1, "", "get_username"], [47, 3, 1, "", "username_tokenizer"]], "arkouda.segarray": [[48, 3, 1, "", "LEN_SUFFIX"], [48, 3, 1, "", "SEG_SUFFIX"], [48, 1, 1, "", "SegArray"], [48, 3, 1, "", "VAL_SUFFIX"], [48, 5, 1, "", "segarray"]], "arkouda.segarray.SegArray": [[48, 2, 1, "", "AND"], [48, 2, 1, "", "OR"], [48, 2, 1, "", "XOR"], [48, 2, 1, "", "aggregate"], [48, 2, 1, "", "all"], [48, 2, 1, "", "any"], [48, 2, 1, "", "append"], [48, 2, 1, "", "append_single"], [48, 2, 1, "", "argmax"], [48, 2, 1, "", "argmin"], [48, 2, 1, "", "attach"], [48, 2, 1, "", "concat"], [48, 2, 1, "", "copy"], [48, 4, 1, "", "dtype"], [48, 2, 1, "", "filter"], [48, 2, 1, "", "from_multi_array"], [48, 2, 1, "", "from_parts"], [48, 2, 1, "", "from_return_msg"], [48, 2, 1, "", "get_jth"], [48, 2, 1, "", "get_length_n"], [48, 2, 1, "", "get_ngrams"], [48, 2, 1, "", "get_prefixes"], [48, 2, 1, "", "get_suffixes"], [48, 6, 1, "", "grouping"], [48, 2, 1, "", "hash"], [48, 2, 1, "", "intersect"], [48, 2, 1, "", "is_registered"], [48, 2, 1, "", "load"], [48, 4, 1, "", "logger"], [48, 2, 1, "", "max"], [48, 2, 1, "", "mean"], [48, 2, 1, "", "min"], [48, 6, 1, "", "nbytes"], [48, 6, 1, "", "non_empty"], [48, 2, 1, "", "nunique"], [48, 4, 1, "", "objType"], [48, 2, 1, "", "prepend_single"], [48, 2, 1, "", "prod"], [48, 2, 1, "", "read_hdf"], [48, 2, 1, "", "register"], [48, 4, 1, "", "registered_name"], [48, 2, 1, "", "remove_repeats"], [48, 2, 1, "", "save"], [48, 4, 1, "", "segments"], [48, 2, 1, "", "set_jth"], [48, 2, 1, "", "setdiff"], [48, 2, 1, "", "setxor"], [48, 4, 1, "", "size"], [48, 2, 1, "", "sum"], [48, 2, 1, "", "to_hdf"], [48, 2, 1, "", "to_list"], [48, 2, 1, "", "to_ndarray"], [48, 2, 1, "", "to_parquet"], [48, 2, 1, "", "transfer"], [48, 2, 1, "", "union"], [48, 2, 1, "", "unique"], [48, 2, 1, "", "unregister"], [48, 2, 1, "", "unregister_segarray_by_name"], [48, 2, 1, "", "update_hdf"], [48, 4, 1, "", "valsize"], [48, 4, 1, "", "values"]], "arkouda.series": [[49, 1, 1, "", "Series"]], "arkouda.series.Series": [[49, 2, 1, "", "add"], [49, 2, 1, "", "argmax"], [49, 2, 1, "", "argmin"], [49, 6, 1, "", "at"], [49, 2, 1, "", "attach"], [49, 2, 1, "", "concat"], [49, 2, 1, "", "diff"], [49, 2, 1, "", "dt"], [49, 6, 1, "", "dtype"], [49, 2, 1, "", "fillna"], [49, 2, 1, "", "from_return_msg"], [49, 2, 1, "", "has_repeat_labels"], [49, 2, 1, "", "hasnans"], [49, 2, 1, "", "head"], [49, 6, 1, "", "iat"], [49, 6, 1, "", "iloc"], [49, 2, 1, "", "is_registered"], [49, 2, 1, "", "isin"], [49, 2, 1, "", "isna"], [49, 2, 1, "", "isnull"], [49, 6, 1, "", "loc"], [49, 2, 1, "", "locate"], [49, 2, 1, "", "map"], [49, 2, 1, "", "max"], [49, 2, 1, "", "mean"], [49, 2, 1, "", "memory_usage"], [49, 2, 1, "", "min"], [49, 6, 1, "", "ndim"], [49, 2, 1, "", "notna"], [49, 2, 1, "", "notnull"], [49, 2, 1, "", "objType"], [49, 2, 1, "", "pdconcat"], [49, 2, 1, "", "prod"], [49, 2, 1, "", "register"], [49, 6, 1, "", "shape"], [49, 2, 1, "", "sort_index"], [49, 2, 1, "", "sort_values"], [49, 2, 1, "", "std"], [49, 2, 1, "", "str_acc"], [49, 2, 1, "", "sum"], [49, 2, 1, "", "tail"], [49, 2, 1, "", "to_dataframe"], [49, 2, 1, "", "to_list"], [49, 2, 1, "", "to_markdown"], [49, 2, 1, "", "to_ndarray"], [49, 2, 1, "", "to_pandas"], [49, 2, 1, "", "topn"], [49, 2, 1, "", "unregister"], [49, 2, 1, "", "validate_key"], [49, 2, 1, "", "validate_val"], [49, 2, 1, "", "value_counts"], [49, 2, 1, "", "var"]], "arkouda.short": [[24, 2, 1, "", "bit_count"]], "arkouda.single": [[24, 2, 1, "", "as_integer_ratio"], [24, 2, 1, "", "is_integer"]], "arkouda.sorting": [[50, 5, 1, "", "argsort"], [50, 5, 1, "", "coargsort"], [50, 5, 1, "", "sort"]], "arkouda.sparray": [[24, 4, 1, "id1280", "dtype"], [24, 2, 1, "", "fill_vals"], [24, 4, 1, "id1281", "itemsize"], [24, 4, 1, "id1282", "layout"], [24, 4, 1, "id1283", "name"], [24, 4, 1, "id1284", "ndim"], [24, 4, 1, "id1285", "nnz"], [24, 4, 1, "id1286", "shape"], [24, 4, 1, "id1287", "size"], [24, 2, 1, "", "to_pdarray"]], "arkouda.sparrayclass": [[51, 5, 1, "", "create_sparray"], [51, 1, 1, "", "sparray"]], "arkouda.sparrayclass.sparray": [[51, 4, 1, "id0", "dtype"], [51, 2, 1, "", "fill_vals"], [51, 4, 1, "id1", "itemsize"], [51, 4, 1, "id2", "layout"], [51, 4, 1, "id3", "name"], [51, 4, 1, "id4", "ndim"], [51, 4, 1, "id5", "nnz"], [51, 4, 1, "id6", "shape"], [51, 4, 1, "id7", "size"], [51, 2, 1, "", "to_pdarray"]], "arkouda.sparsematrix": [[52, 5, 1, "", "create_sparse_matrix"], [52, 5, 1, "", "random_sparse_matrix"], [52, 5, 1, "", "sparse_matrix_matrix_mult"]], "arkouda.str_": [[24, 2, 1, "id1289", "T"], [24, 2, 1, "id1290", "all"], [24, 2, 1, "id1291", "any"], [24, 2, 1, "id1292", "argmax"], [24, 2, 1, "id1293", "argmin"], [24, 2, 1, "id1294", "argsort"], [24, 2, 1, "id1295", "astype"], [24, 2, 1, "id1296", "base"], [24, 2, 1, "id1297", "byteswap"], [24, 2, 1, "id1298", "choose"], [24, 2, 1, "id1299", "clip"], [24, 2, 1, "id1300", "compress"], [24, 2, 1, "id1301", "conj"], [24, 2, 1, "id1302", "conjugate"], [24, 2, 1, "id1303", "copy"], [24, 2, 1, "id1304", "cumprod"], [24, 2, 1, "id1305", "cumsum"], [24, 2, 1, "id1306", "data"], [24, 2, 1, "id1307", "diagonal"], [24, 2, 1, "id1308", "dtype"], [24, 2, 1, "id1309", "dump"], [24, 2, 1, "id1310", "dumps"], [24, 2, 1, "id1311", "fill"], [24, 2, 1, "id1312", "flags"], [24, 2, 1, "id1313", "flat"], [24, 2, 1, "id1314", "flatten"], [24, 2, 1, "id1315", "getfield"], [24, 2, 1, "id1316", "imag"], [24, 2, 1, "id1317", "item"], [24, 2, 1, "id1318", "itemset"], [24, 2, 1, "id1319", "itemsize"], [24, 2, 1, "id1320", "max"], [24, 2, 1, "id1321", "mean"], [24, 2, 1, "id1322", "min"], [24, 2, 1, "id1323", "nbytes"], [24, 2, 1, "id1324", "ndim"], [24, 2, 1, "id1325", "newbyteorder"], [24, 2, 1, "id1326", "nonzero"], [24, 2, 1, "id1327", "prod"], [24, 2, 1, "id1328", "ptp"], [24, 2, 1, "id1329", "put"], [24, 2, 1, "id1330", "ravel"], [24, 2, 1, "id1331", "real"], [24, 2, 1, "id1332", "repeat"], [24, 2, 1, "id1333", "reshape"], [24, 2, 1, "id1334", "resize"], [24, 2, 1, "id1335", "round"], [24, 2, 1, "id1336", "searchsorted"], [24, 2, 1, "id1337", "setfield"], [24, 2, 1, "id1338", "setflags"], [24, 2, 1, "id1339", "shape"], [24, 2, 1, "id1340", "size"], [24, 2, 1, "id1341", "sort"], [24, 2, 1, "id1342", "squeeze"], [24, 2, 1, "id1343", "std"], [24, 2, 1, "id1344", "strides"], [24, 2, 1, "id1345", "sum"], [24, 2, 1, "id1346", "swapaxes"], [24, 2, 1, "id1347", "take"], [24, 2, 1, "id1348", "tobytes"], [24, 2, 1, "id1349", "tofile"], [24, 2, 1, "id1350", "tolist"], [24, 2, 1, "id1351", "tostring"], [24, 2, 1, "id1352", "trace"], [24, 2, 1, "id1353", "transpose"], [24, 2, 1, "id1354", "var"], [24, 2, 1, "id1355", "view"]], "arkouda.strings": [[53, 1, 1, "", "Strings"]], "arkouda.strings.Strings": [[53, 4, 1, "", "BinOps"], [53, 2, 1, "", "astype"], [53, 2, 1, "", "attach"], [53, 2, 1, "", "cached_regex_patterns"], [53, 2, 1, "", "capitalize"], [53, 2, 1, "", "contains"], [53, 2, 1, "", "decode"], [53, 4, 1, "id0", "dtype"], [53, 2, 1, "", "encode"], [53, 2, 1, "", "endswith"], [53, 4, 1, "id1", "entry"], [53, 2, 1, "", "equals"], [53, 2, 1, "", "find_locations"], [53, 2, 1, "", "findall"], [53, 2, 1, "", "flatten"], [53, 2, 1, "", "from_parts"], [53, 2, 1, "", "from_return_msg"], [53, 2, 1, "", "fullmatch"], [53, 2, 1, "", "get_bytes"], [53, 2, 1, "", "get_lengths"], [53, 2, 1, "", "get_offsets"], [53, 2, 1, "", "get_prefixes"], [53, 2, 1, "", "get_suffixes"], [53, 2, 1, "", "group"], [53, 2, 1, "", "hash"], [53, 6, 1, "", "inferred_type"], [53, 2, 1, "", "info"], [53, 2, 1, "", "is_registered"], [53, 2, 1, "", "isalnum"], [53, 2, 1, "", "isalpha"], [53, 2, 1, "", "isdecimal"], [53, 2, 1, "", "isdigit"], [53, 2, 1, "", "isempty"], [53, 2, 1, "", "islower"], [53, 2, 1, "", "isspace"], [53, 2, 1, "", "istitle"], [53, 2, 1, "", "isupper"], [53, 4, 1, "id2", "logger"], [53, 2, 1, "", "lower"], [53, 2, 1, "", "lstick"], [53, 2, 1, "", "match"], [53, 4, 1, "", "nbytes"], [53, 4, 1, "", "ndim"], [53, 4, 1, "", "objType"], [53, 2, 1, "", "peel"], [53, 2, 1, "", "pretty_print_info"], [53, 2, 1, "", "purge_cached_regex_patterns"], [53, 2, 1, "", "regex_split"], [53, 2, 1, "", "register"], [53, 4, 1, "", "registered_name"], [53, 2, 1, "", "rpeel"], [53, 2, 1, "", "save"], [53, 2, 1, "", "search"], [53, 4, 1, "", "shape"], [53, 4, 1, "", "size"], [53, 2, 1, "", "split"], [53, 2, 1, "", "startswith"], [53, 2, 1, "", "stick"], [53, 2, 1, "", "strip"], [53, 2, 1, "", "sub"], [53, 2, 1, "", "subn"], [53, 2, 1, "", "title"], [53, 2, 1, "", "to_csv"], [53, 2, 1, "", "to_hdf"], [53, 2, 1, "", "to_list"], [53, 2, 1, "", "to_ndarray"], [53, 2, 1, "", "to_parquet"], [53, 2, 1, "", "transfer"], [53, 2, 1, "", "unregister"], [53, 2, 1, "", "unregister_strings_by_name"], [53, 2, 1, "", "update_hdf"], [53, 2, 1, "", "upper"]], "arkouda.testing": [[54, 5, 1, "", "assert_almost_equal"], [54, 5, 1, "", "assert_almost_equivalent"], [54, 5, 1, "", "assert_arkouda_array_equal"], [54, 5, 1, "", "assert_arkouda_array_equivalent"], [54, 5, 1, "", "assert_arkouda_pdarray_equal"], [54, 5, 1, "", "assert_arkouda_segarray_equal"], [54, 5, 1, "", "assert_arkouda_strings_equal"], [54, 5, 1, "", "assert_attr_equal"], [54, 5, 1, "", "assert_categorical_equal"], [54, 5, 1, "", "assert_class_equal"], [54, 5, 1, "", "assert_contains_all"], [54, 5, 1, "", "assert_copy"], [54, 5, 1, "", "assert_dict_equal"], [54, 5, 1, "", "assert_equal"], [54, 5, 1, "", "assert_equivalent"], [54, 5, 1, "", "assert_frame_equal"], [54, 5, 1, "", "assert_frame_equivalent"], [54, 5, 1, "", "assert_index_equal"], [54, 5, 1, "", "assert_index_equivalent"], [54, 5, 1, "", "assert_is_sorted"], [54, 5, 1, "", "assert_series_equal"], [54, 5, 1, "", "assert_series_equivalent"]], "arkouda.timeclass": [[55, 1, 1, "", "Datetime"], [55, 1, 1, "", "Timedelta"], [55, 5, 1, "", "date_range"], [55, 5, 1, "", "timedelta_range"]], "arkouda.timeclass.Datetime": [[55, 6, 1, "", "date"], [55, 6, 1, "", "day"], [55, 6, 1, "", "day_of_week"], [55, 6, 1, "", "day_of_year"], [55, 6, 1, "", "dayofweek"], [55, 6, 1, "", "dayofyear"], [55, 6, 1, "", "hour"], [55, 6, 1, "", "is_leap_year"], [55, 2, 1, "", "is_registered"], [55, 2, 1, "", "isocalendar"], [55, 6, 1, "", "microsecond"], [55, 6, 1, "", "millisecond"], [55, 6, 1, "", "minute"], [55, 6, 1, "", "month"], [55, 6, 1, "", "nanosecond"], [55, 2, 1, "", "register"], [55, 6, 1, "", "second"], [55, 4, 1, "", "special_objType"], [55, 2, 1, "", "sum"], [55, 4, 1, "", "supported_opeq"], [55, 4, 1, "", "supported_with_datetime"], [55, 4, 1, "", "supported_with_pdarray"], [55, 4, 1, "", "supported_with_r_datetime"], [55, 4, 1, "", "supported_with_r_pdarray"], [55, 4, 1, "", "supported_with_r_timedelta"], [55, 4, 1, "", "supported_with_timedelta"], [55, 2, 1, "", "to_pandas"], [55, 2, 1, "", "unregister"], [55, 6, 1, "", "week"], [55, 6, 1, "", "weekday"], [55, 6, 1, "", "weekofyear"], [55, 6, 1, "", "year"]], "arkouda.timeclass.Timedelta": [[55, 2, 1, "", "abs"], [55, 6, 1, "", "components"], [55, 6, 1, "", "days"], [55, 2, 1, "", "is_registered"], [55, 6, 1, "", "microseconds"], [55, 6, 1, "", "nanoseconds"], [55, 2, 1, "", "register"], [55, 6, 1, "", "seconds"], [55, 4, 1, "", "special_objType"], [55, 2, 1, "", "std"], [55, 2, 1, "", "sum"], [55, 4, 1, "", "supported_opeq"], [55, 4, 1, "", "supported_with_datetime"], [55, 4, 1, "", "supported_with_pdarray"], [55, 4, 1, "", "supported_with_r_datetime"], [55, 4, 1, "", "supported_with_r_pdarray"], [55, 4, 1, "", "supported_with_r_timedelta"], [55, 4, 1, "", "supported_with_timedelta"], [55, 2, 1, "", "to_pandas"], [55, 2, 1, "", "total_seconds"], [55, 2, 1, "", "unregister"]], "arkouda.ubyte": [[24, 2, 1, "", "bit_count"]], "arkouda.uint": [[24, 2, 1, "", "bit_count"]], "arkouda.uint16": [[24, 2, 1, "", "bit_count"]], "arkouda.uint32": [[24, 2, 1, "", "bit_count"]], "arkouda.uint64": [[24, 2, 1, "", "bit_count"]], "arkouda.uint8": [[24, 2, 1, "", "bit_count"]], "arkouda.uintc": [[24, 2, 1, "", "bit_count"]], "arkouda.uintp": [[24, 2, 1, "", "bit_count"]], "arkouda.ulonglong": [[24, 2, 1, "", "bit_count"]], "arkouda.ushort": [[24, 2, 1, "", "bit_count"]], "arkouda.util": [[56, 5, 1, "", "attach"], [56, 5, 1, "", "attach_all"], [56, 5, 1, "", "broadcast_dims"], [56, 5, 1, "", "concatenate"], [56, 5, 1, "", "convert_bytes"], [56, 5, 1, "", "convert_if_categorical"], [56, 5, 1, "", "enrich_inplace"], [56, 5, 1, "", "expand"], [56, 5, 1, "", "generic_concat"], [56, 5, 1, "", "get_callback"], [56, 5, 1, "", "identity"], [56, 5, 1, "", "invert_permutation"], [56, 5, 1, "", "is_float"], [56, 5, 1, "", "is_int"], [56, 5, 1, "", "is_numeric"], [56, 5, 1, "", "is_registered"], [56, 5, 1, "", "map"], [56, 5, 1, "", "most_common"], [56, 5, 1, "", "register"], [56, 5, 1, "", "register_all"], [56, 5, 1, "", "report_mem"], [56, 5, 1, "", "sparse_sum_help"], [56, 5, 1, "", "unregister"], [56, 5, 1, "", "unregister_all"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "data", "Python data"], "4": ["py", "attribute", "Python attribute"], "5": ["py", "function", "Python function"], "6": ["py", "property", "Python property"], "7": ["py", "exception", "Python exception"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:data", "4": "py:attribute", "5": "py:function", "6": "py:property", "7": "py:exception"}, "terms": {"": [0, 1, 2, 3, 4, 7, 8, 11, 14, 15, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 34, 35, 36, 37, 42, 46, 47, 48, 49, 51, 53, 54, 55, 56, 58, 61, 62, 66, 75, 76, 77, 80, 81, 82, 84, 87, 88, 90, 91, 92, 94, 95, 96, 97, 99, 100], "0": [0, 3, 4, 5, 8, 11, 15, 17, 18, 20, 21, 22, 24, 25, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 42, 44, 45, 46, 48, 49, 50, 52, 53, 54, 55, 56, 58, 59, 60, 66, 67, 68, 73, 76, 77, 79, 80, 82, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "00": [20, 24, 35, 59], "00000000000000000": [20, 22, 24, 25, 35, 45, 56, 90, 91], "00000000000003": [22, 24, 91], "00012": [24, 35], "00018361238254747651": 59, "0001_0d4865d7c9453adc6af6409568da326845c358b9_20230406_165330": 59, "0002": 59, "0002090000002681336": 59, "0009575499998391024": 59, "001": 46, "0011": [24, 35], "001326192548940973": 59, "0014_31de39be8b19c76d073a8999def6673a305c250d_20230405_145759_uncommit": 59, "0015_31de39be8b19c76d073a8999def6673a305c250d_20230405_145947_uncommit": 59, "0024": [24, 35], "00383609999971668": 59, "0039507749997937935": 59, "0040258999997604406": 59, "004057779999857303": 59, "004066600000442122": 59, "004131924999910552": 59, "004159775000061927": 59, "004246700000294368": 59, "0043372999998609885": 59, "0048064200000226265": 59, "005089474999749655": 59, "007168699999965611": 59, "01": [24, 35, 38, 46, 59, 62, 64], "013": 92, "0197": 59, "01t00": [24, 35], "02": 59, "020288899999286514": 59, "021728052940979934": [36, 42, 95], "024032100000113132": 59, "03": 59, "030785499755523249": [36, 42, 95], "03960235520756414": [24, 44], "04": [59, 80], "04380595350226197": [24, 44], "0441791878997098": [24, 36, 38, 42], "0472855509390593": [24, 35, 87], "04t12": 59, "04t16": 59, "05": [24, 54], "05309592737584": [24, 35, 87], "0532529435624589": [36, 42, 95], "0550596900172": 59, "055256829926011691": [36, 42, 95], "0598322696795694": [36, 42, 95], "05t15": 59, "06": 59, "0625": [20, 24], "07": 59, "07734942223993": 92, "08": [24, 54], "083130710959903542": [24, 36, 38, 42, 89], "08505865366367038": [36, 42, 95], "085536923187668": [24, 35, 87], "0889": 59, "09": [59, 76], "0954451150103321": [22, 24, 91], "097392": 59, "0b10": [24, 37], "0b100": [21, 24, 34, 35, 46], "0b101111111111111111111111111111111111111111111111111111111111111111": [24, 37], "0d": [24, 35], "0x1": [21, 24, 34, 35], "0x1p": [21, 24, 34, 35], "0x7f2cf23e10c0": [20, 24, 90], "0x91d4430": [24, 35], "1": [0, 1, 3, 5, 7, 10, 11, 14, 16, 17, 18, 20, 21, 22, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 42, 44, 45, 46, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 62, 63, 66, 67, 68, 71, 73, 76, 77, 78, 79, 80, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "10": [3, 7, 17, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 40, 41, 42, 44, 46, 48, 49, 50, 53, 56, 58, 59, 66, 77, 79, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97], "100": [20, 24, 35, 37, 41, 46, 49, 56, 59, 66, 87], "1000": [20, 24, 25, 29, 46, 85, 92], "10000": 18, "100000": 66, "100000000": 82, "1000000000000001": [24, 35], "100x40": [4, 8], "101": [24, 35, 53], "1024": [1, 24, 37], "104": [24, 53], "105": [0, 18], "106": [36, 42, 95], "1073741824": [20, 24, 90], "1074": [21, 24, 34, 35], "108": [22, 24, 91], "109302162163285": [24, 44], "11": [3, 20, 21, 24, 34, 35, 40, 48, 56, 59, 64, 66, 67, 87, 90, 92, 93, 96], "110": [24, 53], "110680464442257309696": [3, 24], "110680464442257309708": [3, 24], "1109": [24, 35], "111": [20, 24, 53, 90], "11101": [24, 35], "11111111111111116": [22, 24, 91], "114": [24, 53], "116": [24, 53], "119": [24, 53], "11e": [24, 35], "12": [3, 20, 22, 24, 27, 35, 40, 44, 48, 53, 56, 59, 75, 79, 80, 87, 91, 93, 96], "120": [24, 53], "121": [24, 53], "122": [24, 53], "1234": [17, 20, 24, 27, 37, 48, 53, 62], "1235": [17, 20, 24, 27, 37, 48, 53], "1236": [17, 20, 24, 27, 37, 48, 53], "1237": [17, 20, 24, 27, 37, 48, 53], "127": [21, 24, 34, 35, 60], "128": [17, 21, 24, 34, 35, 48, 53], "12gb": 80, "13": [3, 24, 35, 36, 40, 42, 56, 59, 76, 79, 87, 92, 93, 95], "1319566682702642": [36, 42, 95], "134": [24, 35, 87], "14": [3, 20, 22, 24, 35, 36, 40, 42, 46, 53, 59, 66, 67, 87, 91, 93, 95], "14159": [21, 24, 34, 35], "1415927": [24, 35], "1415927e": [24, 35], "1436": 59, "15": [3, 17, 20, 24, 35, 36, 40, 42, 53, 93, 95], "1514764800000000000": [24, 38], "15461882265": 73, "158": 59, "1598310770203937": [24, 35, 87], "16": [20, 21, 22, 24, 34, 35, 36, 42, 56, 59, 60, 76, 77, 87, 91, 93, 95], "160": [24, 37], "1622479306453748": [24, 35, 87], "16400145561571539": [36, 42, 95], "166020696663385964564": [3, 24], "166020696663385964574": [3, 24], "1665150633720014": [36, 42, 95], "17": [20, 24, 35, 36, 42, 59, 66, 93, 95], "1723810583573375": [24, 36, 38, 42], "18": [20, 22, 24, 36, 37, 42, 59, 87, 91, 93, 95], "18446744073709551616": [24, 37, 38], "18446744073709551617": [24, 37, 38], "18446744073709551618": [24, 37, 38], "18446744073709551619": [24, 37, 38], "18446744073709551620": [24, 37, 38], "1882": 59, "18_446_744_073_709_551_615": [21, 24, 34, 35], "19": [24, 35, 56, 93], "1923875335537315": [36, 42, 95], "196608": 59, "1970": [24, 35], "1980": [24, 35], "1_2___": [24, 31, 53, 100], "1d": [5, 9, 11, 15, 24, 35, 40, 48, 49, 58, 96, 97, 98], "1e": [24, 46, 54], "1string": [24, 53], "2": [0, 3, 7, 17, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 42, 44, 45, 46, 48, 49, 50, 51, 53, 54, 56, 58, 59, 60, 62, 66, 67, 68, 75, 76, 77, 78, 79, 80, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "20": [1, 3, 4, 8, 20, 24, 35, 36, 40, 42, 44, 62, 66, 79, 80, 87, 93, 95], "2000": 59, "2008": [24, 35], "20159494048757": [36, 42, 95], "2018": [24, 38], "2020": 59, "2022": 77, "2023": [59, 76], "2024": [24, 44], "2047": [21, 24, 34, 35], "2048": [24, 37], "208": 59, "2080": 59, "20ghz": 59, "21": [3, 24, 35, 87], "210": 59, "2147483647": [24, 35], "2147483648": [24, 35], "21589865655358": [24, 35, 87], "22": [3, 21, 24, 34, 35, 87], "2200000000": 59, "2207999000": 59, "222": [20, 24, 90], "2250": 59, "22e": [24, 35], "23": [3, 21, 24, 34, 35, 37], "230000071797338e": [24, 35], "2324_pytest_benchmark_doc": 59, "236": 59, "23e": [24, 35], "23e24": [24, 35], "24": [3, 24, 25, 35, 37, 49, 59, 79, 87], "246": 59, "25": [3, 20, 21, 22, 24, 25, 27, 34, 35, 37, 38, 49, 56, 89, 91], "255": [21, 24, 34, 35], "256": [24, 37, 59], "2561": 59, "25x": [24, 35], "26": 59, "263": 59, "264": 59, "267": 59, "27": [20, 24, 37, 59, 66], "28": 56, "281": 59, "290": [20, 24], "298": [20, 24], "2_147_483_647": [21, 24, 34, 35], "2_147_483_648": [21, 24, 34, 35], "2d": [4, 5, 8], "2\u00b3x\u2087": [24, 53], "2\u00b3\u2087": [24, 53], "3": [3, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 41, 42, 44, 45, 48, 49, 50, 53, 54, 56, 58, 59, 66, 67, 68, 76, 77, 79, 82, 83, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 98, 100], "30": [3, 24, 25, 35, 44, 49, 56, 63], "3000": [24, 49], "3000000000000007": [24, 35], "3000488281": [24, 35], "30013431967121934": [24, 36, 38, 42], "3025850929940459": [24, 35, 87], "31": [62, 80], "3141": [24, 35], "317766166719343": [24, 45], "31de39be8b19c76d073a8999def6673a305c250d": 59, "32": [20, 21, 24, 27, 34, 35, 37, 47, 59, 66, 68], "3219280948873626": [24, 35, 87], "324": [21, 24, 34, 35], "32767": [24, 35], "32768": [24, 35], "32_767": [21, 24, 34, 35], "32_768": [21, 24, 34, 35], "33": [24, 35, 87], "3304": 59, "3306": 59, "333": [20, 24, 90], "333333333333333": [22, 24, 91], "33333333333333326": [22, 24, 91], "33333333333333337": [22, 24, 91], "33333333333333348": [22, 24, 91], "333333333333334": [24, 44], "35": 66, "350": 59, "35000": 66, "353429832157099": [24, 36, 38, 42, 89], "36": [21, 24, 34, 35, 46, 92], "3620": 59, "3673425816523577": [36, 42, 95], "36893488147419103233": [3, 24], "37": 66, "3805": 59, "384": [24, 37], "38552048588998722": [36, 42, 95], "3866978126031091": [36, 42, 95], "3890560989306504": [24, 35, 87], "39": [20, 24, 59], "3dnowprefetch": 59, "3q4kc": [24, 38], "3w": [21, 24, 34, 35], "4": [3, 4, 8, 17, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 42, 45, 46, 48, 49, 50, 53, 54, 56, 59, 66, 68, 76, 77, 79, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 98, 100], "40000": [20, 24], "4097": 59, "4110385860243131": [24, 35, 87], "4142135623730951": [24, 37], "41619265571741659": [24, 38], "4177": 59, "42": 93, "4231": 59, "4298": 59, "4328": 59, "44017172817806": 59, "4444": 59, "45": [24, 35], "450": [24, 35, 87], "454368507659211": [24, 35, 87], "457": 18, "459": [20, 24], "46": [24, 35, 49, 87], "4608": [24, 37], "4610935": [24, 35], "4621": 59, "4657359027997265": [24, 45], "47108547995356098": [36, 42, 95], "47383036230759112": [24, 36, 38, 42], "478894913238722": [24, 35, 87], "48": [24, 25, 49], "4869": 59, "4875": 59, "49": [24, 35], "4930614433405491": [24, 45], "494295836924771": [24, 35, 87], "4_294_967_295": [21, 24, 34, 35], "4k": [24, 38], "5": [3, 17, 18, 20, 21, 22, 24, 25, 34, 35, 36, 37, 38, 40, 42, 44, 45, 46, 48, 49, 50, 53, 54, 56, 59, 66, 67, 68, 70, 77, 79, 84, 86, 87, 89, 90, 91, 93, 94, 95, 96, 98, 100], "50": [4, 8, 59, 66], "500": [18, 60, 63], "5000": [20, 24], "512": [24, 37], "52": [21, 24, 34, 35, 66], "5246": 59, "5255": 59, "5275252316519465": [22, 24, 91], "53": [24, 35], "5306": 59, "5392023718621486": [24, 36, 38, 42, 89], "54": [24, 35, 87], "5424399190667666": [36, 42, 95], "55": 46, "5541": 59, "5555": [18, 73, 99], "55555555555555536": [22, 24, 91], "55555555555555558": [22, 24, 91], "5571769623557188": [24, 35, 87], "56": [24, 37, 67], "5622": 59, "5652": 59, "567584107142031": [24, 36, 38, 42], "57": 59, "5728783400481925": [24, 35, 87], "57600036956445599": [24, 38], "58": 59, "5801": 59, "5835189384561099": [24, 45], "5837": 59, "598150033144236": [24, 35, 87], "5____6___7": [24, 53, 100], "5e": [21, 24, 34, 35, 59], "5h": [24, 55], "5oz1": [24, 38], "6": [3, 20, 22, 24, 25, 27, 35, 37, 38, 40, 45, 46, 48, 53, 56, 59, 66, 76, 77, 79, 80, 82, 84, 87, 89, 90, 91, 92, 93, 96, 98, 100], "60": [24, 37], "600000000000001": [24, 35], "6051701859880918": [24, 35, 87], "6094379124341003": [24, 45], "61": [24, 37], "6125": 59, "62": [20, 24, 37, 59], "62511314008006458": [36, 42, 95], "63": [24, 35, 37, 94], "64": [19, 21, 24, 27, 34, 35, 36, 37, 38, 42, 58, 59, 89, 90, 94], "6438561897747253": [24, 35, 87], "6450": 59, "6465": 59, "647": 18, "64bit": 59, "65": [24, 37], "65_535": [21, 24, 34, 35], "6615356693784662": [24, 38], "6666666666666665": [22, 24, 91], "67": [20, 24], "68586185091150265": [24, 36, 38, 42], "6864": 59, "68894208386667544": [24, 36, 38, 42, 89], "7": [3, 20, 21, 22, 24, 25, 34, 35, 36, 37, 38, 40, 42, 45, 48, 49, 50, 56, 66, 76, 77, 79, 84, 86, 87, 89, 90, 91, 93, 95, 96, 98], "70": [24, 35], "7085325853376141": [36, 42, 95], "71": 66, "710615785506533": [24, 35, 87], "7182818284590451": [24, 35, 87], "7208667145173608": [36, 42, 95], "7320508075688772": [24, 37], "7336": 59, "75": [22, 24, 38, 89, 91], "75000": 66, "754": [24, 35], "7544": 59, "7659": 59, "77": [20, 24], "77000": 66, "77777777777777768": [22, 24, 91], "77777777777777779": [22, 24, 91], "7852": 59, "78523998586553": [24, 35, 87], "79": 59, "7912": 59, "7999999999999998": [22, 24, 91], "8": [3, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 40, 42, 44, 45, 48, 50, 53, 54, 59, 60, 61, 66, 67, 76, 77, 79, 80, 84, 86, 87, 89, 90, 91, 93, 94, 95, 96], "80": 66, "8075": 59, "81": [24, 35], "8377304471659395": [24, 45], "8380": 59, "84": 66, "84010843172504": [24, 35, 87], "86": [20, 24], "8601": [24, 35], "87": 59, "875": [24, 49], "8750h": 59, "8797352989638163": [36, 42, 95], "88": 59, "8800": 59, "88281": [20, 24], "896": [24, 37], "9": [3, 17, 20, 22, 24, 27, 35, 37, 38, 40, 48, 50, 53, 56, 59, 66, 76, 77, 79, 84, 86, 87, 89, 90, 91, 92, 93, 96, 100], "90": 59, "9012": 59, "9160772326374946": [24, 36, 38, 42, 89], "9177": 59, "92176432277231968": [24, 36, 38, 42, 89], "921f9f01b866ep": [21, 24, 34, 35], "9223372036854775807": [21, 24, 34, 35], "92233720368547758085": [3, 24], "92233720368547758090": [3, 24], "92233720368547758091": [3, 24], "92233720368547758095": [3, 24], "931": 79, "9314718055994531": [24, 45], "934176000000015": 92, "9362": 18, "94": 59, "9437184": 59, "9442193396379163": 24, "945880905466208": [24, 35, 87], "96": [24, 37], "9602": 18, "9683": 18, "984375": [21, 24, 34, 35], "99": [20, 24, 46, 59, 90], "999": 46, "9991": 59, "99999": 0, "9999999999999982": [22, 24, 91], "999999999999ap": [21, 24, 34, 35], "9_223_372_036_854_775_807": [21, 24, 34, 35], "9_223_372_036_854_775_808": [21, 24, 34, 35], "A": [1, 2, 9, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 34, 35, 36, 37, 38, 39, 41, 42, 46, 47, 48, 49, 51, 52, 53, 56, 62, 66, 72, 82, 84, 87, 88, 90, 92, 93, 94, 95, 96, 97, 98, 100], "AND": [7, 22, 24, 48, 83, 91], "And": [46, 94], "As": [0, 24, 35, 37, 46, 49, 51, 53, 62, 67, 69, 76, 77, 84, 87, 94, 97, 100], "At": [24, 35, 37, 87], "Be": [0, 20, 24, 25, 27, 37, 53, 58], "But": [3, 24], "By": [17, 19, 20, 22, 24, 25, 27, 35, 37, 40, 48, 53, 54, 55, 80, 91, 98, 100], "For": [0, 2, 3, 4, 8, 17, 20, 21, 22, 24, 27, 31, 34, 35, 36, 38, 40, 42, 46, 50, 53, 55, 56, 58, 59, 63, 66, 71, 73, 75, 76, 77, 78, 81, 84, 86, 89, 91, 92, 93, 94, 95, 96, 98, 100], "IN": 66, "If": [0, 1, 3, 5, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 46, 48, 49, 51, 53, 54, 55, 56, 58, 60, 61, 62, 63, 67, 68, 70, 73, 75, 76, 77, 78, 80, 81, 84, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 99, 100], "In": [17, 20, 21, 22, 24, 27, 34, 35, 36, 37, 42, 53, 58, 59, 60, 62, 63, 66, 73, 75, 76, 78, 80, 84, 87, 91, 92, 93, 95, 96, 99, 100], "It": [0, 4, 19, 20, 24, 35, 37, 47, 48, 54, 56, 58, 60, 61, 64, 66, 67, 68, 70, 73, 76, 77, 80, 90, 91, 96], "Its": [36, 42, 95], "NO": 59, "NOT": [7, 20, 24, 25, 27, 35, 37, 53, 75, 84, 94], "No": [24, 37, 75, 80], "Not": [7, 24, 27, 35, 49, 55, 59, 90], "ONE": 68, "OR": [7, 22, 24, 48, 62, 83, 91], "Of": [24, 55], "On": [17, 18, 24, 99], "One": [20, 22, 24, 25, 35, 37, 49, 56, 58, 66, 91, 97], "Ones": [24, 38, 89], "Or": [24, 35, 62], "The": [0, 1, 2, 3, 4, 5, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 42, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 62, 66, 67, 68, 69, 73, 75, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "Then": [24, 54], "There": [1, 21, 22, 24, 27, 34, 35, 59, 66, 75, 80, 89, 98], "These": [1, 20, 21, 24, 34, 35, 49, 66, 68, 71, 73, 84], "To": [0, 1, 20, 21, 22, 24, 27, 34, 35, 36, 42, 46, 55, 58, 59, 60, 64, 67, 73, 75, 77, 78, 80, 88, 90, 92, 94, 95, 100], "Will": 59, "With": [22, 24, 35, 58, 78, 91, 93], "_": [3, 22, 24, 31, 35, 53, 91, 100], "__": [24, 31, 53, 100], "__4___5____6___7": [24, 31, 53, 100], "___": [24, 53, 100], "____": [24, 31, 53, 100], "__all__": 58, "__allsymbols__": [24, 26], "__array_function__": 4, "__dict__": 78, "__init__": [2, 24], "__int__": [21, 24, 34, 35, 46], "__name__": [24, 35], "__registeredsymbols__": [24, 26], "__str__": [20, 21, 22, 24, 34, 35, 46, 49], "_abstractbasetim": [24, 55], "_base_unit": [24, 55], "_distn_infrastructur": 46, "_equal": [24, 54], "_equival": [24, 54], "_filter_arkouda_command": 23, "_final": [21, 34], "_genericalia": [21, 24, 34, 35], "_get_grouping_kei": [22, 24, 91], "_length": [24, 48], "_local": [17, 20, 24, 25, 27, 37, 48, 53, 68], "_locale0000": [20, 24], "_numer": [24, 35], "_segment": [24, 48, 68], "_type": [4, 5, 6, 8, 15], "_valu": [24, 48, 68], "_x": [20, 24], "_y": [20, 24], "a1": [24, 29, 35, 87], "a2": [24, 29, 35, 37, 87], "a5": [24, 35], "a_cpi": [24, 37], "a_max": 16, "a_min": 16, "ab": [7, 24, 35, 55, 83, 87], "abc": [21, 24, 25, 34, 35, 67], "abcd": [24, 35], "abil": 96, "abl": [58, 62, 68, 69, 75, 84], "abm": 59, "abocorhfm": [24, 38], "about": [17, 18, 24, 26, 35, 37, 53, 55, 58, 59, 63, 73, 78, 87, 100], "abov": [5, 21, 24, 34, 35, 36, 42, 46, 58, 59, 64, 66, 75, 76, 90, 95, 100], "abs_dt": [24, 29], "absolut": [1, 7, 21, 24, 34, 35, 54, 55, 78, 87], "abspath": [24, 35], "abstract": [23, 24, 35], "acceler": 61, "accept": [24, 35, 49, 55, 59, 97], "access": [1, 2, 18, 24, 27, 35, 47, 49, 53, 58, 66, 71, 75, 77, 83, 84, 95, 99], "access_channel": [18, 99], "access_token": [18, 99], "accessor": [24, 57], "accomod": [19, 24], "accomplish": [78, 84], "accord": [19, 20, 22, 24, 25, 35, 49, 56, 90, 91, 94], "accordingli": [24, 38, 68, 89], "account": 80, "accur": 46, "accuraci": 46, "achiev": [3, 20, 24, 75], "aco": 7, "acosh": 7, "acquir": 58, "across": [4, 8, 20, 24, 27, 68, 84, 95], "act": [24, 36, 37, 42, 95], "action": 62, "activ": [73, 75, 76, 77, 91], "actual": [21, 24, 29, 34, 35, 67], "ad": [17, 19, 20, 21, 24, 25, 27, 30, 34, 35, 37, 48, 53, 63, 65, 66, 70, 75, 84, 99], "add": [0, 1, 7, 17, 20, 22, 24, 27, 35, 36, 42, 48, 49, 58, 62, 73, 75, 76, 77, 78, 80, 90, 91, 95], "add_newdoc": [24, 35], "addit": [1, 11, 20, 22, 24, 35, 36, 41, 42, 54, 60, 68, 70, 76, 94, 95, 98, 99], "addition": [78, 85], "address": [0, 18, 19, 24, 99], "adher": 68, "adjac": [24, 35], "adversari": [24, 35], "adx": 59, "ae": 59, "affect": [19, 24, 36, 42, 95], "after": [0, 17, 20, 22, 24, 35, 39, 53, 62, 64, 75, 90, 91, 95, 100], "ag": 66, "again": [0, 64, 66, 67, 75, 76], "against": [17, 24, 48, 53, 59, 66, 84, 96, 100], "aggreg": [1, 20, 22, 24, 48, 56, 66, 83, 84, 91], "aggress": 84, "aid": [66, 68], "aim": 66, "ak": [0, 1, 3, 17, 18, 19, 20, 22, 24, 25, 26, 27, 31, 35, 36, 37, 38, 40, 41, 42, 44, 45, 48, 49, 50, 53, 54, 55, 56, 58, 63, 64, 66, 67, 73, 78, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100], "ak_arr": 66, "ak_data": [24, 27, 84], "ak_df": [20, 24, 41, 90], "ak_in1d": 66, "ak_in1dmult": 66, "ak_in1dmulti": 66, "ak_int": 66, "ak_intmult": 66, "ak_io_benchmark": 59, "aka": [47, 75], "akab": 24, "akbool": 24, "akcast": 24, "akfloat64": 24, "akint64": [24, 38], "akstat": [24, 44], "aku": [3, 24, 25, 43, 85], "akuint64": 24, "algorithm": [14, 24, 35, 50, 56, 73, 86], "alia": [20, 21, 24, 34, 35, 40, 48, 49, 55, 90], "alias": [21, 24, 34, 35, 55], "alic": [20, 24, 90], "align": [24, 25, 35, 57], "all": [0, 3, 4, 5, 8, 11, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 48, 51, 53, 54, 55, 56, 58, 59, 62, 63, 64, 67, 68, 70, 73, 76, 77, 78, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 100], "all_occurr": [3, 24, 40], "all_scalar": [21, 24, 34, 35, 38, 89], "allclos": [24, 46, 54], "alloc": [18, 75, 80], "allow": [0, 17, 19, 20, 22, 24, 25, 27, 30, 35, 36, 37, 38, 42, 44, 48, 49, 53, 54, 56, 59, 60, 66, 69, 71, 78, 80, 84, 91, 95, 96], "allow_error": [20, 24, 25, 27, 37, 53, 84], "allow_list": [24, 25, 85], "allsymbol": [24, 26], "almost": [88, 90, 94, 100], "alnum": [24, 53], "alon": [88, 100], "along": [4, 8, 9, 11, 12, 14, 15, 16, 20, 22, 24, 35, 37, 38, 39, 87, 89, 98], "alongsid": [24, 27], "alpha": [24, 46, 53, 59, 82], "alphabet": [24, 53], "alphanumer": [24, 53], "alreadi": [0, 1, 17, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 55, 63, 67, 68, 70, 75, 88, 91, 98], "also": [1, 3, 4, 17, 19, 21, 22, 24, 29, 34, 35, 36, 38, 40, 42, 46, 48, 49, 53, 54, 58, 61, 63, 66, 67, 69, 70, 71, 73, 76, 80, 84, 89, 93, 94, 95, 96, 98, 100], "altern": [1, 20, 24, 35, 36, 42, 46, 49, 62, 63, 75, 77, 80, 95], "although": [4, 8], "alwai": [0, 11, 14, 21, 22, 24, 25, 27, 34, 35, 37, 53, 55, 58, 67, 84, 87, 88, 90, 91, 92, 94, 100], "amount": [18, 20, 24, 37, 75, 78, 90, 100], "an": [0, 1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 34, 35, 36, 37, 38, 39, 40, 42, 43, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 70, 73, 76, 80, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "anaconda": [1, 73, 75, 80, 81], "anaconda3": [75, 76, 77], "analog": [21, 22, 24, 34, 35, 55, 91], "analyt": 72, "angl": [24, 35], "ani": [0, 3, 16, 17, 20, 21, 22, 24, 25, 26, 27, 28, 34, 35, 36, 37, 38, 42, 48, 49, 51, 53, 54, 58, 59, 62, 64, 68, 70, 76, 77, 83, 87, 90, 91, 92, 94, 95, 96, 100], "anim": [24, 49], "animal_1": [20, 24], "animal_2": [20, 24], "annot": [21, 34, 58, 75], "anoth": [0, 5, 6, 12, 20, 21, 22, 24, 27, 34, 35, 37, 53, 58, 68, 73, 77, 80, 84, 90, 91, 93, 94, 96, 100], "anyon": 0, "anyth": [0, 21, 24, 34, 37, 62], "anywai": [0, 89], "api": [1, 4, 5, 7, 8, 11, 20, 21, 22, 24, 34, 35, 49, 56, 58, 72, 91, 94], "api_specif": [11, 24, 56], "apic": 59, "app": 80, "appear": [3, 17, 20, 22, 24, 25, 27, 35, 37, 40, 49, 53, 62, 91, 92], "append": [16, 17, 20, 22, 24, 25, 27, 35, 37, 40, 48, 49, 53, 68, 70, 83, 89, 91, 100], "append_singl": [24, 48, 83, 96], "appli": [3, 7, 11, 15, 20, 22, 24, 35, 54, 58, 59, 87, 90, 91, 100], "applic": [22, 24, 35, 84, 89, 91, 98], "apply_permut": [20, 24, 90], "appreci": 0, "approach": [78, 96], "appropri": [0, 20, 24, 27, 35, 54, 62, 69, 73, 75, 79, 84], "approv": 0, "approxim": [20, 24, 35, 54], "ar": [0, 1, 3, 4, 7, 8, 11, 16, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 62, 63, 64, 66, 67, 68, 70, 73, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "arang": [3, 5, 20, 22, 24, 27, 35, 36, 37, 38, 40, 41, 42, 48, 49, 56, 58, 66, 83, 84, 87, 89, 90, 91, 92, 93, 94, 95, 96, 98], "arbitrari": [20, 24, 35, 90], "arbitrarili": [17, 24], "arcco": [24, 35], "arccosh": [24, 35], "arccosin": 7, "arch": 59, "arch_cap": 59, "arch_string_raw": 59, "architectur": 59, "archiv": 76, "arcsin": [7, 24, 35], "arcsinh": [24, 35], "arctan": [24, 35], "arctan2": [24, 35], "arctang": 7, "arctanh": [24, 35], "area": [24, 46, 54, 59], "aren": [76, 77], "arg": [0, 3, 20, 21, 22, 24, 25, 34, 35, 38, 46, 48, 49, 55, 56, 58, 78, 89, 91], "arg1": [24, 35, 58], "arg2": [24, 35], "argmax": [12, 20, 21, 22, 24, 34, 35, 37, 48, 49, 83, 87, 91, 92], "argmaxk": [24, 37, 83, 87, 92], "argmin": [12, 20, 21, 22, 24, 34, 35, 37, 48, 49, 83, 87, 91, 92], "argmink": [24, 37, 83, 87, 92], "argpars": 79, "args1": [3, 24], "args2": [3, 24], "argsort": [14, 17, 18, 20, 21, 22, 24, 25, 34, 35, 37, 50, 83, 86, 87, 88, 90, 91, 100], "argument": [2, 3, 14, 15, 16, 19, 20, 21, 22, 24, 34, 35, 36, 37, 42, 46, 48, 49, 53, 54, 56, 58, 78, 95, 97], "arithmet": [24, 35, 83, 94], "arkodua": [67, 68], "arkouda": [57, 59, 62, 64, 65, 69, 71, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 91, 92, 93, 94, 98], "arkouda_arrow_path": 1, "arkouda_client_directori": [1, 47], "arkouda_client_mod": 1, "arkouda_client_timeout": 1, "arkouda_config_fil": [63, 78], "arkouda_develop": [1, 63], "arkouda_full_stack_test": 1, "arkouda_hdf5_path": 1, "arkouda_hom": 1, "arkouda_iconv_path": 1, "arkouda_idn2_path": 1, "arkouda_key_fil": 1, "arkouda_log_level": [1, 24], "arkouda_mem_alloc": 18, "arkouda_numlocal": 1, "arkouda_password": 1, "arkouda_print_passes_fil": 1, "arkouda_quick_compil": [1, 63, 77], "arkouda_root": 59, "arkouda_serv": [1, 18, 21, 24, 34, 35, 60, 63, 64, 73, 75, 78, 99], "arkouda_server_aggregation_dst_buff_s": 1, "arkouda_server_aggregation_src_buff_s": 1, "arkouda_server_aggregation_yield_frequ": 1, "arkouda_server_connection_info": 1, "arkouda_server_host": 1, "arkouda_server_port": 1, "arkouda_server_user_modul": [1, 78], "arkouda_skip_check_dep": 1, "arkouda_supported_dtyp": [21, 24, 34, 35], "arkouda_supported_float": [21, 34], "arkouda_supported_int": [21, 34], "arkouda_supported_numb": [21, 34], "arkouda_tunnel_serv": 1, "arkouda_typ": [20, 24, 25, 27, 37, 53], "arkouda_verbos": 1, "arkouda_vers": 68, "arkouda_zmq_path": 1, "arkoudalogg": [22, 24, 30, 53, 91], "arkoudavers": 0, "arm64": 77, "around": [0, 4, 8, 19, 21, 24, 34, 35, 46, 62, 64], "arr": [24, 27, 39, 40], "arr1": [3, 24, 40], "arr2": [3, 24, 40], "arrai": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 67, 68, 73, 82, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 97, 100], "array_api": [24, 57], "array_dtyp": 58, "array_equ": [24, 35], "array_nd": 58, "array_object": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 57], "arrays2": [24, 25], "arrays_and_dtyp": 6, "arraysetop": 98, "arraysetopsmsg": 58, "arrayview": [68, 94], "arri": 56, "arrow": [1, 79], "artifact": 47, "as_compon": [24, 56], "as_index": [20, 24, 90], "as_integer_ratio": [21, 24, 34, 35], "as_perc": 18, "as_seri": [20, 24], "asarrai": [4, 5, 8], "ascend": [12, 20, 22, 24, 25, 35, 37, 49, 85, 90, 92, 97], "ascii": 59, "asia": [24, 55], "asin": 7, "asinh": 7, "ask": 0, "assembl": [24, 53], "assert": [24, 54], "assert_": [24, 54], "assert_almost_equ": [24, 54], "assert_almost_equival": [24, 54], "assert_arkouda_array_equ": [24, 54], "assert_arkouda_array_equival": [24, 54], "assert_arkouda_pdarray_equ": [24, 54], "assert_arkouda_segarray_equ": [24, 54], "assert_arkouda_strings_equ": [24, 54], "assert_attr_equ": [24, 54], "assert_categorical_equ": [24, 54], "assert_class_equ": [24, 54], "assert_contains_al": [24, 54], "assert_copi": [24, 54], "assert_dict_equ": [24, 54], "assert_equ": [24, 54], "assert_equival": [24, 54], "assert_frame_equ": [24, 54], "assert_frame_equival": [24, 54], "assert_index_equ": [24, 54], "assert_index_equival": [24, 54], "assert_is_sort": [24, 54], "assert_series_equ": [24, 54], "assert_series_equival": [24, 54], "assertionerror": [24, 54], "asset": 73, "assig": 93, "assign": [0, 17, 20, 22, 24, 35, 49, 67, 68, 83, 88, 91, 96, 100], "assist": [0, 78], "associ": [0, 1, 20, 24, 27, 35, 36, 42, 49, 56, 59, 62, 84, 95, 96, 97], "assum": [2, 12, 20, 22, 24, 27, 35, 36, 38, 40, 42, 49, 51, 62, 67, 68, 69, 76, 77, 81, 84, 90, 91, 95, 97, 98], "assume_sort": [22, 24, 91, 98], "assume_uniqu": [24, 40, 98], "assumpt": [17, 24, 37, 38, 53, 84, 88, 94, 100], "ast": 79, "astyp": [6, 20, 21, 24, 34, 35, 37, 53], "atan": 7, "atan2": 7, "atanh": 7, "atol": [24, 54], "attach": [17, 19, 20, 22, 24, 25, 35, 37, 48, 49, 53, 55, 56, 83, 91], "attach_al": [24, 56], "attach_pdarrai": [24, 37], "attahc": [24, 37], "attempt": [17, 20, 22, 24, 25, 27, 37, 48, 49, 50, 53, 55, 75, 84, 90, 91], "attent": 59, "attr": [24, 54], "attribut": [8, 17, 20, 21, 25, 27, 34, 37, 51, 53, 54, 55, 84, 94], "attributeerror": [24, 35], "attributi": [24, 37, 51, 94], "authent": [18, 47, 73, 99], "author": 0, "author_tim": 59, "auto": [46, 57, 62], "autoapi": [57, 79], "autoclass": 85, "autodoc": 79, "autom": [1, 62], "automat": [1, 3, 17, 24, 27, 49, 68, 84, 88, 97], "autopackagesummari": 79, "autosav": 59, "avail": [1, 18, 24, 27, 35, 36, 37, 42, 46, 59, 64, 68, 80, 84, 92], "avail_mem": 18, "averag": [22, 24, 37, 38, 59, 87, 91], "avoid": [0, 24, 35, 61, 64], "avx": 59, "avx2": 59, "awar": 0, "awk": 80, "ax": [0, 4, 8, 11, 15, 16, 20, 24, 35, 37, 46, 87], "axi": [9, 10, 11, 12, 14, 15, 16, 20, 24, 25, 35, 37, 39, 41, 48, 49, 50, 86, 87, 90, 96, 97], "b": [17, 18, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 40, 41, 42, 46, 48, 49, 50, 52, 53, 54, 56, 66, 82, 86, 87, 90, 91, 92, 93, 94, 95, 96, 98, 100], "back": [19, 20, 22, 24, 56, 61, 64, 84, 91], "backbon": 94, "backend": [20, 24, 49, 61, 75], "backward": [24, 35, 48, 56, 96], "badvalu": 46, "balanc": [17, 24, 53], "bandwidth": [24, 38, 84], "base": [0, 1, 2, 3, 4, 7, 13, 17, 19, 20, 21, 23, 24, 25, 27, 30, 34, 35, 36, 37, 42, 43, 44, 46, 50, 55, 56, 62, 75, 77, 81, 84, 85, 86, 87, 88, 90, 94, 97, 100], "base_repr": [24, 35], "bash": [76, 77], "bashrc": [76, 77, 80], "basic": [18, 24, 25, 37, 47, 62, 80, 94], "bear": [0, 62, 76, 77], "becaus": [17, 20, 24, 25, 27, 35, 36, 38, 42, 48, 53, 54, 63, 66, 67, 68, 69, 73, 84, 88, 89, 90, 96, 100], "becom": [21, 24, 34, 35], "been": [1, 17, 18, 20, 24, 27, 35, 37, 39, 40, 48, 53, 60, 61, 62, 75, 78, 87, 88, 89], "befor": [0, 11, 12, 16, 24, 35, 39, 55, 59, 75, 84], "begin": [0, 4, 8, 16, 24, 53, 93, 100], "behav": 0, "behavior": [0, 4, 20, 24, 35, 36, 37, 38, 42, 58, 87, 89, 90, 95, 100], "being": [20, 24, 25, 27, 35, 37, 49, 54, 58, 66, 68, 69, 70, 78, 84, 90, 93, 97], "believ": 62, "belong": [17, 24, 88], "below": [5, 24, 35, 41, 46, 59, 60, 66, 76, 77, 79, 84, 90], "bench_decod": 59, "bench_encod": 59, "benchmark": [63, 65, 78, 79, 82], "benchmark_v2": 59, "benefici": [59, 70], "berkelei": [20, 24], "besid": [24, 35], "best": [0, 3, 24, 35, 46], "beta": [36, 42, 95], "better": [17, 20, 24, 25, 27, 37, 48, 53], "between": [1, 5, 17, 18, 20, 24, 29, 35, 37, 38, 53, 55, 56, 59, 66, 78, 89, 92, 94, 100], "beyond": [11, 24, 37, 66, 87], "bi": [24, 35], "bi_end": [3, 24], "bi_start": [3, 24], "bi_val": [3, 24], "bia": [24, 35], "big": [21, 24, 34, 35], "biggest": 63, "bigint": [21, 24, 34, 35, 37, 38, 59, 84, 89], "bigint_from_uint_arrai": [3, 24, 37, 38], "bigint_to_uint_arrai": [24, 37, 38], "bin": [24, 35, 37, 41, 46, 75, 76, 77, 80, 92], "binari": [19, 24, 35, 38, 76, 77, 87], "binary_repr": [24, 35], "bind": 75, "binomi": [36, 42, 95], "binop": [17, 20, 24, 27, 37, 48, 53], "bit": [0, 6, 17, 19, 21, 24, 27, 34, 35, 37, 38, 48, 53, 59, 63, 84, 89, 90, 94], "bit_count": [21, 24, 34, 35], "bittyp": [21, 24, 34, 35], "bitvector": [19, 24], "bitwis": [7, 22, 24, 91, 94], "bitwise_and": 7, "bitwise_invert": 7, "bitwise_left_shift": 7, "bitwise_or": 7, "bitwise_right_shift": 7, "bitwise_xor": 7, "black": [0, 79], "block": [0, 17, 24, 40, 49, 53, 58, 66, 89], "blosc": [24, 27], "blue": [24, 25], "bmi1": 59, "bmi2": 59, "bob": [20, 24, 90], "bodi": 0, "bool": [3, 5, 6, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 48, 49, 50, 53, 54, 55, 56, 59, 68, 82, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "bool_": [17, 21, 24, 34, 35, 36, 37, 38, 42, 53, 55, 87, 89, 92, 93, 94], "bool_onli": [20, 24], "bool_scalar": [21, 24, 34, 35], "booldtyp": [24, 35], "boolean": [3, 6, 7, 17, 20, 21, 22, 24, 31, 34, 35, 37, 40, 48, 49, 53, 66, 68, 87, 88, 90, 91, 93, 94, 96, 97, 98, 100], "boost": 75, "borrow": 58, "both": [3, 11, 18, 20, 21, 22, 24, 25, 27, 29, 34, 35, 37, 40, 54, 55, 63, 66, 68, 69, 73, 75, 84, 88, 98, 100], "bottleneck": 61, "bottom": [24, 37, 62], "bound": [24, 36, 37, 38, 42, 48, 55, 89, 96], "boundari": [24, 36, 42, 55, 95], "box": [36, 42, 62, 95], "branch": [0, 59, 62, 75], "brand_raw": 59, "brew": 77, "bring": 62, "broad": 0, "broadcast": [11, 20, 22, 24, 35, 37, 56, 83, 87, 91], "broadcast_arrai": 11, "broadcast_dim": [24, 56], "broadcast_to": 11, "broadcast_to_shap": [24, 37], "brotli": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70], "brown": 66, "browser": 75, "buf": [24, 35], "buffer": [1, 5, 20, 21, 22, 24, 34, 35, 46, 49], "bufferobject": [21, 24, 34, 35], "bug": [62, 65], "build": [1, 21, 22, 24, 34, 35, 58, 59, 62, 65, 73, 76, 80, 91, 99], "build_from_compon": [22, 24, 83, 91], "built": [0, 17, 21, 24, 34, 35, 37, 53, 60, 62, 63, 64, 73, 75, 77, 78, 84, 88, 94, 100], "builtin": [21, 24, 34, 35, 37], "bump": [60, 76, 77], "bundl": [76, 77], "button": 62, "bydayofweek": 91, "byte": [17, 20, 21, 24, 25, 27, 29, 34, 35, 37, 38, 46, 48, 49, 51, 53, 56, 68, 73, 84, 88, 90, 94, 100], "bytearrai": [21, 24, 34, 35, 46], "bytedtyp": [24, 35], "byteord": [21, 24, 34, 35], "bytes_": [24, 35], "bytes_attrib": [24, 53], "bytes_or_buff": [20, 21, 22, 24, 34, 35, 46, 49], "bytes_s": [24, 53], "bytesdtyp": [24, 35], "byteswap": [21, 24, 34, 35], "c": [17, 20, 21, 24, 25, 34, 35, 38, 40, 41, 48, 49, 53, 56, 59, 61, 63, 76, 82, 90, 94, 96, 98, 100], "c1": [24, 35, 87], "c2": [17, 24, 35, 87], "c_cpy": [17, 24], "c_string": 68, "cach": [2, 17, 24, 35, 53], "cached_regex_pattern": [24, 53], "cachedaccessor": [2, 24], "calc_string_offset": [24, 27, 84], "calcul": [16, 20, 22, 24, 27, 35, 37, 40, 46, 59, 68, 84, 87, 91, 92, 98], "calculu": [31, 100], "call": [4, 8, 17, 18, 19, 20, 22, 24, 27, 35, 36, 37, 38, 42, 46, 48, 49, 51, 53, 54, 58, 66, 70, 73, 75, 77, 78, 84, 87, 89, 90, 91, 94, 95, 99], "callabl": [4, 19, 20, 24, 90], "callback": [19, 24], "caller": [20, 24, 35, 49, 90], "came": [24, 48, 96], "can": [1, 3, 4, 6, 8, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 46, 47, 48, 49, 53, 55, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 75, 76, 77, 78, 79, 80, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "can_cast": 6, "cancel": [24, 35], "candid": [24, 35], "cannot": [3, 11, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 38, 48, 49, 53, 54, 55, 70, 80, 84, 88, 91, 94, 100], "canon": [21, 24, 34, 35], "capac": [24, 35, 94], "capit": [24, 53], "capitilz": [24, 53], "captur": [1, 31, 100], "care": 59, "carol": [20, 24, 90], "carri": [24, 55], "case": [17, 18, 21, 22, 24, 25, 27, 34, 35, 36, 37, 42, 46, 49, 53, 55, 59, 61, 66, 67, 68, 70, 75, 76, 78, 80, 87, 95, 97], "cask": 77, "caskroom": [75, 77], "cast": [3, 4, 6, 19, 21, 24, 34, 35, 37, 38, 39, 53, 58, 83, 84, 89, 100], "castabl": [24, 45], "castarrai": 58, "castmsg": 58, "cat": [17, 24, 27, 80], "catch": 0, "categor": [20, 22, 24, 25, 27, 35, 40, 49, 50, 54, 56, 57, 83, 86, 87, 89, 90, 91, 92, 94, 97, 98], "categori": [0, 17, 24, 50, 54, 62, 68, 83, 86, 88], "categorical_arrai": [17, 24], "categorical_test": 0, "categoricaltest": 0, "cattwo": [17, 24], "caus": [17, 20, 24, 25, 27, 35, 37, 48, 53, 73, 75], "caution": [17, 24, 37, 38, 53, 84, 88, 94, 100], "ccflag": 1, "cd": [60, 73, 75, 76, 77, 79], "cdf": [36, 42, 46, 95], "cdot": [36, 42, 95], "cdoubl": [21, 24, 34, 35], "ceil": [7, 24, 35], "cell": [20, 24], "cento": 76, "central": [21, 24, 34, 35, 46], "certain": [24, 37, 60, 78, 87], "cfg": [1, 24, 27, 63, 64, 78], "cfloat": [21, 24, 34, 35], "chang": [1, 19, 20, 21, 24, 25, 27, 34, 35, 36, 37, 42, 59, 62, 64, 73, 76, 77, 79, 84, 87, 90], "channel": [18, 99], "chapel": [18, 24, 35, 36, 42, 58, 61, 63, 68, 72, 73, 78, 79, 80, 81, 94, 99, 100], "chapel_vers": 73, "char": [21, 24, 34, 35, 53], "charact": [17, 18, 19, 21, 23, 24, 34, 35, 38, 49, 53, 78, 100], "check": [0, 1, 3, 16, 17, 20, 21, 22, 24, 25, 27, 34, 35, 37, 46, 48, 53, 54, 56, 58, 62, 63, 64, 82, 88, 98, 99, 100], "check_categor": [24, 54], "check_category_ord": [24, 54], "check_column_typ": [24, 54], "check_dtyp": [24, 54], "check_exact": [24, 54], "check_frame_typ": [24, 54], "check_index": [24, 54], "check_index_typ": [24, 54], "check_lik": [24, 54], "check_nam": [24, 54], "check_ord": [24, 54], "check_sam": [24, 54], "check_series_typ": [24, 54], "checker": [21, 34], "checkout": 64, "chess": [36, 42, 95], "chi": [24, 44, 46], "chi2": 46, "chipset": 77, "chisquar": [24, 44], "choic": [24, 36, 38, 42, 75, 83], "choos": [21, 24, 34, 35, 62, 77, 80, 87, 99], "chosen": [3, 24, 35, 37, 87, 94, 96], "chpl": [1, 24, 27, 58, 63, 75, 76, 77, 78], "chpl_comm": [60, 76, 77], "chpl_debug_flag": 1, "chpl_develop": [63, 77], "chpl_flag": [1, 61], "chpl_gasnet_cfg_opt": 60, "chpl_gmp": [76, 77], "chpl_home": [60, 75, 76, 77], "chpl_llvm": [76, 77], "chpl_re2": [76, 77], "chpl_rt_oversubscrib": 60, "chpl_target_compil": 61, "chpl_target_cpu": 77, "chpl_test_timeout": 60, "chplconfig": 76, "chpldoc": [75, 76], "chunk": [4, 8, 17, 24, 25, 27, 37, 48, 53], "chunk_info": [4, 8], "chunk_shap": [24, 27], "ci": 0, "circl": [24, 35], "cl": [2, 24, 88], "clang": [61, 76], "class": [0, 38, 54, 58, 59, 83, 84, 85, 88, 89, 90, 91, 95, 96, 97, 100], "classmethod": [17, 19, 24, 25, 48, 88], "claus": [24, 35, 87], "clean": 75, "clear": [21, 24, 34, 35, 37], "clflush": 59, "clflushopt": 59, "click": [62, 75, 81], "client": [4, 8, 17, 20, 24, 37, 38, 53, 54, 55, 57, 69, 75, 76, 77, 78, 79, 80, 83, 88, 90, 94, 96, 100], "client_dtyp": [24, 27, 57], "clientgeneratedlog": [24, 30], "clip": [16, 21, 24, 34, 35], "clobber": 75, "clone": 81, "clongdoubl": [24, 35], "clongdoubledtyp": [24, 35], "clongfloat": [24, 35], "close": [0, 3, 24, 38, 55, 58, 66, 89], "clz": [24, 37], "cm_version": 76, "cmake": [76, 79], "cmd": [58, 78], "cmd_filter": 18, "cmov": 59, "co": [7, 22, 24, 35, 38, 83, 87, 91], "coargsort": [20, 24, 50, 83, 86, 88, 90, 100], "code": [1, 17, 21, 24, 25, 27, 34, 35, 44, 50, 54, 62, 63, 66, 68, 78, 83, 86, 88], "codepoint": [21, 24, 34, 35], "coeffici": [24, 37], "coercibl": [24, 35], "col": [24, 35, 41, 52], "col1": [20, 24, 35, 90], "col2": [20, 24, 35, 90], "col2_i": [20, 24], "col2_x": [20, 24], "col3": [20, 24, 35, 90], "col_a": [20, 24], "col_b": [20, 24], "col_c": [20, 24], "col_delim": [20, 24, 25, 27, 37, 53], "col_nam": [24, 27], "cola": 67, "colb": 67, "colc": 67, "collaps": [24, 37, 53, 100], "collect": [17, 20, 21, 22, 24, 25, 27, 34, 35, 37, 43, 46, 48, 53, 76, 91], "collis": [17, 24, 35, 53], "colnam": [20, 24], "colors2": [24, 25], "column": [3, 5, 17, 20, 22, 24, 25, 27, 37, 41, 48, 49, 50, 52, 53, 54, 66, 67, 70, 71, 84, 86, 91, 96, 97], "column_data": 66, "column_delim": [24, 27, 84], "column_nam": 66, "columnar": 84, "com": [0, 24, 35, 44, 76, 77], "combin": [20, 24, 53, 55, 56, 58, 64], "come": [22, 24, 64, 84, 89, 98], "comma": [24, 35, 59, 67, 75], "command": [18, 23, 24, 37, 58, 59, 60, 62, 64, 73, 75, 77, 78, 79, 80, 99], "command_filt": [18, 23], "commandlin": 59, "commandmap": [18, 58, 78], "comment": [0, 63, 78], "commit": [0, 62], "commit_info": 59, "common": [0, 3, 11, 22, 24, 35, 38, 40, 80, 84, 91, 98, 100], "common_typ": [24, 39], "commonli": 66, "commun": [1, 24, 50, 62, 77, 86, 89], "compar": [17, 21, 24, 25, 34, 35, 37, 46, 53, 54, 62, 82, 84, 100], "compare_kei": [24, 54], "comparison": [59, 67, 88, 94, 96, 100], "compat": [7, 17, 20, 21, 24, 34, 35, 37, 48, 55, 56, 90, 91], "compet": 1, "compil": [18, 24, 35, 53, 61, 64, 65, 75, 76, 77, 78, 80], "compiler_flag": [21, 34], "complement": [24, 35], "complementari": [24, 37], "complet": [17, 18, 20, 24, 35, 37, 46, 48, 53, 58, 60, 62, 75, 99, 100], "complex": [3, 7, 21, 24, 34, 35, 73], "complex128": [21, 24, 34, 35], "complex128dtyp": [24, 35], "complex256": [24, 35], "complex64": [21, 24, 34, 35], "complex64dtyp": [24, 35], "complex_": [21, 24, 34, 35], "complexflo": [21, 24, 34, 35], "compliant": [4, 5], "compon": [3, 17, 19, 20, 22, 24, 25, 26, 35, 37, 48, 49, 53, 55, 56, 59, 68, 70, 91], "compos": [21, 24, 34, 35, 38, 53, 73, 84], "composit": [24, 53], "compress": [17, 20, 21, 24, 25, 27, 34, 35, 37, 48, 53, 59, 93, 96], "compris": 100, "comput": [4, 6, 7, 8, 15, 17, 18, 20, 21, 22, 24, 29, 34, 35, 37, 44, 45, 48, 53, 58, 66, 84, 87, 88, 90, 91, 92, 94, 96, 98, 100], "computation": 66, "compute_join_s": [24, 29], "concat": [11, 20, 24, 25, 48, 49, 90, 97], "concaten": [11, 17, 20, 24, 39, 40, 48, 49, 53, 56, 58, 83, 96, 97, 100], "concept": 88, "concis": 62, "concret": [21, 24, 34, 35], "concurr": [0, 84], "cond": [24, 35, 87], "conda": [73, 76, 77, 79], "conda_prefix": [73, 75], "condens": [24, 48, 96], "condit": [3, 12, 20, 24, 35, 37, 46, 87], "conf": 80, "confid": 46, "config": [18, 58, 78], "configur": [0, 1, 24, 58, 59, 66, 77, 80, 85, 90, 97], "confirm": [0, 62], "conflict": 0, "conform": [24, 35, 58], "conj": [7, 21, 24, 34, 35], "conjug": [7, 21, 24, 34, 35], "conjunct": [17, 24, 84, 88, 100], "connect": [17, 18, 20, 24, 25, 35, 37, 38, 44, 45, 47, 49, 53, 56, 58, 63, 80, 83, 84, 90], "connect_url": [18, 73, 99], "connectionerror": [18, 99], "consecut": [24, 38, 49, 89], "consensu": [0, 62], "consequ": 76, "conserv": [19, 24], "consid": [17, 20, 24, 35, 49, 62, 75, 100], "consider": [22, 24, 98, 100], "consist": [0, 20, 24, 35, 66, 87, 90], "consol": 24, "const": 58, "constant": [16, 20, 22, 24, 37, 83, 91], "constant_tsc": 59, "constant_valu": 16, "construct": [4, 5, 8, 17, 24, 35, 36, 38, 42, 48, 53, 58, 66, 83, 91, 93], "constructor": [17, 21, 24, 34, 35, 36, 42, 48, 66, 88, 95], "consum": [24, 25, 49], "conta": [24, 53, 100], "contain": [3, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 31, 34, 35, 36, 37, 38, 40, 41, 42, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 63, 64, 66, 67, 68, 73, 75, 78, 82, 83, 84, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 98, 100], "content": [1, 67, 80, 84], "contigu": [17, 24, 29, 53], "continu": [0, 46, 62], "contribut": [20, 24, 49], "contributor": [0, 24, 44], "control": [1, 19, 24, 35, 39, 58, 94], "conveni": [24, 35, 76, 77, 84], "convent": [17, 24, 35], "convers": [0, 17, 24, 84, 88, 94, 100], "convert": [4, 5, 8, 17, 19, 20, 21, 24, 25, 34, 35, 37, 38, 46, 48, 49, 53, 54, 55, 56, 67, 84, 88, 90, 94, 96, 97, 98, 100], "convert_byt": 56, "convert_categor": [20, 24, 27], "convert_if_categor": [24, 56], "convert_int": [20, 24], "cool": 0, "coordin": [5, 24, 35], "copi": [4, 5, 6, 8, 11, 14, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 39, 42, 48, 50, 53, 54, 95, 96, 100], "core": [20, 23, 24, 59, 62, 90], "corr": [20, 24, 37], "correct": [3, 15, 20, 24, 63, 76, 80, 82, 90], "correctli": [20, 24, 80, 90], "correl": [20, 24, 37], "correspond": [3, 4, 8, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 31, 34, 35, 37, 38, 44, 47, 48, 49, 53, 56, 68, 70, 84, 87, 88, 90, 91, 92, 93, 96, 97, 100], "cosh": [7, 24, 35], "cosin": [7, 24, 35, 87], "cosort": [3, 24], "cosorted": [3, 24], "cost": [17, 24, 88], "could": [4, 8, 24, 37, 41, 48, 53, 58, 63, 78, 100], "count": [13, 20, 21, 22, 24, 32, 34, 35, 37, 48, 49, 53, 59, 66, 83, 87, 91, 96, 100], "count_nonzero": [24, 35], "counter_nam": 59, "counterpart": 58, "coupl": 63, "cours": [24, 37], "cov": [24, 37], "covari": [24, 37], "cpp": 75, "cpu": 59, "cpuid": 59, "cpuinfo_vers": 59, "cpuinfo_version_str": 59, "cpython": 59, "crazi": 1, "creat": [0, 5, 11, 17, 19, 20, 21, 22, 24, 25, 27, 28, 32, 34, 35, 37, 38, 41, 46, 48, 49, 51, 52, 53, 55, 57, 58, 59, 62, 64, 68, 70, 73, 75, 76, 77, 78, 79, 80, 83, 84, 88, 90, 91, 92, 94, 95], "create_pdarrai": [24, 58], "create_sparrai": [24, 51], "create_sparse_matrix": 52, "creation": [4, 8, 17, 24, 35, 62, 83], "creation_funct": [8, 57], "cressi": [24, 44], "critic": [24, 30], "crucial": 63, "cryptograph": [24, 35], "csc": [24, 51], "csingl": [21, 24, 34, 35], "csr": [24, 51], "csv": [20, 24, 25, 27, 37, 53, 71, 84], "csv_output": [20, 24], "ctrl": 63, "ctz": [24, 37], "cuda": [24, 37], "cumprod": [21, 24, 34, 35, 83, 87], "cumsum": [21, 24, 34, 35, 83, 87], "cumul": [15, 24, 35, 41, 46, 82, 87], "cumulative_sum": 15, "curl": 76, "current": [0, 11, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 34, 35, 36, 37, 38, 39, 42, 47, 51, 53, 61, 62, 63, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 99, 100], "current_arkouda_vers": 68, "custom": [2, 24, 30, 58, 67, 75, 92], "customiz": 84, "cut": [61, 62, 64], "cutoff": [24, 35], "cwd": [24, 27, 37], "cx16": 59, "cx8": 59, "cycl": [77, 79], "d": [0, 4, 8, 17, 20, 21, 24, 25, 34, 35, 36, 38, 39, 40, 41, 42, 48, 49, 53, 55, 56, 58, 66, 82, 95, 96, 98, 100], "dai": [20, 24, 55, 62, 90, 91], "darwin": [47, 77], "dash": 62, "dask": [4, 8], "data": [2, 4, 5, 6, 8, 11, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 38, 39, 40, 41, 46, 48, 49, 50, 51, 53, 54, 55, 56, 58, 59, 66, 69, 71, 72, 83, 85, 86, 88, 89, 91, 96, 97, 99, 100], "data2": 56, "data_type_funct": [8, 57], "databas": [20, 24], "datafram": [2, 24, 25, 27, 41, 43, 49, 54, 57, 69, 84, 97], "dataframegroupbi": [20, 24, 90], "datalimit": [20, 24, 90], "datapar": 77, "dataset": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53, 67, 68, 70, 71, 91, 100], "dataset_nam": [24, 27, 84], "datasetnam": [24, 27, 84], "datasourc": [24, 35], "datatyp": [24, 38, 45, 51, 68], "date": [24, 35, 55, 62], "date_oper": [2, 24], "date_rang": [24, 55], "datefram": [20, 24, 90], "dateoffset": [24, 55], "datetim": [24, 27, 35, 38, 55, 59], "datetime64": [24, 35, 38, 55], "datetime64dtyp": [24, 35], "datetimeaccessor": [2, 24], "datetimeindex": [24, 55], "dateutil": 79, "datsetnam": [24, 27], "day_of_week": [24, 55], "day_of_year": [24, 55], "dayofweek": [24, 55, 91], "dayofyear": [24, 55], "dd": 62, "ddof": [22, 24, 37, 44, 55, 87, 91, 92], "de": 59, "deactiv": 75, "deal": [19, 24], "debandi99": 0, "debug": [24, 30, 60, 64], "decid": 0, "decim": [24, 35, 53], "decod": [20, 21, 22, 24, 34, 35, 46, 49, 53], "decompos": 11, "decor": [24, 35], "decreas": [24, 37, 38, 63, 87, 89, 92], "dedup": [20, 24, 90], "dedupl": 83, "deep": [24, 48, 90], "def": [58, 67, 78], "default": [1, 3, 5, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 42, 44, 46, 47, 48, 49, 52, 53, 54, 55, 56, 59, 61, 67, 68, 73, 77, 78, 80, 82, 84, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "default_log_format": 24, "default_rng": [20, 24, 36, 42, 95], "defaultt": [24, 30], "defici": [24, 35], "defin": [3, 4, 17, 19, 20, 21, 22, 23, 24, 25, 27, 30, 34, 35, 37, 38, 46, 48, 49, 53, 55, 58, 62, 88, 89, 90, 91, 92, 94], "definit": [24, 25], "deg2rad": [24, 35], "degener": 11, "degrad": [24, 37, 87], "degre": [15, 22, 24, 35, 37, 44, 46, 87, 91, 92], "degred": [24, 37, 87], "deleg": [24, 35, 36, 38, 42, 89, 92], "delet": [17, 18, 19, 20, 22, 24, 25, 27, 28, 35, 37, 39, 48, 49, 53, 55, 59, 64, 73, 91], "delete_directori": 28, "delimit": [20, 24, 25, 27, 28, 37, 49, 51, 53, 59, 62, 67, 84, 100], "delimited_file_to_dict": 28, "delta": [22, 24, 29, 37, 44, 87, 91, 92], "demo": 66, "demonstr": [0, 58], "denom": [24, 35], "denomin": [21, 24, 34, 35, 37], "denorm": [24, 35], "denormal_numb": [24, 35], "denot": [20, 24, 25, 27, 37, 46, 53, 55], "dens": [3, 17, 22, 24, 91], "densiti": [36, 42, 46, 52, 95], "dep": [1, 75, 76, 77], "depend": [12, 20, 24, 27, 35, 37, 68, 76, 77, 80, 81, 87, 96], "deprec": [17, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 55, 62, 68, 84, 91], "deprecate_with_doc": [24, 35], "deprecationwarn": [24, 35], "dequ": [24, 38, 84], "deriv": [21, 24, 27, 28, 30, 34, 36, 42, 53, 94, 95], "descend": [14, 20, 24, 38, 49, 89, 90, 97], "describ": [36, 42, 58, 62, 95], "descript": [24, 35, 59, 62, 66, 83], "descriptor": [2, 21, 24, 34, 35, 53], "design": [0, 21, 24, 34, 35, 62, 79, 84], "desir": [3, 18, 19, 24, 35, 36, 37, 38, 42, 47, 59, 60, 73, 78, 87, 89, 92, 94, 95, 99, 100], "destin": [11, 24, 35], "destpath": [24, 35], "detail": [0, 11, 21, 24, 26, 34, 35, 37, 46, 59, 62, 75, 76, 77, 79, 92, 99, 100], "detect": [20, 24, 27, 49, 68, 84], "determin": [6, 7, 11, 17, 20, 22, 24, 25, 27, 35, 37, 39, 48, 53, 56, 62, 68, 78, 84, 88, 90, 91], "determinist": [17, 24, 40, 49, 89], "dev": [0, 76, 77, 79], "devel": 76, "develop": [1, 17, 24, 35, 62, 63, 64, 76, 77, 78, 81, 84], "deviat": [15, 22, 24, 36, 37, 38, 42, 46, 55, 87, 91, 92, 95], "devic": [4, 5, 8, 24, 35], "devicend": [24, 37], "devicendarrai": [24, 37], "devtoolset": 76, "df": [2, 20, 24, 46, 66, 90], "df1": [20, 24, 54], "df2": [20, 24, 54], "df_deep": 90, "df_shallow": 90, "diag": [24, 35], "diagon": [5, 21, 24, 34, 35], "dic": [24, 54], "dict": [4, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 34, 35, 36, 42, 43, 49, 54, 56, 90, 91, 95], "dict_to_delimited_fil": 28, "dictionari": [17, 18, 20, 21, 22, 24, 27, 28, 34, 35, 36, 42, 53, 54, 56, 78, 84, 90, 91, 95], "did": [0, 18], "diff": [16, 20, 24, 49], "diffaggreg": [20, 24], "differ": [3, 4, 7, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 29, 34, 35, 37, 38, 40, 47, 48, 49, 53, 54, 55, 56, 59, 64, 66, 67, 68, 70, 76, 77, 83, 84, 89, 90, 91, 92, 98, 99], "differenc": [20, 24], "differenti": 46, "difficult": 78, "digit": [24, 35, 50, 53, 86], "dimens": [3, 4, 8, 11, 12, 15, 16, 17, 20, 21, 24, 25, 27, 34, 35, 37, 51, 53, 66, 88, 94, 96, 100], "dimension": [3, 4, 8, 20, 24, 27, 35, 38, 49, 84, 94, 97], "dir": 28, "direct": [3, 24, 62, 68, 75], "directli": [4, 8, 17, 20, 24, 37, 49, 50, 51, 53, 66, 75, 86, 88, 90, 94, 100], "directori": [17, 20, 22, 24, 25, 27, 28, 35, 37, 47, 48, 53, 59, 60, 63, 64, 73, 75, 76, 77, 78, 79, 80, 81, 82, 91], "dirti": 59, "disabl": [24, 30, 60], "disable_gc": 59, "disableverbos": [24, 30], "disallow": [20, 22, 24, 91], "discard": [3, 17, 24, 88], "discard_empti": [24, 48], "disconnect": [18, 24, 37], "discourag": [88, 90, 94, 96, 100], "discov": 78, "discret": [16, 36, 42, 95], "discrimin": [24, 35], "discuss": 0, "disk": [20, 24, 25, 27, 37, 53, 100], "disp": [24, 35], "dispatch": [24, 54], "displai": [1, 19, 20, 24, 25, 35, 41, 46, 49, 56, 75, 80, 90], "dist": 75, "distanc": [24, 35], "distinct": [17, 20, 24, 88], "distribut": [4, 8, 17, 19, 20, 22, 24, 25, 27, 36, 37, 38, 41, 42, 46, 48, 52, 53, 73, 76, 77, 84, 87, 88, 89, 91, 94, 95, 98, 100], "distro": 76, "div": [24, 37], "diverg": [24, 44], "divid": [7, 24, 37], "dividend": [24, 37], "divis": [7, 24, 37], "divisor": [22, 24, 37, 87, 91], "divmod": [24, 37], "djkba": [24, 38], "dlpack": 5, "do": [1, 3, 17, 18, 20, 22, 24, 25, 27, 35, 36, 37, 42, 48, 49, 53, 54, 59, 63, 64, 75, 76, 78, 79, 81, 87, 90, 91, 95, 97], "doc": [0, 20, 24, 35, 44, 49, 58, 75, 76], "docstr": [4, 7, 8, 24, 35, 58], "docstring1": [24, 35], "docstring2": [24, 35], "document": [0, 1, 24, 35, 46, 57, 58, 59, 63, 64, 66, 71, 77, 78], "doe": [17, 18, 20, 21, 22, 24, 25, 27, 28, 34, 35, 37, 38, 41, 46, 48, 49, 53, 54, 63, 66, 68, 70, 84, 88, 89, 90, 91, 94, 97, 99, 100], "doesn": [0, 20, 24, 58, 62, 75], "dog": [20, 24, 49], "doi": [24, 35], "domain": [3, 24], "don": [0, 3, 4, 8, 20, 21, 24, 27, 34, 40, 53, 63, 64, 80], "done": [0, 20, 24, 64, 75, 78, 90], "dot": [24, 35, 37, 62], "doubl": [21, 24, 34, 35, 58], "doubt": [0, 62], "down": [18, 61, 62, 64, 73, 75, 78], "download": [24, 35, 73, 76, 77, 81], "draft": 62, "dragon4": [24, 35], "draw": [24, 36, 38, 42, 95], "drawn": [24, 36, 38, 42, 89, 95], "drop": [20, 21, 22, 24, 34, 37, 62, 87, 91], "drop_dupl": [20, 24, 90], "dropna": [20, 22, 24, 83, 90, 91], "dt": [21, 24, 29, 34, 35, 49, 94], "dtype": [3, 4, 5, 6, 8, 15, 17, 20, 22, 24, 25, 27, 29, 32, 35, 36, 37, 38, 39, 40, 42, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 66, 82, 83, 84, 87, 89, 90, 91, 92, 93, 94, 95, 98, 100], "dtype_lik": [24, 35], "dtypeobject": [21, 24, 34, 35], "due": [17, 20, 24, 27, 67, 70, 75, 84], "dump": [21, 24, 34, 35], "duplcat": [20, 24, 90], "duplic": [0, 3, 20, 24, 40, 90], "durat": [24, 55], "dure": [0, 1, 24, 27, 56, 64, 66, 68, 69, 78, 79], "dx": [24, 35], "dynam": 24, "e": [0, 1, 2, 3, 7, 17, 19, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 48, 49, 53, 55, 62, 63, 64, 73, 75, 76, 77, 79, 84, 87, 88, 89, 91, 95, 96, 99, 100], "each": [3, 11, 13, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 40, 42, 48, 49, 51, 53, 55, 56, 58, 59, 66, 68, 75, 78, 84, 87, 88, 90, 91, 92, 94, 95, 96, 97, 98, 100], "eager": 79, "earli": 0, "earlier": [56, 66], "easi": [0, 24, 30, 59, 62, 66, 75], "easier": [24, 35], "easiest": 63, "easili": 66, "echo": [73, 75], "edg": [16, 24, 35, 41, 92], "edit": [24, 35], "effect": [20, 24, 35, 55, 64, 98], "effici": [17, 20, 24, 25, 37, 53, 96, 100], "egg": [24, 35], "either": [0, 12, 17, 20, 21, 22, 24, 26, 27, 34, 35, 36, 37, 38, 40, 42, 48, 49, 58, 73, 78, 80, 84, 91, 95, 96, 97, 98], "el7": 76, "elect": [68, 69], "element": [4, 5, 7, 8, 9, 11, 12, 15, 16, 17, 20, 21, 22, 24, 28, 29, 31, 34, 35, 36, 37, 38, 39, 40, 42, 48, 49, 51, 52, 53, 54, 55, 58, 66, 78, 83, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 100], "elementwis": [24, 37], "elementwise_funct": [8, 57], "elimin": [17, 24, 70], "elk": [20, 24, 49], "ellips": 62, "ellipsi": [4, 5, 6, 8, 11, 12, 15, 16, 24, 35, 36, 37, 38, 42, 56], "elo": [36, 42, 95], "els": [0, 20, 21, 24, 34, 35, 49, 58, 62], "elsewher": [5, 24, 35, 36, 37, 42, 87, 95], "emit": [24, 35], "emploi": [24, 35], "empti": [3, 5, 19, 20, 21, 22, 24, 27, 34, 35, 37, 40, 48, 49, 53, 75, 87, 89, 90, 92, 97], "empty_lik": 5, "en": [24, 35, 44, 58], "enabl": [3, 18, 24, 30, 37, 47, 63, 75, 76, 78, 84, 99], "enableverbos": [24, 30], "encapsul": [24, 38, 47, 53], "encod": [20, 21, 22, 24, 34, 35, 46, 49, 53, 59, 100], "encoding_benchmark": 59, "encount": [0, 24, 27], "encourag": [76, 77], "end": [3, 5, 16, 17, 20, 24, 29, 31, 35, 37, 38, 48, 53, 55, 61, 83, 88, 89, 93, 96, 100], "endian": [21, 24, 34, 35], "endpoint": [5, 36, 42, 95], "endswith": [17, 24, 53, 83, 88, 100], "enforc": [24, 35], "engin": [24, 35], "enough": [21, 24, 34, 35, 48, 53, 58, 60, 68, 76, 77, 96], "enrich_inplac": 56, "ensur": [0, 3, 20, 24, 27, 35, 40, 54, 62, 68, 75, 77, 90, 94], "enter": [24, 49, 84, 97], "entir": [15, 20, 24, 35, 37, 48, 53, 59, 64, 87, 90, 96], "entiti": [24, 53], "entri": [3, 5, 17, 20, 24, 25, 35, 37, 49, 53, 54, 58, 59, 90], "entropi": 46, "enum": [21, 24, 30, 34, 35, 68], "enumer": [21, 24, 30, 34, 35], "env": [1, 24, 63, 73, 75, 76, 77, 79], "env_nam": 79, "environ": [47, 59, 78, 79], "environmenterror": 47, "ep": [6, 24, 35], "epidemiologi": [36, 42, 95], "epsneg": [24, 35], "eql_kwarg": [24, 54], "equal": [7, 11, 17, 20, 21, 22, 24, 25, 29, 34, 35, 36, 37, 42, 46, 51, 52, 53, 54, 70, 91, 92, 95, 96], "equal_level": [24, 25], "equal_nan": [24, 35], "equiv": [24, 39, 54], "equival": [3, 17, 20, 22, 24, 25, 27, 35, 37, 38, 39, 40, 46, 50, 53, 54, 55, 56, 63, 66, 86, 87, 89, 98], "erm": 59, "err_msg": [24, 54], "error": [17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 31, 34, 35, 37, 38, 46, 48, 49, 51, 53, 55, 68, 70, 80, 84, 87, 88, 90, 91, 92, 94, 99, 100], "errormod": [24, 35, 94], "especi": [0, 17, 20, 24, 64, 75, 77, 88], "essenti": [20, 24, 37, 48, 53, 90, 96], "estim": [20, 22, 24, 37, 46, 87, 90, 91], "etc": [20, 24, 35, 49, 62, 76, 80], "ethan": 0, "euler_gamma": [24, 35], "eval": [73, 75], "evalu": [3, 16, 20, 24, 37, 87, 92], "even": [17, 20, 21, 22, 24, 34, 35, 37, 87, 90, 91, 99], "evenli": [5, 24, 35, 38, 89, 92], "event": [36, 42, 95], "everi": [0, 1, 3, 20, 24, 35, 59, 90, 100], "everyth": [20, 24, 49, 61, 62], "everywher": [24, 35], "evolv": 62, "ewab": [24, 38], "exact": [24, 54, 77], "exactli": [21, 22, 24, 34, 35, 54, 55], "exampl": [0, 3, 4, 8, 17, 18, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 41, 42, 44, 45, 48, 49, 50, 53, 54, 55, 56, 59, 62, 68, 73, 77, 78, 80, 84, 86, 87, 89, 90, 91, 92, 94, 95, 96, 98, 99, 100], "example_featur": 0, "exce": [17, 20, 24, 36, 37, 38, 42, 53, 55, 56, 84, 88, 89, 90, 94, 100], "exceed": [24, 35], "excel": 62, "except": [0, 11, 35, 58, 66, 76, 100], "exchang": 100, "exclud": [3, 22, 24, 40, 78, 91], "exclus": [1, 5, 24, 29, 36, 38, 40, 42, 66, 89, 93, 95, 98], "execut": [1, 18, 23, 24, 27, 37, 53, 58, 60, 61, 63, 64, 67, 75, 76, 78, 88, 99], "exhaust": [66, 68], "exist": [17, 18, 20, 22, 24, 25, 27, 28, 35, 37, 38, 48, 49, 53, 68, 70, 75, 89, 90, 91, 99], "exist_ok": [20, 24], "exit": [73, 80], "exp": [7, 24, 35, 36, 38, 42, 46, 83, 87, 95], "exp1m": [24, 35], "exp_digit": [24, 35], "expand": [11, 17, 20, 24, 25, 27, 37, 48, 53, 56, 84], "expand_dim": 11, "expandus": 47, "expans": 93, "expect": [0, 20, 22, 24, 25, 27, 36, 37, 42, 44, 46, 53, 59, 68, 76, 77, 84, 91, 94, 95], "expens": [17, 24, 35], "experi": [0, 84], "experiment": [24, 53, 100], "explan": [24, 35], "explicit": [68, 94], "explicitli": [1, 20, 24, 40, 78, 98], "explod": 76, "expm1": [7, 24, 35], "expon": [21, 24, 34, 35], "exponenti": [7, 24, 35, 36, 42, 83, 87], "export": [19, 24, 27, 35, 60, 63, 75, 76, 77, 80, 92], "export_uint": [19, 24], "expos": [20, 21, 22, 24, 34, 35, 36, 42, 46, 49, 94, 95], "express": [3, 17, 24, 27, 35, 53, 59, 83, 84, 88, 90, 93, 94], "extend": [24, 35], "extens": [2, 17, 24, 25, 27, 37, 48, 53, 75, 84], "extent": 59, "extra": [20, 24, 49], "extra_info": 59, "extract": 91, "extrem": [36, 42, 66, 68, 70, 95], "ey": [5, 24, 35], "f": [17, 20, 21, 24, 34, 35, 36, 38, 42, 46, 53, 58, 73, 76, 77, 79, 84, 87, 95, 100], "f0": [24, 35], "f1": [24, 35], "f16c": 59, "f2": [24, 35], "f4": [24, 35], "f8": [24, 35], "f_exp": [24, 44], "f_name": 66, "f_ob": [24, 44], "face": [24, 48, 62, 94], "fact": 70, "factori": [24, 25, 53], "fail": [0, 4, 8, 20, 24, 27, 35, 62, 75, 84, 90, 94], "failur": [0, 24, 27, 75, 84], "fall": [0, 11, 56], "fals": [3, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 42, 46, 48, 49, 53, 54, 55, 56, 59, 66, 82, 84, 85, 87, 88, 89, 90, 91, 94, 95, 96, 98, 100], "false_": [24, 35], "famili": 59, "fast": [1, 17, 21, 24, 34, 53], "faster": [3, 17, 24, 35, 40, 63, 88, 98], "featur": [21, 34, 60, 61, 62, 63, 65, 75, 78, 83, 84, 91], "feder": [36, 42, 95], "feed": [24, 35], "feedback": 0, "feel": 0, "fetch": [62, 64], "few": [24, 35, 66], "fewer": [24, 35], "ffffp10": [21, 24, 34, 35], "fide": [36, 42, 95], "field": [19, 21, 24, 34, 35, 38, 53, 62, 84, 100], "fig": 46, "figur": [24, 35, 41, 64], "file": [0, 1, 17, 18, 20, 22, 24, 25, 27, 28, 35, 37, 47, 48, 49, 53, 58, 60, 63, 64, 69, 70, 73, 75, 76, 77, 79, 80, 91, 100], "file_format": [17, 20, 24, 25, 27, 37, 48, 53], "file_typ": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53, 91], "file_vers": 68, "filenam": [17, 20, 22, 24, 25, 27, 37, 48, 53, 59, 84, 91], "filename_cod": [24, 27], "filenotfound": [24, 27], "filetyp": [24, 27, 84], "fill": [5, 20, 21, 22, 24, 34, 35, 36, 37, 38, 42, 49, 59, 82, 89, 91, 95], "fill_val": [24, 51], "fill_valu": [5, 24, 38], "fill_values1": [24, 49], "fill_values2": [24, 49], "fill_values3": [24, 49], "fillna": [24, 49], "fillvalu": [3, 24], "filname_cod": [24, 27], "filter": [0, 20, 23, 24, 48, 84], "filter_by_rang": [20, 24], "filtered_df": [20, 24], "final": [58, 59, 62, 75], "find": [0, 3, 12, 17, 20, 22, 24, 32, 37, 40, 47, 49, 53, 56, 59, 62, 65, 73, 76, 87, 91, 92, 98, 100], "find_loc": [24, 32, 53, 83, 100], "find_match": [31, 83, 100], "findal": [24, 32, 53, 83, 100], "fine": 58, "finfo": [6, 24, 35], "finfo_object": 6, "finit": [7, 16, 21, 24, 34, 35], "firewal": 80, "first": [0, 3, 4, 8, 11, 12, 13, 15, 20, 21, 22, 24, 25, 27, 28, 34, 35, 37, 38, 39, 46, 49, 53, 54, 56, 60, 64, 65, 66, 67, 68, 73, 75, 76, 78, 83, 84, 87, 89, 90, 91, 92, 97, 100], "fit": [0, 21, 24, 34, 35, 46, 59, 62, 84], "five": [3, 24, 35, 40, 53, 89, 100], "fix": [0, 24, 35, 36, 42, 46, 55, 62, 80, 95, 100], "fixed_len": [24, 27, 84], "flag": [19, 21, 24, 27, 34, 35, 41, 59, 64, 78, 84, 99], "flake8": [0, 79], "flat": [21, 24, 34, 35, 53, 100], "flatten": [11, 12, 21, 24, 29, 34, 35, 37, 39, 48, 53, 83, 96], "flexibl": [24, 35, 68], "flip": [11, 24, 35], "float": [3, 5, 6, 7, 15, 18, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 46, 52, 54, 56, 84, 87, 89, 90, 91, 92, 94, 95], "float128": [24, 35], "float16": [21, 24, 34, 35], "float16dtyp": [24, 35], "float32": [21, 24, 34, 35, 36, 42, 92], "float32dtyp": [24, 35], "float64": [5, 20, 21, 22, 24, 25, 34, 35, 36, 37, 38, 40, 42, 44, 45, 50, 54, 58, 59, 67, 68, 82, 86, 87, 89, 90, 91, 92, 94, 98], "float64dtyp": [24, 35], "float_": [21, 24, 34, 35], "float_scalar": [21, 24, 34, 35, 36, 37, 38, 42], "floor": [7, 24, 35, 37], "floor_divid": [7, 24, 37], "floordivis": [24, 37], "fluid": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 91], "flush": [24, 35], "flush_l1d": 59, "fma": 59, "fmod": [24, 37], "fname": 66, "focus": 63, "folder": 75, "folk": 1, "follow": [0, 1, 3, 18, 21, 24, 34, 35, 44, 58, 59, 60, 62, 73, 75, 76, 77, 78, 79, 80, 81, 87, 88, 91, 94, 96, 98, 99, 100], "foo": [0, 2, 24], "foo_test": 0, "foobar": [24, 35], "foopar": 0, "forc": [21, 24, 34, 35, 88, 90, 94, 100], "forget": [64, 80], "fork": [0, 75, 76, 77, 81], "form": [17, 21, 24, 25, 34, 35, 37, 46, 47, 48, 53, 62, 78, 100], "format": [4, 8, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 34, 35, 37, 47, 48, 49, 53, 58, 66, 68, 69, 70, 78, 90, 96, 99, 100], "format_float_posit": [24, 35], "format_float_scientif": [24, 35], "format_oth": [24, 37], "format_pars": [24, 35], "former": [24, 37, 53, 100], "fortran": 94, "forward": [24, 50, 80, 86, 96], "found": [1, 3, 12, 20, 21, 24, 25, 27, 34, 35, 37, 40, 53, 59, 66, 70, 76, 78, 80], "four": [3, 24, 40, 46, 53, 55, 89, 100], "fp": [24, 38], "fpu": 59, "frac": [20, 22, 24, 36, 42, 46, 91, 95], "fraction": [20, 22, 24, 35, 52, 91], "frame": [20, 24, 49, 90, 97], "frameon": 46, "free": [24, 37, 53], "freedom": [15, 22, 24, 37, 44, 46, 87, 91, 92], "freeman": [24, 44], "freez": 46, "freq": [24, 55], "frequenc": [1, 24, 44, 55], "frequent": [24, 49, 78, 97], "friendli": [20, 24, 49], "from": [0, 3, 4, 5, 8, 9, 11, 12, 13, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 34, 35, 36, 37, 38, 39, 41, 42, 44, 45, 46, 48, 49, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 73, 75, 76, 78, 80, 82, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 99, 100], "from_": 6, "from_cod": [17, 24, 83, 88], "from_dlpack": 5, "from_multi_arrai": [24, 48], "from_panda": [20, 24], "from_part": [24, 48, 53], "from_return_msg": [17, 19, 20, 22, 24, 25, 48, 49, 53], "from_seri": [24, 38], "fromencod": [24, 53], "fromhex": [21, 24, 34, 35], "fromkei": [21, 24, 34, 35], "fromright": [24, 53, 100], "front": [24, 35], "frontend": 75, "frozen": 46, "frozenset": [21, 22, 24, 34, 35], "frustrat": 64, "fsgsbase": 59, "fsspec": [20, 24, 49], "ftp": [24, 35], "full": [5, 17, 24, 31, 35, 38, 41, 46, 53, 55, 61, 63, 73, 77, 81, 88, 100], "full_lik": [5, 24, 38], "full_match_bool": 32, "full_match_ind": 32, "fullmatch": [24, 53, 83, 100], "fullnam": 59, "func": [24, 35, 46], "funcion": 78, "functioanl": 96, "function": [0, 1, 8, 17, 46, 49, 53, 59, 62, 63, 66, 67, 69, 70, 73, 78, 83, 84, 85, 88, 90, 91, 92, 94, 95, 96, 97, 98, 100], "furo": 79, "further": [76, 77, 81], "futur": [1, 19, 24, 27, 36, 42, 53, 84, 92], "fxsr": 59, "g": [2, 17, 19, 20, 21, 22, 24, 27, 34, 35, 37, 48, 49, 53, 55, 56, 63, 64, 66, 84, 87, 88, 89, 91, 96, 99, 100], "gain": [58, 62], "gamma": 46, "gap": [24, 35], "gasnet": [64, 65, 76, 77], "gasnet_masterip": 60, "gasnet_quiet": 60, "gasnet_route_output": 60, "gasnet_spawnfn": 60, "gasnet_workerip": 60, "gasnetsetup": 60, "gather": [59, 83], "gaussian": [36, 42, 95], "gawk": 76, "gb": [18, 20, 24, 25, 49, 56, 80], "gb_key_nam": [20, 24], "gc": [20, 24, 49], "gcc": [59, 76], "gen_rang": [24, 29], "gener": [17, 18, 20, 21, 22, 23, 24, 29, 30, 34, 35, 36, 37, 38, 41, 42, 44, 46, 47, 49, 55, 57, 58, 59, 63, 64, 66, 67, 68, 70, 75, 76, 80, 82, 83, 84, 87, 89, 91, 95, 97], "generate_histori": 18, "generate_token": 47, "generate_username_token_json": 47, "generic_concat": [24, 56], "generic_mo": 46, "generic_msg": [58, 78], "gentyp": [21, 24, 34, 35], "genuineintel": 59, "get": [4, 7, 8, 9, 18, 20, 21, 23, 24, 27, 34, 35, 48, 49, 59, 62, 63, 64, 80, 84, 94, 96], "get_arkouda_client_directori": 47, "get_byt": [24, 53], "get_byteord": [21, 24, 34, 35], "get_callback": [24, 56], "get_column": [24, 27, 67, 71], "get_config": [0, 18], "get_dataset": [24, 27, 67, 71, 84], "get_directori": 28, "get_filetyp": [24, 27], "get_home_directori": 47, "get_jth": [24, 48, 83, 96], "get_length": [24, 53], "get_length_n": [24, 48, 83, 96], "get_level_valu": [24, 25], "get_match": 32, "get_max_array_rank": 18, "get_mem_avail": 18, "get_mem_statu": 18, "get_mem_us": 18, "get_ngram": [24, 48, 83, 96], "get_null_indic": [24, 27], "get_offset": [24, 53], "get_prefix": [24, 48, 53, 83, 96], "get_server_byteord": [21, 24, 34, 35], "get_server_command": 18, "get_suffix": [24, 48, 53, 83, 96], "get_usernam": 47, "getarkoudalogg": 24, "getcwd": [20, 24], "getdefaultencod": [20, 21, 22, 24, 34, 35, 46, 49], "getfield": [21, 24, 34, 35], "getmandatoryreleas": [21, 34], "getmodulenam": 78, "getoptionalreleas": [21, 34], "getter": [24, 53], "getvalu": [24, 35], "gfile": [24, 35], "ghi": 67, "ghpage": 75, "ghz": 59, "gib": 59, "git": [0, 64, 76, 77], "github": [0, 24, 44, 62, 64, 75, 76, 77, 81], "gitk": 62, "give": [24, 35, 37, 49, 67, 75, 79, 97, 99], "given": [3, 5, 12, 15, 16, 17, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 40, 42, 46, 49, 53, 55, 56, 59, 79, 84, 88, 89, 90, 91, 95, 100], "glob": [24, 27, 84], "global": [4, 8], "gmp": 77, "gnu": [61, 80], "go": [22, 24, 62, 64, 76, 80, 89], "goal": 4, "good": [0, 62, 64], "googl": [24, 35, 100], "got": 64, "gottfri": [31, 100], "gpu": [24, 37], "grab": [24, 35], "gradient": [24, 35], "gram": [24, 48, 96], "graph": [24, 41, 91], "graphic": 62, "greater": [7, 24, 36, 38, 42, 89, 95], "greater_equ": 7, "greatli": [17, 24, 40, 49, 89], "green": [24, 25, 62], "grep": [75, 80], "grid": [20, 24, 41, 49], "group": [1, 6, 17, 20, 22, 24, 31, 48, 49, 50, 53, 59, 66, 68, 83, 86, 88, 90, 91, 97, 98, 100], "group_ani": [22, 24, 91], "group_argmaxima": [22, 24, 91], "group_argminima": [22, 24, 91], "group_maxima": [22, 24, 91], "group_mean": [22, 24, 91], "group_median": [22, 24, 91], "group_minima": [22, 24, 91], "group_num": [31, 100], "group_nuniqu": [22, 24, 91], "group_product": [22, 24, 91], "group_std": [22, 24, 91], "group_sum": [22, 24, 91], "group_var": [22, 24, 91], "groupabl": [22, 24, 40, 91, 98], "groupable_element_typ": [22, 24, 49, 97], "groupbi": [17, 20, 22, 24, 27, 48, 53, 56, 83, 88, 100], "groupby_reduction_typ": [22, 24], "groupbyclass": [20, 24, 40, 57, 90, 98], "grow": [24, 37, 87], "guarante": [17, 24, 50, 53, 86, 95, 100], "guid": [58, 73, 75, 76, 77], "guidelin": [62, 100], "guido": [24, 35], "gumbel": [36, 42, 95], "gz": [73, 75, 76, 77], "gzip": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70], "h": [21, 24, 34, 35, 41, 55, 82, 92, 99], "h5": [24, 27, 37, 84], "h5l": [24, 27], "h5py": [79, 84], "ha": [0, 4, 8, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 48, 49, 53, 55, 56, 58, 60, 62, 63, 67, 68, 78, 84, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97], "half": [3, 5, 21, 24, 34, 35, 36, 42, 95], "hand": [3, 24, 52, 62, 93], "handl": [17, 18, 20, 24, 35, 53, 58, 69, 84, 88, 90, 94, 100], "handled_funct": 4, "handler": [20, 21, 22, 24, 34, 35, 46, 49], "happen": [58, 62], "has_non_float_nul": [24, 27, 84], "has_repeat_label": [24, 49], "hash": [17, 24, 35, 48, 50, 53, 86], "hasnan": [24, 49], "have": [0, 1, 3, 4, 8, 11, 17, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 48, 49, 53, 54, 55, 56, 58, 60, 61, 62, 63, 64, 66, 67, 68, 70, 75, 76, 77, 78, 79, 84, 87, 88, 89, 90, 91, 94, 95, 96, 97], "hd15iqr": 59, "hdf5": [1, 17, 20, 22, 24, 25, 27, 37, 48, 53, 67, 69, 70, 71, 75, 79, 84, 91, 100], "hdf5_output": [20, 24], "hdf_output": [20, 24], "head": [20, 22, 24, 49, 62, 83, 91], "header": [20, 24, 25, 27, 37, 53, 84], "healthcheck": 18, "heavi": [24, 38], "hei": 62, "hello": [24, 35, 53, 84, 100], "hello3": 77, "help": [0, 19, 24, 78], "helper": [19, 24, 56], "henc": [24, 35], "here": [1, 24, 35, 53, 56, 59, 60, 63, 64, 65, 66, 68, 70, 75, 76, 77, 78, 79, 80, 81, 99], "heroic": 61, "hex": [21, 24, 34, 35], "hexadecim": [21, 24, 34, 35], "hexidecim": 47, "hf": [24, 38], "hff": [24, 38], "hfmd": [24, 38], "hi": [24, 35], "hide": [24, 35], "hierarch": [3, 24], "hierarchi": [24, 35], "high": [3, 19, 20, 24, 35, 36, 37, 38, 42, 66, 89, 95], "higher": [24, 35], "highest": [20, 24, 35, 37, 38], "highli": 76, "highlight": [1, 62, 66], "hist": [24, 35, 46], "hist_al": [24, 41], "hist_fil": 23, "histogram": [24, 35, 41, 46, 83], "histogram2d": [24, 35, 92], "histogramdd": [24, 35], "histor": [24, 35], "histori": [0, 18, 24, 57, 62], "historyaccessor": 23, "historyretriev": 23, "histtyp": 46, "hit": 63, "hog": 64, "hold": [24, 35, 46, 94], "hole": [24, 49], "home": [24, 35, 47, 75, 78], "homebrew": [63, 75], "homepag": 75, "homogen": [20, 24, 90], "hong_kong": [24, 55], "horizont": [24, 48, 49, 96, 97], "host": [18, 20, 24, 47, 49, 75], "hostnam": [1, 17, 18, 20, 24, 27, 37, 48, 53, 63, 73, 82, 99], "hour": [24, 55], "hous": 80, "how": [0, 4, 8, 17, 19, 20, 24, 25, 27, 35, 37, 48, 53, 58, 59, 62, 67, 79, 91, 94], "howev": [22, 24, 35, 37, 68, 75, 79, 80, 87, 88, 91], "ht": 59, "html": [11, 20, 24, 35, 44, 49, 56, 58, 75], "htop": 80, "http": [0, 11, 20, 24, 35, 44, 49, 56, 58, 76, 77], "human": [17, 24, 26, 37, 53], "hundr": 84, "hyperbol": [7, 24, 35], "hyperlink": 62, "hypervisor": 59, "hypothet": [22, 24, 29, 37, 87, 91], "hz_actual": 59, "hz_actual_friendli": 59, "hz_advertis": 59, "hz_advertised_friendli": 59, "i": [0, 1, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99], "i2": [24, 25, 35], "i4": [24, 35], "i7": 59, "i_cpi": [24, 25], "iat": [24, 49], "ibpb": 59, "ibr": 59, "ibv": 60, "iconv": [1, 75, 79], "id": [18, 59, 80, 91], "idea": [0, 62, 64, 67, 84], "ideal": [0, 62], "ident": [20, 21, 24, 34, 35, 36, 42, 46, 54, 56, 87, 94, 95], "identif": [24, 30], "identifi": [0, 3, 17, 24, 27, 35, 37, 51, 94], "idn2": [1, 75, 79], "idna": 59, "idx": [3, 20, 22, 24, 25, 66, 91], "idx1": 56, "idx2": [22, 24, 56, 91], "ie": [24, 38], "ieee": [24, 35, 90, 94], "ieeestd": [24, 35], "iexp": [24, 35], "iff": [3, 17, 24, 25, 37, 49, 53, 55, 87, 92], "ignor": [11, 14, 20, 21, 22, 24, 27, 34, 35, 54, 55, 84, 90, 94], "ignore_index": [20, 24], "ii16": [24, 35], "ii32": [24, 35], "iinfo": [6, 24, 35], "iinfo_object": 6, "iloc": [24, 49, 54], "imag": [7, 21, 24, 34, 35], "imagin": 91, "imaginari": [7, 21, 24, 34, 35], "imit": [24, 27], "immun": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 91], "immut": [21, 22, 24, 34, 35], "imnotok": 18, "imok": 18, "impact": [17, 22, 24, 25, 27, 35, 37, 48, 61, 62, 64, 84, 91], "implement": [0, 4, 5, 7, 10, 17, 18, 19, 20, 21, 23, 24, 34, 35, 36, 37, 40, 42, 46, 47, 48, 49, 53, 58, 67, 73, 87, 89, 99, 100], "implements_numpi": 4, "impli": [3, 24, 54, 93], "implicit": 94, "import": [17, 19, 20, 24, 25, 27, 35, 37, 41, 44, 45, 46, 47, 49, 53, 54, 56, 58, 62, 68, 73, 75, 78, 90, 92, 99], "import_data": [24, 27, 69, 84], "importerror": [24, 37], "impos": [24, 55], "improv": [17, 24, 40, 49, 62, 63, 78, 89], "in1d": [17, 24, 40, 58, 66, 83, 88, 98, 100], "in1d_interv": [3, 24], "inaccess": [17, 20, 24, 25, 27, 37, 48, 53], "inadvert": [19, 24], "inappropri": [3, 24], "includ": [0, 1, 3, 15, 20, 22, 24, 25, 26, 27, 35, 37, 49, 53, 55, 59, 62, 67, 68, 73, 75, 76, 78, 84, 87, 90, 91, 94, 96], "include_initi": 15, "includedelimit": [24, 53, 100], "inclus": [3, 5, 20, 24, 35, 36, 37, 38, 42, 55, 87, 89, 93, 95], "incompat": [24, 35, 76], "incorpor": 94, "increas": [24, 48, 75, 80, 96], "increment": [61, 62], "ind": 93, "independ": [24, 27, 36, 42, 47, 84, 95], "index": [2, 3, 4, 5, 8, 12, 17, 19, 20, 21, 22, 24, 27, 29, 31, 34, 35, 37, 38, 40, 48, 49, 53, 54, 56, 57, 59, 66, 75, 82, 83, 84, 87, 88, 89, 91, 92, 96, 97, 100], "index_label": [24, 49], "index_s": [59, 82], "index_valu": [24, 54], "indexerror": [24, 49], "indexing_funct": [8, 57], "indexof1d": [24, 40], "indic": [0, 3, 4, 6, 8, 9, 12, 13, 14, 17, 18, 19, 20, 22, 24, 25, 27, 29, 31, 32, 35, 37, 39, 40, 48, 49, 50, 52, 53, 55, 56, 66, 68, 86, 87, 88, 90, 91, 92, 93, 94, 96, 97, 98, 100], "indici": [31, 100], "individu": [24, 43, 60, 100], "inds2": 56, "ineffiec": 70, "inexact": [24, 35], "inf": [24, 35], "infer": [5, 17, 20, 21, 22, 24, 25, 27, 34, 35, 37, 38, 53, 68, 84], "inferred_typ": [17, 24, 25, 37, 53, 54], "infin": [21, 24, 34, 35], "infinit": [7, 22, 24, 35, 37, 87, 91], "info": [0, 1, 17, 20, 24, 26, 30, 37, 53], "infoclass": [24, 57], "inform": [0, 1, 4, 7, 8, 17, 18, 22, 24, 26, 35, 36, 37, 42, 53, 59, 62, 63, 64, 66, 67, 68, 70, 71, 73, 75, 76, 77, 78, 79, 88, 95, 96, 98, 100], "infrastructur": [1, 58], "infti": [24, 35], "ing": [24, 53, 100], "ingest": [84, 100], "inherit": [22, 24, 46, 91, 94], "ini": [0, 59], "init": [22, 24, 77, 91], "initi": [5, 15, 17, 18, 21, 24, 34, 35, 36, 37, 38, 42, 51, 59, 77, 82, 88, 89, 94, 95, 99], "initialdata": [20, 24, 90], "inner": [4, 8, 16, 20, 24, 29], "inplac": [20, 24, 90], "input": [5, 11, 12, 15, 17, 19, 20, 21, 22, 24, 25, 34, 35, 37, 38, 39, 40, 48, 49, 50, 53, 54, 55, 56, 58, 62, 84, 86, 87, 88, 91, 94, 97, 98, 100], "insensit": [24, 25, 37, 53, 59], "insert": [11, 12, 21, 24, 34, 35, 53, 58, 100], "insid": [24, 35], "inspect": [78, 84], "inst": [21, 24, 34, 35], "instal": [1, 24, 27, 37, 63, 80, 99], "instanc": [17, 19, 20, 21, 22, 24, 34, 35, 37, 38, 46, 49, 51, 53, 59, 70, 75, 78, 84, 87, 90, 91, 92, 94, 100], "instanti": [21, 24, 34, 35, 58], "instantiateandregist": 58, "instead": [17, 19, 20, 22, 24, 27, 35, 36, 37, 42, 53, 59, 82, 84, 87, 88, 91, 95, 100], "instruct": [1, 24, 53, 73, 75, 76, 77, 79, 80, 81, 99], "insuffici": [24, 35], "int": [3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 31, 32, 34, 35, 36, 37, 38, 39, 42, 44, 46, 47, 48, 49, 51, 52, 53, 55, 56, 58, 68, 84, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "int16": [21, 24, 34, 35, 36, 42, 92], "int16dtyp": [24, 35], "int32": [21, 24, 34, 35, 36, 42, 92], "int32dtyp": [24, 35], "int64": [3, 17, 19, 20, 21, 22, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 40, 42, 48, 50, 52, 53, 54, 55, 58, 59, 66, 67, 68, 82, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 98, 100], "int64dtyp": [24, 35], "int8": [21, 24, 34, 35, 36, 42, 92], "int8dtyp": [24, 35], "int_": [21, 24, 34, 35], "int_scalar": [17, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 48, 50, 51, 53, 55, 87, 89, 91, 92, 94], "int_typ": [24, 35], "intc": [21, 24, 34, 35], "intdtyp": [24, 35], "integ": [1, 4, 8, 9, 11, 17, 19, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 39, 42, 46, 54, 55, 68, 83, 87, 88, 89, 90, 91, 94, 96, 98, 100], "integr": [0, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 62, 84, 89, 91], "intel": 59, "intend": [0, 17, 19, 20, 24, 35, 37, 48, 53, 54, 67, 73, 76, 77, 85, 90, 97], "intens": [24, 50, 66, 86, 89], "intention": [21, 34], "interact": [63, 67, 71, 72, 73, 77, 79], "interest": 66, "interfac": [0, 62], "interleav": [17, 20, 24, 40, 49, 89], "intermedi": [3, 24], "intern": [1, 4, 8, 21, 24, 29, 34, 35, 37, 53, 54, 58, 62], "interoper": 0, "interpret": [18, 20, 21, 24, 27, 34, 35, 46, 59, 84, 99], "intersect": [20, 21, 22, 24, 34, 35, 40, 48, 66, 83, 98], "intersect1d": [17, 24, 40, 48, 58, 66, 83, 96, 98], "intersect_df": [20, 24], "interv": [3, 5, 24, 35, 36, 38, 42, 46, 55, 89, 92, 95], "interval_lookup": [3, 24], "intp": [21, 24, 34, 35], "intptr_t": [21, 24, 34, 35], "introduc": 11, "introduct": 66, "inttyp": [21, 24, 34, 35], "intx": [20, 24], "inv": [36, 42, 95], "invalid": [24, 27, 84], "invari": 1, "invers": [13, 20, 24, 35, 36, 42, 46, 56, 90, 95], "inverse_indic": 13, "invert": [22, 24, 40, 98], "invert_permut": [20, 24, 56], "invok": [24, 36, 38, 42, 75], "involv": [4, 8, 63, 81], "invpcid": 59, "invpcid_singl": 59, "io": [24, 35, 57, 58, 59, 69, 70, 71], "io_compress": 59, "io_files_per_loc": 59, "io_only_delet": 59, "io_only_read": 59, "io_only_writ": 59, "io_path": 59, "io_util": [24, 57], "ior": [24, 53, 100], "ip": [19, 24], "ip2": [19, 24], "ip_address": [19, 24, 25, 85], "ipaddress": [19, 24], "ipv4": [19, 24, 27], "ipv6": [19, 24], "ipython": [18, 23, 73], "iqr": 59, "iqr_outli": 59, "is_cosort": [3, 24], "is_float": 56, "is_int": 56, "is_integ": [21, 24, 34, 35], "is_ipv4": [19, 24], "is_ipv6": [19, 24], "is_leap_year": [24, 55], "is_numer": 56, "is_regist": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 56, 83, 91], "is_sort": [24, 37, 83, 87, 92], "isaac": [31, 100], "isalnum": [24, 53], "isalpha": [24, 53], "isbool": 68, "isdecim": [24, 53], "isdigit": [24, 53], "isdisjoint": [21, 22, 24, 34, 35], "isdtyp": 6, "isempti": [24, 53], "isf": 46, "isfinit": [7, 24, 35], "isin": [20, 24, 49], "isinf": [7, 24, 35], "isinst": [17, 24, 35, 38, 58], "islow": [24, 53], "isn": [24, 35, 64], "isna": [17, 20, 24, 49], "isnan": [7, 24, 35], "isnul": [24, 49], "iso": [24, 35], "isocalendar": [24, 55], "isort": [0, 79], "isscalar": [24, 35], "issctyp": [24, 35], "isspac": [24, 53], "issu": [17, 20, 22, 24, 35, 58, 62, 75, 80, 91, 96], "issubclass": [24, 35], "issubclass_": [24, 35], "issubdtyp": [24, 35], "issubsctyp": [24, 35], "issubset": [21, 22, 24, 34, 35], "issuperset": [21, 22, 24, 34, 35], "issupportedfloat": [21, 24, 34, 35], "issupportedint": [21, 24, 34, 35], "issupportednumb": [21, 24, 34, 35], "istitl": [24, 53], "isupp": [24, 53], "item": [3, 4, 8, 17, 20, 21, 22, 24, 34, 35, 37, 38, 40, 49, 54, 56, 88, 90, 91, 97, 98], "items": [21, 24, 34, 35, 37, 38, 51, 53, 83, 84, 94], "itemset": [21, 24, 34, 35], "iter": [20, 21, 22, 24, 27, 34, 35, 38, 50, 54, 59, 83, 84, 86], "iter1": [24, 54], "iter2": [24, 54], "ith": [17, 24, 48, 53], "its": [3, 7, 17, 21, 24, 25, 34, 35, 37, 40, 48, 49, 53, 58, 62, 68, 77, 87, 94, 96, 97, 100], "itself": [24, 35, 36, 37, 42, 53, 54, 62, 95, 100], "j": [24, 48, 60, 61, 76, 77, 96], "j16": 61, "jake": 66, "jane": 66, "john": 66, "join": [20, 24, 48, 53, 57, 83], "join_on_eq_with_dt": [24, 29], "json": [17, 18, 24, 26, 37, 47, 53, 58, 79], "judici": [24, 35], "jupyt": [18, 23, 73, 79], "just": [24, 35, 63, 64, 94, 95], "k": [5, 21, 24, 34, 35, 36, 37, 42, 46, 59, 87, 92, 95], "kb": [18, 20, 24, 25, 49, 56], "keep": [0, 3, 12, 15, 16, 20, 22, 24, 35, 66, 77, 80, 84, 90, 91], "keepdim": [12, 15, 16], "keepparti": [24, 53, 100], "kei": [3, 17, 20, 21, 22, 24, 25, 26, 27, 28, 34, 35, 40, 49, 54, 66, 68, 78, 80, 85, 90, 91, 97, 98], "kept": [20, 22, 24, 35, 48, 90, 91], "kextrememsg": 78, "key_": 68, "keyerror": [21, 24, 34, 35, 49], "keyfil": 1, "keynam": 56, "keys1": [3, 24], "keys2": [3, 24], "keyword": [0, 16, 17, 20, 21, 24, 34, 35, 36, 42, 46, 48, 49, 54, 89, 95, 97], "kind": [6, 21, 24, 34, 35, 39], "kitwar": 76, "know": [4, 8, 63, 73], "known": [0, 24, 27, 35, 84], "kurt": 46, "kurtosi": 46, "kwarg": [16, 17, 20, 21, 22, 24, 34, 35, 38, 43, 46, 49, 54, 55, 56, 88, 89, 91], "kwd": 46, "kwoqnphz": [24, 38], "l": [4, 8, 21, 24, 27, 34, 35, 55, 60, 62, 66, 67, 75, 84], "l1_data_cache_s": 59, "l1_instruction_cache_s": 59, "l2_cache_associ": 59, "l2_cache_line_s": 59, "l2_cache_s": 59, "l3_cache_s": 59, "l_name": 66, "label": [0, 17, 20, 22, 24, 25, 41, 46, 49, 54, 88, 90, 91, 97], "lack": [21, 24, 34, 35], "lahf_lm": 59, "laid": 0, "lam": [36, 42, 95], "lambda": [20, 24, 36, 42, 44, 95], "lambda_": [24, 44], "lang": 76, "larg": [4, 8, 17, 21, 24, 34, 35, 36, 42, 59, 75, 87, 95], "larger": [17, 20, 22, 24, 35, 37, 38, 53, 62, 66, 84, 88, 91, 94, 100], "largest": [24, 35, 36, 37, 42, 49, 87, 95, 97], "last": [11, 12, 16, 20, 21, 22, 24, 34, 35, 37, 38, 49, 50, 53, 54, 62, 78, 86, 90, 91, 97, 99, 100], "later": [20, 24, 35, 37, 53, 79], "latest": [11, 24, 56, 58, 73, 76, 77, 80], "latter": [18, 100], "launch": [58, 80, 83], "layer": 84, "layout": [24, 51, 52], "lb": 46, "ld15iqr": 59, "ld_library_path": 1, "lead": [24, 35, 37, 53], "learn": [24, 55, 58, 73], "least": [0, 19, 20, 21, 22, 24, 34, 35, 37, 48, 50, 53, 86, 91, 96], "leav": [0, 24, 35, 92], "left": [0, 3, 7, 12, 19, 20, 24, 35, 37, 46, 50, 52, 53, 54, 55, 86, 92, 100], "left_align": [3, 24], "left_df": [20, 24], "left_suffix": [20, 24], "legend": 46, "leibniz": [31, 100], "len": [22, 24, 37, 48, 53, 87, 91, 93, 96, 100], "len_suffix": [24, 48], "length": [0, 3, 11, 17, 20, 21, 22, 24, 25, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 42, 47, 48, 49, 53, 59, 82, 84, 87, 89, 91, 96, 97, 98, 100], "length_or_data": [24, 35], "less": [7, 17, 20, 22, 24, 25, 35, 36, 37, 42, 48, 53, 91, 95], "less_equ": 7, "lesser": 59, "let": 66, "letter": [24, 53], "level": [1, 24, 25, 30, 35, 40, 49, 54, 58, 59, 63, 67, 68, 75, 76, 77, 78, 81, 84, 97, 98], "levelnam": 24, "leverag": [61, 76], "lexicograph": [24, 50, 62, 86], "lhdf5": 1, "lhdf5_hl": 1, "lib": [1, 75, 80, 98], "libiconv": 79, "libidn2": 79, "librari": [0, 1, 58, 75, 80, 100], "libtic": 80, "libtinfow": 80, "licens": 76, "liconv": 1, "lidn2": 1, "lie": [17, 24, 35, 53], "life": [77, 79], "lifo": [21, 24, 34, 35], "like": [0, 2, 3, 4, 8, 19, 20, 21, 22, 24, 34, 35, 36, 42, 55, 58, 60, 62, 63, 64, 66, 69, 73, 75, 78, 80, 84, 85, 90, 91, 93, 95, 97, 99, 100], "likelihood": [22, 24, 37, 44, 87, 91], "lim": 93, "limit": [0, 4, 16, 17, 24, 29, 35, 36, 37, 38, 42, 53, 55, 67, 70, 73, 80, 84, 88, 90, 94, 95, 100], "linalg": [8, 57], "line": [0, 24, 28, 35, 63, 67, 73, 78, 99], "linear": [24, 35, 100], "linearli": [24, 38, 55, 89], "linefe": [24, 35], "lineno": 24, "link": [0, 1, 24, 27, 55, 62, 75, 76], "linkifi": 79, "linspac": [5, 22, 24, 35, 38, 46, 83, 87, 89, 91, 94], "linter": 0, "linux": [21, 24, 34, 35, 47, 59, 75, 80, 81], "linux64": 76, "list": [0, 3, 4, 5, 8, 11, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 34, 35, 37, 38, 39, 40, 41, 46, 48, 49, 51, 53, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 71, 73, 78, 81, 84, 89, 90, 91, 92, 93, 94, 96, 97, 98, 100], "list_registri": [24, 26, 37], "list_symbol_t": [24, 26], "listen": [73, 99], "liter": [12, 21, 24, 34, 35, 39, 46, 88, 100], "littl": [21, 24, 34, 35], "live": [76, 77], "ll": [63, 64, 75], "llvm": [76, 77, 80], "lm": 59, "ln": [36, 42, 80, 95], "lname": 66, "lo": [24, 35], "load": [17, 20, 24, 25, 27, 37, 48, 53, 67, 68, 70, 71, 80, 84], "load_al": [17, 20, 24, 25, 27, 37, 53, 71], "loc": [24, 36, 42, 46, 49, 95], "local": [0, 1, 4, 8, 17, 18, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 55, 56, 59, 60, 68, 73, 75, 76, 77, 84, 89, 91, 97, 99], "locale_hostnam": 18, "locale_id": 18, "localhost": [18, 73, 99], "locat": [1, 12, 22, 24, 25, 35, 36, 37, 42, 46, 47, 49, 53, 59, 62, 64, 75, 80, 87, 91, 95, 97, 100], "locationsinfo": 32, "log": [1, 7, 22, 24, 30, 35, 36, 38, 41, 42, 44, 45, 46, 53, 83, 87, 91, 95], "log10": [7, 24, 35], "log1p": [7, 24, 35], "log2": [7, 24, 35], "log_lvl": [24, 30], "log_msg": [24, 30], "logaddexp": 7, "logarithm": [7, 24, 35, 36, 42, 87, 95], "logcdf": 46, "logformat": 24, "logger": [17, 22, 24, 32, 48, 53, 57, 83, 91], "logic": [3, 7, 17, 24, 35, 36, 38, 42, 48, 53, 83, 89, 92, 96], "logical_and": 7, "logical_not": 7, "logical_or": 7, "logical_xor": 7, "logist": [36, 42, 83], "loglevel": [24, 30], "logmean": [24, 38], "lognorm": [24, 36, 38, 42, 83], "logpdf": 46, "logsf": 46, "logstd": [24, 38], "long": [21, 24, 34, 35, 48, 53, 64, 96], "longcomplex": [24, 35], "longdoubl": [24, 35], "longdoubledtyp": [24, 35], "longdtyp": [24, 35], "longer": [20, 24, 38, 68, 79, 90], "longfloat": [24, 35], "longlong": [24, 35], "longlongdtyp": [24, 35], "longnam": 46, "look": [0, 1, 24, 35, 58, 62, 63, 66, 78, 80, 84, 99], "lookahead": [17, 24, 53, 88, 100], "lookbehind": [17, 24, 53, 88, 100], "lookup": [3, 24, 25, 49], "loop": 1, "loos": 62, "lose": [24, 35], "loss": 96, "lot": 59, "love": 0, "low": [3, 19, 20, 24, 35, 36, 37, 38, 42, 66, 84, 89, 95], "lower": [5, 20, 24, 35, 36, 42, 53, 58, 68, 90, 95], "lower_bounds_inclus": [3, 24], "lowercamelcas": 0, "lowercas": [24, 38, 53], "lowest": [3, 20, 24, 36, 37, 38, 42, 95], "ls_csv": [24, 27, 67, 71], "lst": [24, 49], "lstick": [24, 53, 83, 100], "lt": 80, "ludmmgtb": [24, 38], "lw": 46, "lz": [24, 37], "lz4": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70], "lzmq": 1, "m": [0, 21, 24, 25, 31, 34, 35, 46, 48, 55, 59, 75, 80, 100], "m1": 66, "m2": [24, 25, 66], "m4": 76, "mac": [75, 77], "machep": [24, 35], "machin": [18, 24, 35, 59, 60, 63, 76, 77, 99], "machine_info": 59, "maco": [47, 76, 81], "macosx": 77, "made": [19, 20, 21, 24, 34, 35, 53, 100], "mai": [17, 20, 24, 25, 27, 35, 36, 37, 38, 39, 40, 42, 49, 53, 54, 58, 66, 68, 75, 77, 79, 80, 84, 88, 89, 90, 94, 100], "main": [5, 24, 35, 59, 62, 68], "mainli": 1, "maintain": [12, 24, 25, 27, 48, 69, 84], "major": [62, 67, 85, 90, 97], "make": [0, 1, 11, 17, 19, 20, 24, 27, 35, 36, 42, 46, 49, 55, 58, 59, 60, 61, 62, 64, 73, 75, 76, 77, 78, 80, 88, 90, 95], "makebinari": 61, "makefil": [73, 75], "malform": [24, 38, 84], "manag": [75, 76, 77, 79, 81], "mandatori": [21, 34], "mani": [3, 17, 20, 24, 35, 59, 88, 91], "manipul": 0, "manipulation_funct": [8, 57], "manner": [36, 42], "mantissa": [21, 24, 34, 35], "manual": [24, 35, 58, 77, 79], "map": [3, 17, 18, 19, 20, 21, 24, 25, 27, 28, 34, 35, 36, 42, 49, 53, 56, 90, 95, 100], "mapper": [20, 24, 90], "mark": 68, "markdown": [0, 20, 24, 49], "mask": [20, 24, 35, 48, 49, 53, 96], "mass": [36, 42, 95], "master": [0, 62, 75], "match": [1, 5, 11, 17, 20, 22, 24, 25, 27, 32, 35, 37, 38, 48, 49, 53, 54, 55, 56, 57, 59, 83, 84, 87, 89, 91, 94, 97, 99], "match_bool": 32, "match_ind": 32, "match_typ": [31, 32, 83, 100], "matcher": [24, 57], "matchtyp": [31, 32, 100], "math": [31, 100], "mathemat": 87, "mathjax": 79, "matlab": 93, "matmul": [10, 24, 35], "matplotlib": [24, 35, 41, 46, 79, 92], "matric": [5, 24, 35, 52, 56], "matrix": [10, 20, 22, 24, 35, 52, 56, 91], "matrix_transpos": 10, "matter": 63, "max": [6, 15, 20, 21, 22, 24, 34, 35, 37, 48, 49, 53, 59, 83, 87, 91, 92, 100], "max_bit": [24, 37, 38, 51, 59, 84, 89, 94], "max_list_s": [24, 25, 85], "max_tim": 59, "max_work": [24, 35], "maxbit": 59, "maxexp": [24, 35], "maxima": [22, 24, 91], "maximum": [1, 12, 15, 16, 18, 20, 22, 24, 25, 35, 36, 37, 38, 42, 56, 59, 84, 87, 89, 90, 91, 92], "maximum_sctyp": [24, 35], "maxk": [24, 37, 78, 83, 87, 92], "maxkmsg": 78, "maxlen": [24, 38], "maxmum": [24, 37, 87], "maxsplit": [24, 32, 53], "maxtaskpar": 18, "maxtransferbyt": [4, 8, 17, 20, 24, 37, 38, 53, 54, 55, 84, 88, 90, 94, 100], "mb": [18, 20, 24, 25, 49, 56], "mca": 59, "mce": 59, "md": [75, 76, 77], "mean": [15, 18, 20, 21, 22, 24, 27, 34, 35, 36, 37, 38, 42, 46, 47, 48, 49, 53, 59, 83, 84, 87, 91, 92, 95], "mean_shim": 15, "measur": [59, 82], "median": [20, 22, 24, 35, 36, 42, 46, 59, 83, 91, 95], "meet": 0, "megabyt": [20, 24, 90], "member": [0, 21, 24, 34, 35], "membership": [3, 22, 24, 40, 91, 98], "memori": [17, 18, 20, 24, 25, 27, 37, 48, 49, 53, 54, 60, 64, 65, 68, 73, 75, 76, 77, 80, 84, 88, 94, 100], "memory_usag": [20, 24, 25, 49], "memory_usage_info": [20, 24], "memoryview": [21, 24, 34, 35], "mention": [0, 64], "mere": [24, 53], "merg": [17, 20, 24, 56, 62], "mesg": [24, 35], "meshgrid": 5, "messag": [1, 17, 18, 20, 24, 25, 30, 35, 37, 38, 48, 53, 54, 58, 73, 84], "messagearg": 58, "meta": 58, "metadata": [24, 27], "method": [2, 4, 17, 18, 19, 20, 21, 22, 23, 24, 27, 34, 35, 36, 37, 38, 42, 46, 47, 48, 49, 53, 54, 58, 61, 66, 67, 83, 84, 88, 89, 91, 92, 94, 95], "method1": [24, 35], "method2": [24, 35], "mi": [17, 24, 25, 49, 55], "mib": 59, "microsecond": [24, 55], "microsoft": [59, 80], "middl": [24, 35], "midnight": [24, 55], "might": [24, 49, 75, 77, 78], "milli": [24, 29], "million": [24, 35, 37, 87], "millisecond": [24, 55], "mimic": [36, 42, 95], "min": [6, 15, 20, 21, 22, 24, 34, 35, 37, 48, 49, 59, 83, 87, 91, 92], "min_digit": [24, 35], "min_round": 59, "min_tim": 59, "mind": [0, 66, 80], "mine": 64, "minexp": [24, 35], "miniforg": 75, "minim": [4, 20, 24, 63, 64, 89, 90], "minima": [22, 24, 91], "minimum": [12, 15, 16, 22, 24, 35, 37, 38, 76, 87, 91, 92], "mink": [24, 37, 78, 83, 87, 92], "minkmsg": 78, "minlen": [24, 38], "minor": 62, "mintypecod": [24, 35], "minu": [24, 35], "minut": [24, 55], "mismatch": [20, 22, 24, 75, 91], "miss": [3, 17, 20, 24, 35, 49, 88], "mistak": 62, "mix": [24, 53, 55, 59], "mixtur": [36, 42, 95], "mkdir": [20, 24], "mm": 62, "mmx": 59, "mod": [24, 37, 44], "modal": [22, 24, 91], "mode": [1, 16, 17, 19, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 83, 89, 91], "model": [59, 95], "modif": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 78, 90, 91], "modifi": [20, 24, 35, 44, 63, 90], "modul": [24, 58, 63, 64, 73, 84, 100], "modular": [24, 37, 64], "modulenotfounderror": [24, 37], "moment": 46, "moment_typ": 46, "momtyp": 46, "monoton": [24, 37, 87, 92], "month": [24, 55, 62], "more": [0, 1, 3, 4, 7, 8, 11, 17, 20, 21, 22, 24, 25, 27, 34, 35, 37, 46, 49, 53, 55, 58, 59, 60, 62, 63, 64, 66, 68, 70, 71, 73, 75, 76, 77, 79, 84, 88, 90, 91, 94, 96, 100], "most": [0, 1, 19, 22, 24, 32, 35, 49, 53, 54, 59, 61, 62, 66, 68, 73, 75, 77, 80, 84, 89, 91, 94, 97, 100], "most_common": [22, 24, 56, 83, 91], "mostli": [19, 24, 54], "motion": 1, "movb": 59, "move": [11, 24, 50, 56, 64, 66, 86, 89, 96], "moveaxi": 11, "movement": 89, "mpi": 84, "msb_left": [19, 24], "msg": [24, 35], "msgarg": 58, "msgtupl": 58, "msi": 59, "msr": 59, "mt": [4, 8], "mtrr": 59, "mu": [24, 36, 38, 42, 95], "much": [0, 3, 17, 20, 24, 27, 37, 48, 53, 61, 66, 68, 84, 88, 94, 100], "muller": [36, 42, 95], "multi": [3, 19, 22, 24, 27, 40, 49, 66, 75, 85, 89, 91, 94, 97, 98], "multia": [24, 40, 98], "multib": [24, 40, 98], "multidimension": [24, 35, 53, 100], "multiindex": [20, 24, 25, 49, 85, 97], "multipl": [3, 11, 20, 24, 27, 35, 40, 48, 55, 59, 60, 66, 68, 70, 71, 78, 82, 84, 85, 87, 90, 96], "multiplex": 87, "multipli": [7, 22, 24, 36, 42, 52, 58, 91, 95], "must": [1, 3, 9, 11, 17, 18, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 48, 49, 53, 54, 55, 58, 60, 63, 66, 67, 73, 76, 78, 84, 87, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100], "mutual": 1, "mv": [46, 63, 64], "mvsk": 46, "my": [24, 53, 63, 84, 100], "my_data": [20, 24], "my_data_locale0000": [20, 24], "my_dir": [20, 24], "my_path": [20, 24], "my_table_nam": [20, 24], "my_zero": [24, 37], "myarrai": [4, 24, 56], "mydtyp": [24, 37, 51, 94], "mypi": [0, 79], "myst": 79, "n": [4, 8, 11, 16, 17, 20, 22, 24, 27, 35, 36, 37, 38, 39, 40, 42, 48, 49, 53, 55, 67, 77, 79, 82, 87, 88, 89, 90, 91, 95, 96, 97], "n_col": 5, "n_row": 5, "na": [17, 20, 24, 49, 68], "na_cod": 68, "naiv": [24, 55], "name": [0, 1, 2, 3, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 30, 34, 35, 36, 37, 38, 42, 46, 48, 49, 51, 53, 54, 55, 56, 58, 59, 60, 62, 66, 67, 68, 70, 75, 77, 78, 79, 83, 84, 85, 88, 89, 90, 91, 95, 97], "name_dict": [36, 42, 95], "name_prefix": [24, 27, 37, 84], "name_prefix_local": [24, 27, 37], "namedtupl": 13, "nameserv": 80, "namespac": [2, 4, 8, 24, 27], "namewidth": [19, 24], "nan": [7, 20, 21, 22, 24, 34, 35, 49, 56, 90, 91, 94], "nanosecond": [24, 38, 55], "nativ": [21, 22, 24, 34, 35, 69, 70, 77, 84, 91, 96], "natur": [7, 24, 35, 87], "navalu": [17, 24, 88], "navig": [59, 62, 75, 76, 77, 79], "nbin": [24, 35, 92], "nbyte": [17, 20, 21, 24, 25, 34, 35, 37, 38, 48, 49, 53, 56, 84], "ncx2": 46, "nd": [18, 24, 35, 58], "ndarrai": [4, 5, 8, 17, 21, 24, 34, 35, 37, 38, 41, 48, 53, 54, 66, 84, 87, 88, 94, 96, 100], "ndim": [4, 8, 11, 17, 21, 24, 25, 27, 34, 35, 37, 49, 51, 53, 58, 83, 88, 94], "nearest": [24, 35], "necessari": [0, 24, 35, 58, 62, 75, 80], "necessarili": [17, 24, 35, 49, 53], "need": [0, 4, 17, 20, 24, 27, 35, 37, 48, 49, 51, 53, 58, 59, 62, 63, 64, 67, 75, 76, 77, 78, 80, 84, 90, 97], "neg": [5, 7, 20, 22, 24, 35, 36, 38, 42, 48, 61, 89, 91, 93, 95, 96], "negat": 7, "negep": [24, 35], "neglig": [17, 24, 53], "neither": [17, 24, 25, 35, 37, 38, 53, 55, 89, 100], "nest": [4, 8, 24, 27, 68, 84], "nestedsequ": 5, "never": [24, 35, 94], "new": [0, 5, 11, 17, 20, 21, 22, 24, 25, 27, 28, 30, 31, 32, 34, 35, 36, 37, 41, 42, 46, 48, 49, 51, 53, 56, 58, 62, 63, 64, 79, 90, 91, 94, 95, 96, 97, 100], "new_categori": [17, 24], "new_dtyp": [21, 24, 34, 35], "new_nam": [24, 35], "new_ord": [21, 24, 34, 35], "new_str": [24, 53, 100], "newbyteord": [21, 24, 34, 35], "newer": 76, "newfig": [24, 41], "newli": [20, 24], "newlin": [20, 24, 25, 27, 35, 37, 53, 67], "newton": [31, 100], "nexp": [24, 35], "next": [24, 35, 62, 64, 75, 78, 99], "nextaft": [24, 35], "neyman": [24, 44], "ngram": [24, 48, 83], "ngroup": [22, 24, 83, 91], "nice": 0, "nightli": 1, "ninf": [24, 35], "nkei": [22, 24, 49, 83, 91], "nl": [60, 73, 99], "nlevel": [17, 24, 25, 83, 88], "nmant": [24, 35], "nnz": [22, 24, 51], "node": [4, 8, 17, 20, 24, 27, 37, 48, 53, 59, 68, 82, 84], "node01": [73, 99], "non": [1, 3, 12, 17, 20, 22, 24, 27, 32, 35, 36, 37, 38, 40, 42, 46, 49, 50, 51, 52, 53, 61, 84, 86, 87, 89, 91, 92, 93, 95, 100], "non_empti": [24, 48], "noncentr": 46, "none": [3, 4, 5, 8, 9, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 46, 48, 49, 51, 53, 54, 55, 56, 59, 76, 77, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 97, 99], "nonetyp": [24, 35, 36, 42], "nonexist": [20, 24, 90], "nonuniqueerror": [3, 24], "nonzero": [12, 21, 22, 24, 32, 34, 35, 53, 100], "nopl": 59, "nor": [17, 24, 25, 37, 38, 53, 89, 100], "norepeat": [24, 48, 96], "normal": [17, 18, 19, 20, 22, 24, 35, 36, 37, 38, 42, 55, 83, 87, 88, 90, 91], "not_alnum": [24, 53], "not_alpha": [24, 53], "not_decim": [24, 53], "not_digit": [24, 53], "not_empti": [24, 53], "not_equ": 7, "not_spac": [24, 53], "notabl": 100, "notat": [24, 35], "note": [0, 1, 2, 3, 4, 8, 14, 17, 18, 19, 20, 22, 24, 25, 27, 28, 35, 36, 37, 38, 40, 41, 42, 44, 46, 47, 48, 49, 50, 53, 54, 55, 56, 58, 60, 64, 66, 68, 70, 75, 77, 78, 80, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "notebook": [18, 23, 73], "notebookhistoryretriev": 23, "notic": [58, 66], "notifi": 68, "notimplementederror": [24, 35, 92], "notion": [4, 8], "notna": [20, 24, 49], "notnul": [24, 49], "nov": 59, "now": [17, 19, 20, 22, 24, 25, 35, 36, 37, 42, 48, 49, 51, 52, 53, 55, 56, 63, 64, 67, 70, 75, 76, 77, 91], "np": [4, 7, 8, 17, 20, 21, 22, 24, 29, 34, 35, 37, 38, 39, 41, 45, 46, 48, 49, 53, 54, 55, 56, 66, 84, 87, 88, 89, 90, 91, 92, 94, 96, 100], "np_arr": 66, "nparrai": [24, 54], "null": [17, 20, 21, 22, 24, 27, 34, 35, 53, 68, 84, 88, 100], "num": [5, 18, 21, 24, 34, 35], "num_command": [18, 23], "num_match": [24, 32, 53, 100], "numarg": 46, "numba": [24, 37], "number": [0, 1, 3, 5, 11, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 32, 34, 35, 36, 37, 38, 42, 46, 48, 49, 51, 52, 53, 54, 55, 56, 59, 60, 62, 63, 64, 66, 68, 76, 78, 80, 82, 84, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "number_format_str": [21, 24, 34, 35], "number_of_substit": [24, 53, 100], "numbers2": [24, 25], "numer": [3, 20, 24, 27, 35, 37, 38, 41, 49, 50, 56, 57, 68, 83, 84, 86, 88, 94, 97, 100], "numeric_and_bool_scalar": [21, 24, 34, 35, 37], "numeric_onli": [20, 24], "numeric_scalar": [21, 24, 34, 35, 36, 37, 38, 42, 87, 89, 95], "numericdtyp": [21, 24, 34, 35], "numid": 91, "numlocal": [17, 18, 20, 24, 25, 27, 37, 48, 53, 99], "numpi": [0, 4, 5, 8, 17, 19, 20, 21, 24, 25, 29, 32, 37, 38, 42, 44, 45, 46, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59, 66, 79, 82, 84, 87, 88, 89, 92, 93, 94, 95, 96, 98, 100], "numpu": 18, "numpy_funct": 4, "numpy_scalar": [21, 24, 34, 35, 37, 87], "numpydoc": 58, "nuniqu": [20, 22, 24, 48, 83, 91], "nx": [24, 35, 59], "ny": [24, 35], "nzero": [24, 35], "o": [17, 20, 22, 24, 25, 35, 37, 47, 48, 53, 81, 83, 91], "o0": 1, "o1": 1, "obj": [5, 24, 25, 27, 35, 39, 54, 56], "obj2sctyp": [24, 35], "object": [2, 3, 4, 5, 8, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 46, 47, 48, 49, 53, 54, 55, 56, 58, 67, 68, 69, 70, 71, 80, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "object_": [24, 35], "objectdtyp": [24, 35], "objtyp": [17, 20, 22, 24, 25, 32, 37, 48, 49, 53, 68], "observ": [0, 24, 36, 37, 42, 44, 87, 95], "obtain": [24, 32, 35, 53, 100], "occasion": 58, "occupi": [24, 35], "occur": [18, 20, 22, 24, 27, 32, 35, 36, 37, 39, 42, 49, 53, 75, 91, 92, 95, 97, 100], "occurr": [3, 13, 21, 24, 32, 34, 35, 37, 40, 53, 87, 92, 100], "odd": [24, 35, 37], "oerror": 28, "off": [24, 53, 63, 100], "offer": [85, 90, 97, 100], "offset": [17, 22, 24, 27, 35, 38, 53, 68, 84, 88, 98, 100], "offset_alias": [24, 55], "offset_attrib": [24, 53], "often": [17, 24, 88, 92], "ok": 62, "old": [17, 24, 62], "old_func": [24, 35], "old_nam": [24, 35], "older": [24, 25, 37, 68, 76], "olduint": [24, 35], "omit": [24, 35, 53, 55, 59, 68], "onc": [0, 20, 22, 24, 27, 37, 49, 53, 60, 61, 62, 64, 66, 67, 70, 75, 80, 91], "one": [0, 1, 2, 3, 4, 5, 8, 11, 17, 20, 21, 22, 24, 25, 27, 28, 34, 35, 36, 37, 38, 40, 42, 46, 48, 49, 51, 53, 58, 59, 62, 64, 66, 67, 68, 70, 73, 76, 77, 78, 79, 80, 84, 87, 88, 89, 90, 91, 95, 96, 98, 100], "one_two": [24, 53, 100], "onelin": 62, "ones": [1, 5, 11, 18, 20, 21, 24, 34, 35, 38, 49, 59, 63, 82, 83, 87, 89], "ones_lik": [5, 24, 38, 83, 89], "onli": [3, 4, 8, 16, 17, 20, 22, 24, 25, 27, 29, 31, 35, 36, 37, 38, 40, 42, 48, 49, 50, 51, 53, 54, 56, 58, 59, 61, 63, 64, 66, 68, 70, 75, 78, 79, 81, 82, 84, 85, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 100], "onlin": [62, 80], "onto": [20, 24, 53, 100], "op": [17, 19, 20, 24, 27, 37, 48, 53, 59], "open": [0, 3, 5, 17, 20, 24, 25, 27, 28, 35, 36, 37, 42, 48, 49, 53, 55, 80, 95], "opeq": [19, 24, 37], "opeqop": [24, 37], "oper": [17, 18, 19, 20, 22, 24, 25, 27, 35, 37, 47, 48, 50, 51, 53, 58, 59, 62, 69, 73, 79, 81, 82, 83, 86, 90, 91, 93, 99], "opposit": [21, 24, 34, 35], "opt": [75, 76, 77], "optim": 63, "option": [1, 3, 5, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 48, 49, 53, 54, 55, 58, 59, 62, 68, 75, 76, 79, 82, 84, 87, 89, 90, 91, 95, 97, 98, 99, 100], "order": [0, 4, 8, 11, 12, 14, 16, 17, 19, 20, 21, 22, 24, 27, 34, 35, 37, 38, 40, 44, 46, 48, 49, 50, 53, 54, 56, 60, 68, 70, 86, 88, 89, 90, 91, 92, 93, 96, 97, 100], "ordin": [24, 35], "org": [11, 20, 24, 35, 44, 49, 56, 58], "orient": [70, 88, 90, 94, 100], "orig": [24, 53, 100], "orig_kei": [22, 24, 91], "origin": [11, 17, 19, 20, 21, 22, 24, 25, 27, 31, 34, 35, 37, 40, 48, 49, 53, 55, 87, 88, 89, 90, 91, 96, 100], "origin_indic": [24, 48, 53, 96], "oserror": 28, "osxsav": 59, "other": [3, 5, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 42, 48, 50, 53, 55, 59, 63, 64, 66, 84, 85, 86, 87, 88, 91, 95, 96, 98, 100], "other_df": [20, 24], "otherwis": [0, 3, 5, 12, 15, 17, 20, 21, 22, 24, 25, 27, 31, 34, 35, 36, 37, 38, 40, 42, 46, 48, 49, 53, 56, 81, 84, 88, 90, 91, 94, 95, 96, 98, 100], "our": [0, 24, 37, 58, 59, 61, 62, 66, 68, 73, 75, 80, 81, 84], "out": [0, 15, 18, 20, 21, 24, 34, 35, 48, 63, 64, 67, 68, 70, 75, 78, 92, 93, 96], "outer": [4, 8, 20, 24, 93], "outlier": 59, "outlin": [62, 68], "outperform": [24, 37, 87], "output": [0, 1, 5, 12, 15, 17, 19, 20, 22, 24, 25, 27, 35, 36, 37, 39, 42, 48, 49, 53, 54, 62, 66, 70, 73, 84, 87, 91, 92, 94, 95, 98, 99], "outsid": [0, 24, 35, 67, 78], "outstand": 0, "over": [3, 17, 20, 24, 27, 35, 36, 37, 42, 48, 53, 58, 82, 87, 88, 90, 92, 94, 95, 96, 100], "overflow": [17, 24, 35, 37, 53, 84, 88, 94, 100], "overflowerror": [21, 24, 34, 35], "overlap": [3, 20, 24, 32, 53, 100], "overload": [22, 24, 35, 91], "overnight": 64, "overrid": [17, 19, 24, 37, 38, 53, 63, 84, 88, 94, 100], "overridden": [24, 38, 47], "overview": [24, 35, 59], "overwhelm": [24, 38, 84], "overwrit": [17, 20, 22, 24, 25, 27, 35, 37, 48, 53, 91, 94], "overwritten": [17, 20, 24, 25, 27, 35, 37, 48, 53, 68, 70], "own": [0, 1, 24, 55, 96, 100], "p": [3, 24, 36, 37, 38, 42, 44, 95], "packag": [76, 77, 79, 81], "pad": [16, 19, 24, 35, 62], "pad_left": [24, 35], "pad_right": [24, 35], "pad_width": 16, "padchar": [19, 24], "pae": 59, "page": [57, 62, 75], "pai": 59, "pair": [21, 24, 28, 29, 34, 35, 48, 96], "pairwis": [20, 24, 35], "panda": [0, 17, 20, 24, 25, 27, 38, 49, 54, 55, 58, 69, 71, 79, 84, 85, 88, 90], "parallel": [61, 84, 94, 98], "parallel_start_test": 0, "param": [2, 17, 21, 24, 25, 27, 34, 35, 37, 48, 53, 54, 58, 59], "paramet": [0, 3, 5, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 77, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "parameter": [36, 42, 95], "parameter_class": 18, "parent": [1, 20, 24, 32], "parent_entry_nam": [31, 32], "pariti": [24, 37], "parquet": [17, 20, 22, 24, 25, 27, 37, 48, 53, 59, 67, 69, 71, 84, 91], "parquet_output": [20, 24], "pars": [18, 19, 20, 24, 25, 37, 49, 51, 99], "parse_hdf_categor": [17, 24], "parseabl": [24, 38, 89], "parser": 79, "part": [0, 4, 7, 8, 21, 24, 34, 35, 48, 53, 80, 100], "parti": [24, 35, 75], "particular": [4, 11, 20, 24, 35, 46, 49, 58, 78], "particularli": [76, 78], "partit": [24, 53, 100], "paruqet": 70, "pass": [0, 1, 3, 17, 19, 20, 22, 24, 27, 35, 36, 37, 42, 48, 49, 53, 54, 62, 84, 90, 91, 97], "password": [1, 20, 24, 49, 80], "past": [24, 35, 64], "pat": 59, "path": [20, 24, 25, 27, 28, 35, 37, 47, 59, 64, 73, 75, 76, 77, 78, 80, 84], "path_prefix": [24, 27], "path_to_ark": 77, "path_to_arkouda": 79, "path_to_chpl": 77, "pathlib": [20, 24, 28, 35, 47], "pattern": [24, 31, 32, 53, 62, 66, 91, 100], "pb": 18, "pcg64": [36, 42], "pcid": 59, "pclmulqdq": 59, "pct_avail_mem": 18, "pd": [17, 20, 24, 27, 38, 49, 54, 55, 56, 66, 84, 88, 90], "pd_df": [20, 24, 66, 90], "pda": [22, 24, 35, 37, 38, 50, 55, 56, 58, 86, 87, 89, 92, 94, 98], "pda1": [24, 37, 40, 98], "pda2": [24, 37, 40, 98], "pda_a": [24, 35], "pda_b": [24, 35], "pdaleft": [24, 35], "pdaright": [24, 35], "pdarrai": [3, 5, 17, 18, 19, 20, 22, 24, 25, 27, 29, 31, 32, 35, 36, 37, 38, 39, 40, 42, 44, 45, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 95, 96, 97, 98, 100], "pdarrayclass": [17, 19, 20, 24, 25, 27, 29, 31, 32, 35, 36, 38, 39, 40, 42, 45, 48, 49, 50, 51, 52, 53, 56, 57, 90], "pdarraycr": [24, 37, 57], "pdarraymanipul": [24, 57], "pdarraysetop": [24, 48, 57, 58, 96], "pdconcat": [24, 49, 97], "pdf": 46, "pdpe1gb": 59, "pdrrai": [24, 35, 38, 84], "pearson": [20, 24, 37, 44], "peel": [24, 53, 83, 100], "pep": [24, 35], "pep8": 0, "per": [1, 17, 18, 20, 22, 24, 25, 27, 37, 48, 53, 59, 64, 68, 78, 84, 87, 91], "percent": [18, 46], "percent_transfer_limit": 56, "percentag": [18, 56], "percentil": 46, "perf_count": 59, "perform": [17, 20, 22, 24, 25, 27, 29, 35, 36, 37, 40, 42, 48, 49, 53, 54, 59, 61, 62, 63, 66, 67, 69, 75, 83, 84, 87, 89, 90, 91, 94, 95], "period": [24, 55], "perl": 76, "perm": [20, 24, 50, 56, 86, 90], "perm_arri": [20, 24, 90], "perm_df": [20, 24, 90], "permiss": [17, 24, 25, 37, 48, 53], "permut": [11, 17, 20, 22, 24, 36, 42, 50, 53, 56, 68, 83, 86, 88, 91, 98], "permute_dim": 11, "permute_sampl": [22, 24, 91], "person": 0, "pexpect": 79, "pge": 59, "physic": [18, 31, 100], "physicalmemori": 18, "pi": [24, 35, 36, 42, 95], "piec": 63, "pierce314159": 0, "pig": [20, 24, 49], "pinf": [24, 35], "pip": [76, 77], "pipe": 100, "pipelin": [84, 100], "place": [17, 19, 20, 22, 24, 25, 27, 30, 35, 36, 37, 42, 47, 48, 49, 53, 55, 56, 60, 64, 87, 90, 91, 95], "placement": [24, 35], "plan": [80, 81, 92, 94], "platform": [21, 24, 34, 35, 47], "player": [36, 42, 95], "pleas": [0, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 48, 49, 53, 55, 60, 62, 63, 66, 68, 70, 71, 75, 76, 77, 78, 88, 90, 91], "plot": [24, 35, 46, 57, 84, 92], "plot_dist": [24, 41], "plt": [24, 35, 41, 46, 92], "plu": [24, 35], "pni": 59, "point": [7, 20, 21, 24, 25, 29, 34, 35, 36, 37, 38, 42, 46, 49, 51, 80, 89, 90, 94], "pointer": [21, 24, 34, 35], "poisson": [36, 42, 83], "polyfit": [24, 35], "pop": [21, 24, 34, 35], "popcnt": 59, "popcount": [21, 24, 34, 35, 37], "popitem": [21, 24, 34, 35], "popul": [22, 24, 28, 32, 37, 87, 91], "port": [1, 17, 18, 20, 24, 27, 37, 48, 49, 53, 63, 73, 82, 99], "portion": [24, 35, 68], "portland": [20, 24], "pos_dt": [24, 29], "posit": [5, 7, 11, 20, 21, 22, 24, 31, 32, 34, 35, 37, 49, 53, 91, 93, 97, 100], "position": [20, 24], "positon": [24, 53, 100], "possibl": [0, 20, 21, 24, 27, 34, 35, 46, 48, 53, 55, 58, 59, 62, 66, 75, 80, 84, 96, 100], "possibli": 58, "post": [0, 24, 35, 62], "postit": [24, 53, 100], "potenti": [20, 24, 35, 37, 75], "pow": 7, "power": [7, 24, 35, 37, 44, 72, 93], "power_diverg": [24, 44], "power_divergenceresult": [24, 44], "powershel": 80, "pp": [24, 35], "ppf": 46, "pr": [0, 62], "practic": [0, 22, 24, 35, 37, 78, 87, 91], "pre": [17, 24, 56, 88], "preced": [21, 24, 34, 35, 46], "precis": [21, 24, 27, 34, 35, 54, 84, 94], "pred": [24, 29], "predefin": [24, 35], "predic": [24, 29], "prefer": [0, 77, 79, 81, 95], "prefix": [17, 20, 22, 24, 25, 27, 37, 48, 53, 55, 83, 91, 100], "prefix_path": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53, 91], "prepar": [20, 22, 24, 75, 91], "prepend": [11, 16, 24, 48, 53, 83, 100], "prepend_singl": [24, 48, 83, 96], "prerequisit": [75, 76, 77], "present": [0, 3, 17, 19, 20, 21, 24, 25, 27, 34, 35, 37, 40, 48, 49, 53, 66, 68, 84, 92, 98], "preserv": [20, 24, 35, 49, 97, 100], "pretti": 64, "pretty_print_info": [17, 24, 37, 53], "pretty_print_inform": [24, 26], "prev": 62, "prevent": [19, 24, 27, 37, 48, 67, 68, 76, 96], "previou": [62, 64, 77], "previous": [17, 20, 22, 24, 25, 27, 37, 48, 49, 53, 55, 91], "primarili": [24, 35, 84], "print": [0, 1, 17, 18, 20, 24, 26, 35, 37, 43, 49, 53, 80, 99], "print_server_command": 18, "printabl": [24, 38], "printit": 0, "prior": 78, "probabl": [17, 20, 22, 24, 36, 42, 46, 53, 91, 95], "problem": [0, 24, 35, 36, 42, 59, 82, 95], "problem_s": 59, "proc": [0, 58], "proce": [17, 24, 35, 37, 38, 53, 84, 88, 94, 100], "procedur": [0, 58], "proceed": 75, "process": [18, 24, 26, 27, 35, 49, 51, 58, 65, 68, 73, 80, 84, 96, 100], "processor": [18, 59], "prod": [15, 20, 21, 22, 24, 34, 35, 37, 48, 49, 83, 87, 91, 92], "produc": [17, 24, 53, 54, 88, 95, 100], "product": [7, 10, 15, 22, 24, 35, 36, 37, 38, 42, 52, 84, 87, 91, 92, 95], "profil": 23, "program": [0, 17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 73, 91, 99], "progress": 77, "project": [0, 20, 24, 49, 59, 62, 75], "promot": [4, 24, 38, 58], "promote_dtyp": [24, 38], "promote_to_common_dtyp": [24, 38], "proof": [19, 24], "proper": [24, 35, 48, 53, 56, 96], "properli": [0, 63, 68, 76, 77], "properti": [2, 4, 8, 17, 20, 24, 25, 35, 37, 48, 49, 53, 55, 58, 68], "protect": [17, 24, 37, 38, 53, 84, 88, 94, 100], "provid": [0, 6, 17, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 39, 42, 48, 49, 53, 54, 56, 58, 59, 61, 66, 67, 68, 70, 71, 75, 76, 77, 79, 84, 87, 90, 91, 95, 96], "prune": 79, "pse": 59, "pse36": 59, "pseudo": 95, "pti": 59, "ptp": [21, 24, 34, 35], "publish": 62, "pull": [24, 27, 38, 58, 62, 68, 89], "pure": [24, 35], "purg": [24, 53], "purge_cached_regex_pattern": [24, 53], "purpos": [24, 35, 59, 62, 85, 90, 97], "push": [62, 75], "put": [20, 21, 22, 24, 34, 35, 64, 91], "putmask": [24, 35], "pvalu": [24, 44], "pwd": [76, 77], "pwr": [24, 37], "py": [0, 1, 58, 59, 63, 78, 79, 82], "py_incref": [24, 35], "pyarrow": [79, 84], "pycharm": 0, "pydata": [20, 24, 49], "pyfiglet": 79, "pypi": [20, 24, 49], "pyplot": [24, 35, 41, 46, 92], "pytabl": 79, "pytest": [0, 65, 79], "python": [3, 4, 8, 17, 18, 19, 21, 23, 24, 34, 35, 37, 38, 40, 47, 49, 53, 59, 72, 75, 80, 81, 83, 84, 87, 88, 89, 90, 93, 94, 100], "python3": [59, 63, 75, 76], "python_build": 59, "python_compil": 59, "python_implement": 59, "python_implementation_vers": 59, "python_vers": 59, "pythonpath": [76, 77], "pytype_readi": [24, 35], "pytypeobject": [24, 35], "pyzmq": 79, "pzero": [24, 35], "q": [24, 35, 46], "q1": 59, "q3": 59, "quadrupl": [24, 35], "qualifi": [20, 24], "queri": [3, 24, 40, 84], "quetzal": [20, 24, 49], "quick": [18, 63], "quickli": [20, 24, 60, 90], "quickstart": [76, 77, 81], "quit": [0, 73], "quotient": [24, 37], "r": [0, 20, 24, 35, 46, 59, 62, 66, 76, 77, 82], "rad2deg": [24, 35], "radian": [24, 35], "radix": [24, 50, 86], "radixsortlsd": [24, 50, 86], "rai": [24, 35], "rais": [3, 4, 8, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 40, 42, 47, 48, 49, 50, 51, 52, 53, 55, 56, 58, 84, 86, 87, 88, 89, 90, 91, 92, 94, 96, 97, 98, 99, 100], "ram": 75, "ran": [59, 63], "randint": [3, 18, 22, 24, 35, 36, 38, 40, 42, 50, 66, 83, 86, 87, 89, 91, 92], "randn": [24, 41], "random": [20, 22, 24, 35, 38, 41, 46, 52, 57, 59, 82, 83, 91], "random_sparse_matrix": 52, "random_st": [20, 22, 24, 46, 91], "random_strings_lognorm": [24, 38], "random_strings_uniform": [24, 38], "randomli": [20, 24, 36, 42, 95], "rang": [3, 11, 16, 17, 20, 24, 25, 27, 29, 35, 36, 37, 38, 42, 48, 49, 52, 53, 55, 82, 84, 87, 89, 90, 92, 95, 97, 100], "rank": [17, 18, 24, 35, 36, 37, 38, 42, 51, 53, 58, 83, 84, 88, 89, 93, 95], "rankwarn": [24, 35], "rasi": [17, 24, 53, 88, 100], "rate": [36, 42, 59, 95], "rather": [4, 8, 17, 20, 24, 35, 53], "ratio": [21, 24, 34, 35], "ravel": [21, 24, 34, 35], "raw": [24, 53, 100], "rc": 77, "rdrand": 59, "rdrnd": 59, "rdseed": 59, "rdtscp": 59, "re": [0, 11, 17, 18, 20, 22, 24, 31, 35, 75, 91, 99, 100], "re2": [17, 24, 53, 75, 88, 100], "reach": 0, "reachabl": 99, "reactiv": 77, "read": [4, 8, 17, 20, 24, 25, 27, 28, 35, 37, 44, 49, 53, 67, 68, 69, 70, 100], "read_": [24, 27], "read_all_test": 1, "read_csv": [20, 24, 27, 67, 71], "read_hdf": [24, 27, 48, 71, 84], "read_nest": [24, 27, 84], "read_parquet": [24, 27, 71, 84], "read_path": [24, 27, 84], "read_tagged_data": [24, 27], "read_zarr": [24, 27], "readabl": [17, 24, 26, 27, 37, 53, 68, 84], "readalltest": 1, "readi": [0, 60, 62, 76, 77], "readm": 1, "readthedoc": 58, "real": [0, 7, 21, 24, 34, 35, 36, 38, 42, 58, 62, 68], "realist": [17, 24, 53], "realli": [0, 24, 53], "reason": [24, 35, 62, 64, 77], "rebas": 0, "rebind": [24, 35], "rebuild": [22, 24, 58, 61, 63, 64, 91], "rebuilt": 63, "receiv": [17, 18, 20, 24, 25, 27, 37, 48, 53, 84, 94, 99], "receive_arrai": [17, 20, 24, 37, 48, 53], "receive_datafram": [24, 27], "recent": [24, 54, 62], "recogn": [21, 34], "recommend": [0, 24, 35, 36, 42, 60, 64, 70, 76, 79, 80, 81, 90, 95, 96], "recompil": 64, "recomput": [17, 24, 27], "reconnect": [24, 37], "reconstitut": [17, 24], "reconstruct": 13, "record": [24, 27], "recurs": [24, 38, 84], "red": [24, 25], "reduc": [20, 22, 24, 35, 63, 65, 91], "reduct": [22, 24, 37, 82, 83, 91, 92], "redund": [21, 34], "ref": 58, "refer": [0, 5, 20, 22, 24, 35, 44, 49, 54, 63, 66, 77, 79, 91], "referenc": [20, 24], "reflect": [20, 24, 77, 90, 96], "reformat": [0, 84], "regard": 76, "regardless": [24, 54], "regex": [17, 24, 53, 88, 100], "regex_max_captur": 1, "regex_split": [24, 53], "regist": [1, 4, 17, 19, 20, 22, 24, 25, 26, 37, 48, 49, 53, 55, 56, 58, 83, 91], "register_al": [24, 56], "registerablepiec": [17, 24], "registercommand": 58, "registerd": [24, 49], "registered_nam": [17, 19, 24, 25, 37, 48, 53], "registeredsymbol": [24, 26], "registerfunct": 78, "registr": [18, 24, 37, 53, 58, 75], "registrationerror": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 91], "registri": [17, 20, 22, 24, 25, 26, 37, 49, 53, 55, 56, 91], "regular": [17, 24, 53, 83, 88], "rel": [24, 54], "relat": [59, 62, 66], "releas": [17, 20, 21, 24, 25, 27, 34, 35, 37, 48, 53, 59, 64, 65, 73, 76, 77, 95], "release_d": 73, "reli": [17, 24, 25, 37, 48, 53, 91], "remain": [17, 20, 24, 25, 27, 35, 37, 48, 53, 76, 84, 85, 90, 97], "remaind": [7, 24, 37, 53, 100], "remap": [17, 24], "rememb": [64, 66], "remot": [24, 35, 62, 76, 77, 99], "remov": [3, 11, 17, 20, 21, 24, 25, 27, 34, 35, 37, 39, 40, 48, 53, 59, 63, 79, 90, 96, 100], "remove_miss": [3, 24, 40], "remove_repeat": [24, 48, 83, 96], "renam": [20, 24], "reorder": [11, 24, 35], "rep": [24, 35], "rep_good": 59, "rep_msg": [17, 19, 20, 22, 24, 25, 48, 53, 78], "repack": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53], "repeat": [1, 11, 17, 21, 24, 34, 35, 48, 88, 96], "repeatedli": [24, 35], "repetit": 11, "repl": [23, 24, 32, 53, 100], "replac": [3, 20, 21, 22, 24, 27, 32, 34, 36, 37, 42, 48, 53, 60, 62, 68, 77, 78, 79, 91, 95, 96, 100], "repli": 58, "replic": [22, 24, 91], "repmsg": [24, 49, 51, 58], "repo": [24, 35, 76, 77, 81], "repons": [24, 25, 37, 53], "report": [21, 22, 24, 34, 35, 64, 79], "report_mem": 56, "repr": [20, 21, 22, 24, 34, 35, 46, 49], "repres": [17, 19, 21, 22, 24, 34, 35, 46, 48, 49, 52, 53, 55, 59, 68, 88, 91, 100], "represent": [19, 20, 21, 24, 34, 35, 37], "reproduc": [0, 20, 22, 24, 36, 42, 65, 91, 95], "request": [20, 22, 24, 28, 35, 37, 38, 53, 58, 62, 89, 90, 91], "requir": [0, 3, 4, 8, 15, 18, 20, 22, 24, 25, 27, 29, 35, 37, 38, 49, 60, 61, 63, 64, 68, 69, 70, 73, 75, 78, 84, 89, 90, 91], "requiredpiec": [17, 24], "rerun": 75, "reset_categori": [17, 24], "reset_index": [20, 24, 90], "reshap": [11, 21, 24, 34, 35, 37, 39, 83], "resid": [24, 37, 51, 53, 94], "resili": [24, 50, 86], "resiz": [21, 24, 34, 35], "resolut": [24, 35], "resolv": [0, 61, 80], "resolve_scalar_dtyp": [21, 24, 34, 35], "respect": [20, 24, 35, 37, 38, 40, 46, 54, 55, 62, 84, 89], "respons": [18, 20, 24, 53, 58], "rest": [24, 49], "restart": 80, "restor": [24, 27], "restrict": [4, 8], "result": [3, 5, 6, 11, 12, 15, 16, 17, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 40, 41, 42, 44, 46, 48, 49, 51, 53, 54, 55, 58, 59, 66, 67, 68, 69, 77, 84, 87, 89, 90, 91, 94, 95, 96, 97, 100], "result_array_on": [24, 29], "result_limit": [24, 29], "result_typ": 6, "ret": 58, "retain": [24, 35, 37, 56, 87], "retain_index": [20, 24, 90], "retriev": [18, 23, 24, 26, 37, 47, 49, 62], "return": [3, 4, 5, 6, 8, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 58, 67, 69, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "return_count": [24, 35, 92], "return_group": [22, 24, 98], "return_group_origin": [31, 100], "return_indic": [22, 24, 91, 98], "return_length": [24, 29], "return_match_origin": [24, 31, 32, 53, 100], "return_multipl": [24, 48, 96], "return_num_sub": 32, "return_obj": [24, 27, 84], "return_origin": [24, 48, 53, 96], "return_seg": [24, 32, 53, 100], "return_valid": [24, 35, 94], "revarg": [3, 24], "revers": [4, 8, 11, 19, 22, 24, 35], "review": 62, "revindic": [3, 24], "revkei": [3, 24], "rf": 75, "rh": 76, "right": [3, 7, 12, 19, 20, 24, 35, 36, 37, 42, 46, 50, 52, 53, 54, 55, 62, 86, 90, 93, 99, 100], "right_align": [3, 24], "right_df": [20, 24], "right_suffix": [20, 24], "risk": [24, 35, 68], "rm": 75, "rng": [24, 36, 42, 55, 95], "role": 1, "roll": 11, "root": [7, 17, 19, 20, 22, 24, 25, 37, 49, 55, 59, 68, 76, 84, 87, 91], "rot": [24, 37], "rotat": [24, 35, 37], "rotl": [24, 37], "rotr": [24, 37], "roughli": [24, 35], "round": [7, 21, 24, 34, 35, 59], "rout": 80, "routin": [24, 35], "row": [3, 5, 20, 22, 24, 25, 27, 35, 37, 39, 40, 48, 49, 50, 52, 53, 54, 57, 66, 67, 84, 86, 90, 91, 96, 98], "row_numb": [22, 24], "row_start": [22, 24], "rpartit": [24, 53, 100], "rpath": 75, "rpeel": [24, 53, 83, 100], "rtol": [24, 54], "rule": [4, 24, 35, 94], "run": [17, 18, 20, 24, 27, 35, 37, 48, 53, 63, 64, 66, 73, 75, 76, 77, 79, 80, 82, 84, 88, 94, 96, 99, 100], "runtim": [18, 21, 24, 27, 34, 61, 84], "runtimeerror": [17, 18, 20, 22, 24, 25, 26, 27, 31, 35, 37, 38, 40, 48, 49, 51, 53, 55, 84, 87, 88, 89, 91, 92, 94, 98, 99, 100], "runtimewarn": [24, 27, 84], "ruok": 18, "rv": 46, "rv_continu": 46, "s1": [24, 35, 87], "s2": [24, 25, 35, 49, 53, 87], "s3": [20, 24, 49], "s5": [24, 35], "s_complement": [24, 35], "s_cpy": [24, 53], "sa": [24, 56], "sacrific": 100, "safe": [24, 35, 39, 62, 94], "sai": 99, "salari": 66, "same": [3, 11, 16, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 47, 48, 49, 50, 51, 53, 54, 55, 58, 62, 66, 67, 68, 70, 76, 77, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 100], "same_kind": [24, 39], "sampl": [20, 22, 24, 35, 36, 38, 42, 83, 91, 95], "satisfi": [3, 20, 24, 27], "save": [17, 20, 22, 24, 25, 27, 37, 48, 53, 59, 60, 62, 63, 68, 69, 70, 84, 88, 91, 98], "save_al": [24, 25, 27, 37, 71], "save_offset": [24, 53], "saveusedmodul": [63, 64, 78], "sb": [24, 56], "scalar": [3, 4, 5, 8, 15, 16, 17, 20, 21, 24, 34, 35, 37, 38, 48, 49, 59, 82, 83, 88, 92, 93, 96, 97], "scalar_arrai": [24, 38], "scalardtyp": [21, 24, 34, 35], "scalartyp": [24, 35], "scale": [17, 24, 36, 41, 42, 44, 46, 61, 66, 72, 95], "scaler": [24, 49, 97], "scan": 83, "scatter": [59, 83], "schema": 84, "scheme": [24, 35, 62], "scienc": 91, "scientif": [24, 35], "scipi": [0, 24, 57, 79], "scl": 76, "scope": [0, 78], "script": [58, 63, 77, 78, 82], "scroll": 75, "sctype": [24, 35], "sctype2char": [24, 35], "sctypedict": [24, 35], "se": [22, 24, 37, 87, 91], "search": [3, 12, 17, 24, 31, 40, 53, 83, 88], "search_bool": 32, "search_ind": 32, "search_interv": [3, 24], "searching_funct": [8, 57], "searchsort": [12, 21, 24, 34, 35], "sec": [24, 55, 59], "second": [3, 4, 8, 18, 24, 28, 35, 38, 40, 49, 53, 54, 55, 56, 58, 59, 63, 66, 87, 89, 94, 97, 98, 99, 100], "secret": 47, "section": [1, 24, 35, 59, 61, 62, 63, 64, 66, 68, 73, 75, 79, 87], "secur": [24, 35, 57], "see": [0, 1, 3, 4, 7, 8, 11, 20, 21, 22, 24, 34, 35, 36, 37, 41, 42, 46, 49, 53, 55, 56, 58, 59, 62, 63, 64, 73, 75, 78, 84, 87, 88, 91, 92, 94, 95, 96, 97, 98, 100], "seealso": [24, 25], "seed": [3, 20, 22, 24, 36, 38, 40, 42, 46, 59, 82, 89, 91, 95], "seen": [18, 99], "seg": 56, "seg_a": [24, 48, 96], "seg_b": [24, 48, 96], "seg_suffix": [24, 48], "segarr": [24, 48, 96], "segarrai": [3, 22, 24, 27, 35, 49, 54, 57, 83, 84, 90, 91, 97], "segment": [3, 17, 20, 22, 24, 27, 29, 48, 53, 56, 68, 83, 84, 88, 91, 96, 98, 100], "segment_nam": [24, 48], "segstr": [24, 53], "select": [12, 18, 20, 22, 23, 24, 27, 48, 49, 58, 62, 75, 81, 90, 91, 96], "select_from": [3, 24, 40], "self": [17, 20, 24, 37, 48, 53, 84, 85, 88, 90, 94, 95, 96, 97, 100], "send": [17, 18, 20, 24, 27, 37, 38, 48, 53, 58, 84, 90, 99], "send_arrai": [24, 27], "sens": [20, 24, 49], "sensit": [24, 55], "sent": [24, 27, 69], "sep": 59, "separ": [1, 4, 19, 20, 24, 25, 27, 28, 35, 36, 37, 42, 46, 53, 59, 67, 68, 78, 84, 94, 95, 100], "seq": [24, 54], "sequenc": [3, 5, 17, 19, 20, 21, 24, 25, 34, 35, 36, 37, 38, 39, 40, 42, 48, 50, 51, 54, 56, 86, 89, 91, 92, 94, 95, 96, 98, 100], "sequenti": [24, 27, 84], "seri": [2, 20, 24, 25, 38, 54, 55, 56, 57], "seriesdtyp": [21, 24, 34, 35], "serv": 81, "server": [0, 1, 4, 8, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 30, 31, 34, 35, 36, 37, 38, 42, 47, 48, 49, 51, 53, 55, 61, 63, 64, 76, 77, 80, 82, 83, 87, 88, 89, 90, 91, 92, 94, 95, 96, 100], "server_util": [0, 1], "serverdaemon": 58, "serverhostnam": 18, "servermodul": [1, 24, 27, 63, 64, 78], "serverport": 18, "session": [63, 73], "set": [1, 3, 17, 19, 20, 21, 22, 24, 25, 27, 30, 34, 35, 37, 38, 40, 47, 48, 49, 53, 55, 58, 59, 60, 62, 67, 68, 75, 76, 77, 78, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 100], "set_categori": [17, 24], "set_dtyp": [24, 25, 85], "set_funct": [8, 57], "set_jth": [24, 48, 83, 96], "set_xlim": 46, "setchplenv": [76, 77], "setdefault": [21, 24, 34, 35], "setdiff": [24, 48, 83, 96], "setdiff1d": [24, 40, 48, 58, 66, 83, 96, 98], "setfield": [21, 24, 34, 35], "setflag": [21, 24, 34, 35], "setop": 83, "setup": [1, 75, 80], "setxor": [24, 48, 83, 96], "setxor1d": [24, 40, 48, 58, 66, 83, 96, 98], "sever": [58, 66, 68, 84, 87, 89], "sf": 46, "sh": [76, 77], "shallow": [21, 22, 24, 34, 35, 90], "shape": [3, 4, 5, 8, 11, 17, 20, 21, 24, 25, 27, 34, 35, 36, 37, 39, 40, 42, 46, 49, 51, 53, 56, 83, 87, 88, 94, 95], "share": [17, 20, 22, 24, 25, 37, 48, 53, 54, 62, 80, 91], "shell": [18, 23, 24, 27, 77, 84], "shellhistoryretriev": 23, "shift": [7, 11, 46], "ship": [75, 79], "short": [21, 24, 34, 35], "shortdtyp": [24, 35], "shortest": [24, 35], "shorthand": [21, 24, 34, 37, 53], "should": [0, 1, 4, 8, 17, 20, 21, 22, 24, 27, 34, 35, 37, 38, 49, 51, 53, 54, 56, 58, 62, 63, 64, 66, 67, 68, 69, 73, 75, 76, 77, 79, 80, 84, 90, 91, 94, 99], "shouldn": [63, 64], "show": [20, 24, 27, 35, 41, 46, 54, 75, 84, 91], "show_int": [19, 24], "shown": 99, "shuffl": [36, 42, 83], "shut": [18, 73, 78], "shutdown": [18, 63, 64, 78], "side": [1, 12, 17, 18, 20, 22, 24, 25, 26, 27, 31, 35, 36, 37, 38, 42, 48, 49, 51, 53, 55, 58, 62, 63, 73, 78, 80, 84, 87, 88, 91, 92, 93, 94, 95, 96, 99, 100], "sigma": [24, 36, 38, 42, 95], "sign": [7, 21, 24, 27, 34, 35, 36, 37, 42, 84, 90, 94, 95], "signal": [21, 34], "signatur": [23, 58], "signedinteg": [21, 24, 34, 35], "signific": [19, 24, 35, 37, 50, 62, 78, 86, 87], "significantli": [17, 24, 35, 63, 88], "similar": [0, 24, 27, 35, 53, 59, 66, 84, 94, 96, 100], "similarli": [59, 66], "simpl": [0, 66, 78, 92], "simplest": 59, "simpli": [17, 18, 20, 24, 35, 89], "simplifi": [0, 59], "simul": [76, 77], "sin": [7, 24, 35, 83, 87], "sinc": [1, 4, 24, 35, 36, 42, 64, 88, 90, 94, 100], "sine": [7, 24, 35, 87], "singl": [0, 2, 3, 4, 8, 16, 17, 19, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 40, 42, 48, 53, 63, 64, 66, 68, 70, 75, 78, 82, 84, 89, 90, 91, 93, 95, 96, 98], "singlecomplex": [21, 24, 34, 35], "singleton": [11, 12, 15, 16, 24, 37], "sinh": [7, 24, 35], "siphash": [24, 35], "siphash128": [17, 24, 53], "site": 75, "situat": [24, 38], "six": [24, 51, 53, 100], "size": [3, 4, 8, 11, 17, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 40, 42, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 66, 69, 70, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 100], "skew": [24, 46], "skip": [1, 21, 22, 24, 27, 34, 53, 76, 84, 91, 98, 100], "skipna": [22, 24, 91], "slice": [17, 20, 24, 37, 39, 66, 83, 88, 90, 96, 100], "slice_bit": [24, 37], "slightli": [20, 24, 27, 90], "slot": [24, 35], "slower": [17, 24, 100], "small": [20, 24, 35, 49, 68, 84], "smaller": [24, 49, 62, 67, 84], "smallest": [20, 22, 24, 35, 37, 49, 87, 91, 97], "smallest_norm": [6, 24, 35], "smallest_subnorm": [24, 35], "smap": 59, "smemtrack": 1, "smep": 59, "smith": 66, "snappi": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70, 75], "snapshot": [24, 27], "so": [0, 1, 14, 17, 19, 20, 22, 24, 27, 35, 36, 37, 42, 48, 49, 53, 59, 61, 62, 63, 64, 73, 78, 79, 80, 84, 87, 90, 91, 95, 97, 98], "socket": [18, 99], "softwar": 76, "solut": [24, 35], "some": [0, 3, 4, 17, 20, 24, 35, 40, 46, 60, 66, 70, 75, 88, 90, 96, 100], "someon": [0, 62], "someth": [62, 63, 80, 99], "sometim": [46, 78, 94], "somewhat": 61, "somewher": 58, "sort": [1, 3, 12, 14, 17, 20, 21, 22, 24, 34, 35, 37, 40, 48, 49, 53, 54, 56, 57, 62, 82, 83, 87, 88, 89, 91, 92, 98, 100], "sort_index": [20, 24, 49, 97], "sort_valu": [17, 20, 24, 49, 90, 97], "sorted_df1": [20, 24, 90], "sorted_df2": [20, 24, 90], "sorter": 12, "sorting_funct": [8, 57], "sortingalgorithm": [24, 50, 86], "sought": [24, 53, 100], "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 60, 68, 73, 75, 76, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 99, 100], "space": [0, 1, 3, 5, 24, 35, 38, 40, 51, 53, 55, 59, 75, 78, 89, 92, 100], "span": [24, 53, 100], "sparrai": [24, 51, 52], "sparrayclass": [24, 52, 57], "spars": [3, 22, 24, 51, 52, 56, 91, 94], "sparse_matrix_matrix_mult": 52, "sparse_sum_help": 56, "sparsematrix": [24, 57], "special": [19, 21, 24, 34, 35, 44, 46, 49, 53, 57, 94, 97], "special_objtyp": [19, 24, 55], "special_str": [24, 53], "specif": [0, 4, 8, 20, 21, 24, 27, 34, 35, 36, 42, 46, 54, 64, 67, 68, 69, 76, 78, 83, 84, 90, 95], "specifi": [1, 3, 4, 5, 6, 8, 9, 11, 14, 16, 19, 20, 21, 22, 24, 25, 27, 28, 34, 35, 36, 37, 38, 39, 41, 42, 46, 48, 49, 52, 53, 54, 55, 56, 58, 59, 63, 69, 84, 87, 89, 90, 91, 95, 96], "speed": [17, 24, 40, 61, 65, 78, 88, 89, 98], "sphinx": [57, 75, 79], "splash": 1, "split": [24, 32, 53, 62, 83], "spread": 84, "sqrt": [7, 22, 24, 36, 37, 42, 87, 91, 95], "squar": [7, 22, 24, 35, 36, 37, 42, 44, 46, 87, 91, 95], "squared_test": [24, 44], "squash": 0, "squeez": [11, 21, 24, 34, 35], "src": [58, 78], "ss": 59, "ssbd": 59, "sse": 59, "sse2": 59, "sse4_1": 59, "sse4_2": 59, "ssegmentedstr": [24, 53], "ssh": 1, "ssse3": 59, "st": 58, "stabl": [14, 24, 50, 86], "stack": [11, 24, 39, 100], "stale": 75, "standard": [0, 4, 15, 17, 22, 24, 35, 36, 37, 38, 42, 46, 55, 58, 59, 60, 87, 91, 92, 95], "standard_exponenti": [36, 42, 83], "standard_norm": [24, 36, 38, 42, 83], "standardize_categori": [17, 24], "start": [0, 3, 4, 5, 8, 17, 20, 21, 22, 24, 25, 29, 31, 32, 34, 35, 37, 38, 48, 49, 50, 53, 55, 68, 83, 86, 88, 89, 91, 93, 96, 100], "startswith": [17, 24, 53, 83, 88, 100], "startup": [1, 73, 83], "stat": [24, 44, 57, 59], "state": [17, 24, 36, 42, 53, 62, 95], "static": [17, 24, 25, 37, 48, 53, 91], "statist": [22, 24, 37, 44, 59, 83, 87, 91], "statistical_funct": [8, 57], "statu": 18, "std": [15, 20, 21, 22, 24, 34, 35, 37, 46, 49, 55, 83, 87, 91, 92], "stddev": 59, "stddev_outli": 59, "stdev": [36, 42, 95], "stdout": [24, 35], "step": [0, 5, 21, 22, 24, 34, 35, 59, 60, 61, 64, 75, 78, 81, 98, 99], "stepfil": 46, "stibp": 59, "stick": [24, 53, 64, 83, 100], "still": [68, 100], "stop": [5, 18, 21, 24, 34, 35, 38, 89, 93], "storag": [20, 24, 49, 59], "storage_opt": [20, 24, 49], "store": [4, 8, 12, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 38, 42, 47, 53, 58, 59, 67, 68, 71, 80, 84, 88, 89, 91, 96, 100], "store_path": [24, 27], "str": [2, 4, 5, 6, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 41, 42, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 59, 67, 84, 87, 88, 89, 90, 91, 94, 95, 99, 100], "str_": [21, 24, 34, 35, 92], "str_acc": [24, 49], "str_scalar": [17, 21, 24, 32, 34, 35, 53, 88, 100], "straight": 62, "strategi": [24, 35, 79, 80, 84], "strdtype": [24, 35], "stream": [4, 8, 36, 42, 63, 95], "streamhandl": 24, "strict": [20, 21, 22, 24, 34, 35, 46, 49, 54, 94], "strict_typ": [24, 27], "stricter": [24, 35], "stricttyp": [24, 27, 84], "stride": [20, 21, 24, 29, 34, 35, 38, 89, 90, 93], "string": [0, 1, 3, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 34, 35, 37, 38, 40, 44, 46, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 62, 78, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 96, 97, 98], "string_": [24, 35], "string_oper": [2, 24], "stringa": [24, 53], "stringaccessor": [2, 24], "stringb": [24, 53], "stringc": [24, 53], "stringifi": [20, 24, 90], "stringio": [24, 35], "strings0": [24, 53], "strings1": [24, 53], "strings2": [24, 53], "strings_arrai": [24, 53, 68], "strings_encodedecod": 59, "strings_end": [24, 53, 100], "strings_pdarrai": [24, 53], "strings_start": [24, 53, 100], "strip": [21, 24, 34, 35, 53], "strive": 62, "strongli": [24, 35], "structur": [17, 20, 24, 35, 48, 66, 70, 90, 91, 94, 96, 100], "strucutur": 96, "stub": 79, "style": [0, 17, 19, 20, 22, 24, 25, 35, 37, 48, 49, 53, 55, 90, 91, 94], "sub": [21, 24, 32, 34, 35, 48, 53, 83, 100], "subclass": [4, 21, 24, 34, 35], "subdir": 76, "subdirectori": 58, "subdomain": [4, 8], "subdtyp": [24, 35], "subject": [1, 24, 55], "subn": [24, 53, 83, 100], "subnorm": [24, 35], "subplot": 46, "subsequ": [24, 35, 68], "subset": [4, 17, 18, 20, 23, 24, 48, 78, 87, 90, 96], "substanti": 62, "substitu": [24, 53, 100], "substitut": [24, 32, 53, 73, 75, 100], "substr": [17, 19, 24, 53, 83, 88], "subsystem": 80, "subtract": 7, "subtyp": [24, 35], "succeed": [24, 35, 94], "success": [17, 18, 20, 24, 25, 27, 29, 35, 37, 48, 53, 94, 99], "successfulli": 77, "sudo": 80, "suffici": [24, 35], "suffix": [20, 24, 27, 48, 53, 68, 83, 100], "suggest": [64, 80], "suitabl": 12, "sum": [7, 15, 20, 21, 22, 24, 34, 35, 36, 37, 42, 48, 49, 55, 56, 83, 87, 91, 92, 95], "summar": [83, 84], "summari": [0, 20, 24], "super": 0, "supercomput": 72, "suppli": [22, 24, 27, 35, 38, 48, 68, 70, 71, 89, 90], "support": [0, 3, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 34, 35, 36, 37, 38, 40, 42, 47, 48, 49, 51, 53, 55, 58, 66, 69, 73, 75, 76, 77, 85, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 100], "supported_opeq": [24, 55], "supported_scalar": [24, 49], "supported_with_datetim": [24, 55], "supported_with_pdarrai": [24, 55], "supported_with_r_datetim": [24, 55], "supported_with_r_pdarrai": [24, 55], "supported_with_r_timedelta": [24, 55], "supported_with_timedelta": [24, 55], "supportsbufferprotocol": 5, "suppress": [20, 24, 35], "sure": [0, 20, 24, 25, 27, 37, 53, 62, 80], "surround": [0, 21, 24, 34, 35, 46], "surviv": [3, 24, 46], "swap": [21, 24, 34, 35], "swapax": [21, 24, 34, 35], "switch": 78, "sy": [20, 21, 22, 24, 34, 35, 46, 49], "symbol": [18, 24, 26, 37, 48, 53, 58, 94], "symentri": 58, "symlink": 80, "symmetr": [3, 21, 22, 24, 34, 35, 40, 48, 66, 83, 98], "symmetric_differ": [21, 22, 24, 34, 35], "symtab": 58, "symtabl": 18, "sync": 77, "synchron": [17, 24], "syntax": 93, "syscal": 59, "system": [1, 17, 24, 35, 36, 37, 42, 47, 53, 58, 59, 75, 77, 78, 79, 80, 81, 84, 87, 88, 94, 95, 99, 100], "t": [0, 3, 4, 8, 20, 21, 24, 27, 34, 35, 40, 53, 55, 58, 62, 63, 64, 75, 76, 77, 80, 82, 100], "t1": [24, 29, 35], "t2": [24, 29, 35], "t3": [24, 35], "tab": [0, 62, 75], "tabl": [3, 18, 20, 24, 26, 37, 48, 49, 53, 58, 59, 94, 96], "tablefmt": [20, 24, 49], "tablul": [20, 24, 49], "tabul": [20, 24, 49, 79], "tag": [0, 24, 27, 30, 62, 64], "tag_data": [24, 27], "tagdata": [24, 27], "taht": 84, "tail": [20, 22, 24, 38, 49, 83, 91], "take": [0, 9, 19, 21, 22, 24, 30, 34, 35, 36, 37, 42, 46, 58, 60, 61, 63, 64, 66, 69, 84, 91, 95], "taken": [62, 78], "tan": [7, 24, 35], "tangent": [7, 24, 35], "tanh": [7, 24, 35], "tar": [73, 75, 76, 77], "target": [24, 28, 35, 38, 59, 61, 62, 75, 84, 89, 93, 94], "task": [1, 18], "tb": 18, "tblgen": 80, "tcp": [18, 73, 99], "team": 62, "technic": [24, 27], "techniqu": 64, "tell": [24, 27, 58, 59, 84], "temp_c": [20, 24], "temp_f": [20, 24], "temp_k": [20, 24], "temporari": [24, 35], "temporarili": 75, "tend": 61, "tensor": [5, 22, 24, 35, 91], "tensordot": 10, "term": [3, 24, 40], "termin": [24, 27, 68, 73, 80, 99], "test": [3, 17, 20, 24, 27, 35, 40, 44, 57, 60, 62, 63, 64, 66, 73, 78, 90, 98], "test_": 0, "test_command": 78, "test_data_url": 1, "testmsg": 78, "text": [24, 35, 62, 67, 84], "texttt": [36, 42, 95], "th": [4, 5, 8, 11, 16, 24, 35, 48, 87, 96], "than": [3, 4, 8, 11, 17, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 40, 42, 48, 49, 50, 53, 60, 62, 63, 70, 84, 86, 88, 89, 90, 91, 94, 95, 98, 100], "thei": [1, 11, 17, 18, 19, 20, 22, 24, 25, 27, 35, 37, 48, 49, 53, 54, 55, 56, 60, 62, 67, 68, 69, 76, 77, 84, 88, 91, 97], "them": [1, 20, 24, 27, 40, 46, 53, 62, 76, 84, 90, 98], "therefor": 68, "thi": [0, 1, 4, 5, 8, 11, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 27, 30, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 75, 76, 77, 78, 80, 81, 84, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100], "thin": [19, 24], "thing": [0, 4, 8, 66], "third": [24, 35, 38, 62, 75, 89], "thirti": [3, 24], "those": [0, 4, 8, 16, 24, 35, 50, 66, 76, 78, 86, 93], "though": [20, 24, 66], "thousand": 84, "three": [3, 24, 35, 38, 40, 52, 53, 55, 58, 75, 89, 93, 94, 100], "three_____four____f": [24, 53, 100], "thresh": [20, 24], "threshold": 100, "thrift": 75, "through": [1, 24, 35, 54, 58, 60, 62, 73, 77], "throw": [11, 58], "thrown": [17, 20, 24, 25, 26, 27, 31, 37, 38, 48, 49, 51, 53, 84, 87, 88, 92, 94, 100], "thu": [4, 8, 24, 27, 38, 50, 68, 69, 86, 96], "tiebreak": [3, 24], "tile": 11, "time": [1, 17, 18, 20, 22, 24, 25, 27, 29, 35, 36, 37, 42, 48, 49, 53, 55, 59, 61, 63, 64, 67, 68, 70, 78, 82, 84, 88, 91, 92, 95, 96, 98, 100], "timeclass": [24, 27, 57], "timedelta": [24, 27, 35, 38, 55], "timedelta64": [24, 35, 55], "timedelta64dtyp": [24, 35], "timedelta_rang": [24, 55], "timedeltaindex": [24, 55], "timeout": [1, 18, 99], "timer": 59, "times2": 58, "timeseri": [24, 55], "timestamp": [24, 29], "timezon": [24, 55], "tini": [24, 35], "tip": [65, 75], "titl": [0, 24, 35, 53, 62], "titlecas": [24, 53], "tm": [24, 54, 59], "tmp": [24, 35], "to_csv": [20, 24, 25, 27, 37, 53, 67, 71], "to_cuda": [24, 37], "to_datafram": [24, 49], "to_datetim": [24, 38], "to_devic": [4, 8], "to_dict": [24, 25], "to_hdf": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53, 68, 71, 83, 84, 91], "to_list": [3, 17, 19, 24, 25, 37, 48, 49, 53, 66, 84, 94, 96, 100], "to_markdown": [20, 24, 49], "to_ndarrai": [4, 8, 17, 19, 24, 25, 35, 37, 38, 41, 48, 49, 53, 55, 66, 83, 84, 88, 92, 94, 96, 100], "to_panda": [17, 20, 24, 25, 49, 55, 66, 90, 97], "to_parqet": [24, 37], "to_parquet": [17, 20, 24, 25, 27, 37, 48, 53, 70, 71, 84], "to_pdarrai": [24, 51], "to_str": [17, 24], "to_zarr": [24, 27], "tobyt": [21, 24, 34, 35], "toencod": [24, 53], "tofil": [21, 24, 34, 35], "togeth": [17, 20, 22, 24, 53, 56, 90, 91, 98], "token": [1, 18, 47, 73, 99], "token_hex": 47, "token_str": 73, "token_valu": [18, 99], "toleft": [24, 53, 100], "toler": [24, 54], "tolist": [4, 8, 21, 24, 34, 35], "too": [4, 8, 24, 35, 61, 84], "tooharderror": [24, 35], "tool": [0, 75, 77], "toolset": 66, "top": [24, 49, 58, 63, 68, 75, 76, 77, 80, 81, 97], "topn": [24, 49, 97], "tostr": [21, 24, 34, 35], "total": [18, 20, 22, 24, 27, 35, 53, 59, 84, 91], "total_mem": 18, "total_second": [24, 55], "totestmsg": 78, "touch": 93, "toward": [21, 24, 34, 35, 38, 46], "tp_doc": [24, 35], "trace": [21, 24, 34, 35], "traceback": [24, 54], "track": [0, 63, 70], "trail": [21, 24, 34, 35, 37, 53], "trait": 23, "transfer": [17, 20, 24, 27, 37, 48, 53, 59, 84, 88, 90, 94, 96, 100], "transfer_r": 59, "transform": [24, 25, 36, 42, 95], "transit": 66, "transpos": [4, 8, 21, 24, 34, 35, 48, 84], "treat": [3, 19, 20, 21, 24, 34, 35, 50, 59, 66, 86, 90], "trial": [59, 82], "triangl": [24, 35], "tril": [5, 24, 35], "trim": [24, 35], "triu": [5, 24, 35], "trivial": [3, 24], "true": [1, 3, 5, 6, 12, 14, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 29, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 46, 48, 49, 53, 54, 55, 56, 59, 66, 77, 84, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "true_": [24, 35], "true_dt": [24, 29], "trunc": [7, 24, 35], "truncat": [7, 17, 19, 21, 22, 24, 25, 27, 34, 35, 37, 46, 48, 53, 68, 70, 91], "try": [0, 21, 24, 25, 27, 34, 35, 37, 75, 80], "tsc": 59, "tukei": [24, 44], "tune": 1, "tunnel": 1, "tup": [24, 39], "tupl": [3, 4, 5, 6, 8, 11, 12, 13, 15, 16, 17, 19, 20, 21, 22, 24, 25, 27, 29, 34, 35, 36, 37, 38, 39, 40, 42, 48, 49, 51, 53, 56, 66, 84, 87, 88, 89, 90, 91, 92, 94, 97, 98, 100], "turn": [21, 24, 34, 35, 49, 63, 73, 97], "tutori": 80, "tvkj": [24, 38], "tvkjte": [24, 38], "twenti": [3, 24], "twice": [24, 38, 84], "two": [3, 7, 10, 16, 17, 19, 20, 21, 22, 24, 25, 29, 34, 35, 37, 38, 40, 48, 49, 52, 53, 54, 55, 56, 58, 66, 67, 78, 84, 87, 89, 91, 98, 100], "txt": [1, 24, 35], "typ": [21, 34], "type": [2, 3, 4, 5, 6, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 69, 75, 79, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 95, 96, 97, 98, 99, 100], "typechar": [24, 35], "typecheck": 58, "typecod": [24, 35], "typeerror": [3, 17, 19, 20, 22, 24, 25, 27, 29, 30, 35, 36, 37, 38, 40, 42, 48, 49, 50, 53, 55, 56, 58, 84, 86, 87, 88, 89, 91, 92, 97, 98, 100], "typeguard": 79, "typehint": 79, "typenam": [24, 35], "typevar": 94, "typic": [0, 19, 24, 35, 58, 63, 64, 88], "tz": [24, 55], "tzinfo": [24, 55], "u": [0, 19, 21, 24, 34, 35, 38, 55, 62, 76, 77, 84], "u0": [20, 24, 25], "u0009": [24, 53], "u0009nu000bu000cu000d": [24, 53], "u000b": [24, 53], "u000c": [24, 53], "u000d": [24, 53], "u5": [24, 53, 84, 100], "ub": 46, "ubuntu": 80, "ubyt": [21, 24, 34, 35], "ubytedtyp": [24, 35], "ucs4": [21, 24, 34, 35], "ui": 1, "uint": [3, 20, 21, 24, 27, 34, 35, 37, 38, 53, 67], "uint16": [21, 24, 34, 35, 36, 42, 92], "uint16dtyp": [24, 35], "uint32": [21, 24, 27, 34, 35, 36, 42, 84, 92], "uint32dtyp": [24, 35], "uint64": [3, 19, 21, 22, 24, 34, 35, 36, 37, 38, 42, 50, 59, 68, 82, 86, 87, 89, 90, 92, 94], "uint64dtyp": [24, 35], "uint8": [21, 24, 34, 35, 36, 42, 53, 68, 92, 94, 100], "uint8dtyp": [24, 35], "uintc": [21, 24, 34, 35], "uintdtyp": [24, 35], "uintp": [21, 24, 34, 35], "uintptr_t": [21, 24, 34, 35], "ulongdtyp": [24, 35], "ulonglong": [24, 35], "ulonglongdtyp": [24, 35], "unabl": [17, 19, 20, 22, 24, 25, 37, 49, 53, 55, 91], "unaffect": 59, "unalt": [36, 42], "unbias": [22, 24, 35, 37, 87, 91], "unchang": [17, 21, 24, 34], "uncompress": [24, 35], "undefin": [24, 36, 38, 42, 89], "under": [0, 2, 17, 19, 20, 22, 24, 25, 27, 37, 38, 48, 49, 53, 55, 59, 62, 84, 88, 91, 94, 100], "under_flat": [24, 53, 100], "under_map": [24, 53, 100], "underflow": [24, 35, 94], "underli": [17, 19, 20, 22, 24, 25, 35, 36, 42, 48, 49, 54, 55, 91, 95], "underneath": 62, "underscor": [4, 8], "undoubl": 58, "unequ": [24, 35, 87], "unicod": [21, 24, 34, 35], "unicode_": [21, 24, 34, 35], "uniform": [24, 35, 36, 38, 42, 50, 83, 84, 86, 87, 89], "uniformli": [24, 36, 38, 42, 52, 89, 95], "uniniti": [24, 37], "uninterpret": [24, 35, 94], "union": [5, 17, 18, 20, 21, 22, 24, 26, 27, 29, 34, 35, 36, 37, 38, 39, 40, 42, 48, 50, 52, 53, 66, 83, 84, 86, 87, 88, 89, 91, 92, 94, 97, 98, 100], "union1d": [17, 24, 40, 48, 58, 66, 83, 96, 98], "uniqu": [3, 11, 13, 17, 20, 21, 22, 24, 34, 35, 37, 40, 48, 49, 53, 66, 68, 83, 84, 88, 91, 92, 93, 96, 97, 98, 100], "unique_al": 13, "unique_count": 13, "unique_invers": 13, "unique_kei": [22, 24, 83, 91], "unique_key_idx": 68, "unique_valu": [13, 24, 35, 37, 92], "uniqueallresult": 13, "uniquecountsresult": 13, "uniqueinverseresult": 13, "unit": [0, 1, 18, 20, 24, 25, 35, 49, 54, 55, 56], "unknown": [20, 24, 25, 27, 37, 38, 53], "unless": [1, 20, 22, 24, 27, 35, 36, 42, 53, 91, 95, 100], "unlik": [20, 21, 24, 27, 34, 35, 53, 55], "unlimit": [20, 24], "unnecessari": 64, "unord": [21, 22, 24, 34, 35, 48], "unpack": [24, 53, 73, 77, 100], "unregist": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 56, 83, 91], "unregister_al": [24, 56], "unregister_categorical_by_nam": [17, 24], "unregister_dataframe_by_nam": [20, 24], "unregister_groupby_by_nam": [22, 24, 83, 91], "unregister_pdarray_by_nam": [24, 37], "unregister_segarray_by_nam": [24, 48], "unregister_strings_by_nam": [24, 53], "unrel": 89, "unsaf": [24, 39], "unset": [63, 77], "unsign": [21, 24, 34, 35, 90], "unsignedinteg": [21, 24, 34, 35], "unsort": [20, 24, 90], "unsqueez": [3, 24], "unstabl": [36, 42], "unstack": 11, "unstructur": [24, 35], "unsupport": [22, 24, 27, 47, 50, 84, 98], "unsupportedoper": 28, "unsupportedopt": 28, "unsur": 0, "until": [17, 19, 20, 22, 24, 25, 35, 37, 48, 49, 53, 55, 64, 91], "unus": [17, 24, 27, 39, 84], "up": [1, 3, 17, 18, 20, 22, 24, 27, 35, 37, 40, 48, 53, 58, 60, 61, 64, 65, 75, 76, 77, 78, 84, 87, 88, 89, 98, 100], "updat": [17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 41, 48, 49, 53, 55, 70, 75, 76, 80, 84, 91], "update_hdf": [17, 19, 20, 22, 24, 25, 27, 37, 48, 53], "update_nrow": [20, 24], "upgrad": [75, 79], "upon": [24, 35, 53, 77, 78, 81, 87], "upper": [5, 24, 35, 36, 42, 53, 62, 95], "upper_bounds_exclus": [3, 24], "upper_bounds_inclus": [3, 24], "uppercamelcas": 0, "uppercas": [24, 38, 53], "upstream": [62, 76, 77], "url": [1, 18, 20, 24, 35, 49, 73, 75, 99], "urlnam": [24, 35], "us": [0, 1, 3, 4, 5, 8, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 30, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 46, 47, 48, 49, 50, 53, 54, 55, 56, 58, 59, 60, 61, 62, 65, 67, 68, 69, 70, 76, 77, 80, 81, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "usag": [4, 8, 20, 24, 25, 49, 65, 73, 82, 96, 99], "use_seri": [20, 24, 90], "usedmodul": [63, 64, 78], "usehash": [24, 53], "user": [0, 1, 17, 19, 20, 21, 22, 24, 25, 27, 30, 34, 35, 37, 38, 41, 47, 48, 49, 51, 53, 55, 56, 59, 62, 65, 66, 68, 69, 71, 73, 75, 76, 77, 78, 79, 80, 81, 84, 88, 91, 94, 100], "user_defined_nam": [17, 19, 20, 22, 24, 25, 37, 48, 49, 53, 55, 91], "userdict": [20, 24, 43], "userid": [20, 24, 90, 91], "usernam": [20, 24, 47, 49, 90], "username_token": 47, "userwarn": [24, 35], "ushort": [21, 24, 34, 35], "ushortdtyp": [24, 35], "usual": [0, 20, 22, 24, 91], "utf": [20, 24, 27, 53], "utf8proc": 75, "util": [0, 24, 27, 57, 62, 75, 76, 77], "utility_funct": [8, 57], "v": [0, 21, 22, 24, 34, 35, 46, 48, 62, 76, 82, 91, 96], "v1": [24, 44], "v10": [24, 35], "v2": [22, 24, 91], "v2022": 62, "v2023": 64, "v5": [24, 35], "val": [3, 21, 22, 24, 34, 35, 46, 48, 49, 52, 56, 91, 96], "val1": 56, "val2": 56, "val_suffix": [24, 48], "valid": [3, 17, 21, 24, 27, 34, 35, 38, 46, 49, 51, 53, 84, 88, 94, 100], "validate_kei": [24, 49], "validate_v": [24, 49], "vals1": 56, "vals2": 56, "valsiz": [24, 48], "valu": [3, 4, 5, 7, 8, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 34, 35, 36, 37, 38, 40, 42, 44, 46, 48, 49, 51, 52, 53, 54, 55, 56, 58, 59, 66, 68, 70, 77, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 94, 95, 96, 98, 99, 100], "valuabl": 78, "value_count": [24, 35, 37, 49, 83, 92, 97], "value_label": [24, 49], "value_nam": [24, 48], "value_s": [59, 82], "valueerror": [3, 4, 8, 11, 17, 18, 20, 21, 22, 24, 25, 27, 28, 29, 34, 35, 36, 37, 38, 40, 42, 48, 49, 50, 51, 52, 53, 84, 86, 87, 88, 89, 91, 92, 96, 97, 99, 100], "values2": [22, 24, 91], "valuetypeerror": [24, 35], "vandermond": [24, 35], "vanish": [21, 34], "var": [0, 1, 15, 20, 21, 22, 24, 34, 35, 37, 46, 49, 58, 83, 87, 91, 92], "vari": [24, 35, 37, 54, 66, 75, 77, 79, 81, 96], "variabl": [0, 22, 24, 27, 29, 36, 37, 42, 46, 47, 48, 53, 58, 59, 60, 76, 77, 78, 87, 91, 95, 96, 100], "varianc": [15, 22, 24, 36, 37, 42, 46, 87, 91, 92, 95], "variat": 46, "varieti": [36, 42, 95], "variou": [1, 67], "vcxsrv": 80, "ve": [64, 75, 76, 77], "vecdot": [10, 24, 35], "vecentropi": 46, "vector": [5, 19, 22, 24, 35, 83, 91], "vendor_id_raw": 59, "venv": 75, "verbos": [1, 24, 26, 30], "veri": [0, 20, 24, 35, 66, 89, 90], "verifi": [0, 1, 20, 24, 69, 80, 84, 90], "versa": [84, 90], "version": [0, 17, 20, 21, 24, 34, 35, 44, 56, 59, 62, 68, 73, 75, 76, 77, 79, 80], "version_info": [21, 34], "versionad": [24, 35], "versu": [24, 27, 84], "vertic": [24, 39, 48, 49, 96], "verticl": [24, 49, 97], "via": [0, 1, 17, 20, 21, 22, 24, 34, 35, 37, 38, 53, 75, 76, 77, 84, 88, 91, 93, 94, 95, 100], "vice": [84, 90], "view": [4, 8, 21, 24, 34, 35, 62, 66, 71, 75, 81, 94], "violat": [24, 35], "virtual": 75, "visibl": [17, 18, 24, 25, 27, 37, 48, 53, 99], "visit": [73, 76, 77], "visual": [24, 41], "vm": 80, "vme": 59, "void": [24, 35], "voiddtyp": [24, 35], "vstack": [24, 39], "vsxrrl": [24, 38], "w": [17, 22, 24, 25, 31, 35, 37, 53, 55, 91, 100], "wa": [0, 17, 18, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 48, 49, 53, 55, 63, 68, 69, 75, 77, 84, 91, 94, 96], "wai": [18, 24, 35, 36, 42, 59, 63, 68, 73, 78, 87, 88, 89, 90, 94, 95, 100], "walk": [58, 60, 73], "want": [0, 1, 20, 21, 24, 34, 58, 73, 77, 79, 80, 90], "warmup": 59, "warn": [1, 5, 7, 10, 11, 24, 27, 30, 35, 53, 84, 100], "warn_on_python": [24, 35], "we": [0, 1, 3, 4, 20, 21, 24, 25, 27, 34, 35, 36, 37, 40, 42, 53, 54, 56, 58, 59, 60, 62, 64, 66, 67, 70, 75, 76, 77, 79, 80, 92, 94, 95], "web": [0, 62], "week": [24, 55, 91], "weekdai": [24, 55], "weekofyear": [24, 55], "weight": [20, 22, 24, 36, 42, 91, 95], "welcom": 0, "well": [19, 24, 35, 54, 59, 66, 79], "went": 99, "were": [3, 22, 24, 25, 27, 35, 37, 48, 53, 63, 78, 91, 96, 100], "wget": 76, "what": [0, 21, 24, 34, 35, 36, 39, 42, 48, 58, 62, 63, 64, 78, 99], "wheel": 75, "when": [0, 1, 3, 12, 17, 18, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 40, 48, 49, 51, 53, 54, 55, 56, 58, 59, 62, 63, 64, 66, 68, 70, 75, 77, 78, 79, 80, 84, 87, 88, 90, 91, 94, 96, 98], "whenev": [24, 35, 100], "where": [1, 3, 4, 8, 11, 12, 17, 18, 20, 22, 24, 25, 27, 28, 29, 35, 36, 37, 38, 40, 42, 47, 48, 53, 56, 58, 59, 60, 61, 68, 73, 76, 77, 83, 84, 89, 91, 92, 93, 94, 95, 96, 98, 99, 100], "wherea": 100, "wherev": 64, "whether": [5, 6, 11, 12, 14, 15, 16, 17, 20, 21, 22, 24, 25, 27, 29, 31, 34, 35, 37, 40, 48, 49, 53, 54, 55, 66, 84, 88, 96, 97, 98, 100], "which": [0, 3, 5, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 34, 35, 36, 37, 38, 39, 40, 42, 48, 49, 50, 53, 54, 55, 59, 61, 62, 64, 66, 75, 76, 77, 78, 82, 84, 86, 87, 88, 89, 90, 91, 94, 95, 96, 98, 99, 100], "whichev": 80, "whicn": [18, 99], "while": [3, 24, 27, 50, 58, 64, 68, 70, 75, 80, 84, 86], "whitespac": [21, 24, 27, 34, 35, 46, 53], "whl": 75, "who": [0, 76, 77], "whole": [24, 53, 62, 100], "whose": [5, 11, 20, 21, 24, 34, 35, 48, 49, 53, 97], "why": 58, "wide": [36, 42, 95, 100], "width": [19, 24, 35, 100], "wiki": [0, 24, 35, 44], "wikipedia": [24, 35, 44], "window": [24, 29, 47, 73, 81], "wise": [7, 17, 24, 35, 37, 39, 83], "wish": 78, "within": [5, 11, 17, 18, 20, 22, 23, 24, 25, 27, 35, 36, 37, 38, 42, 48, 53, 59, 68, 70, 89, 90, 91, 95, 96], "without": [5, 17, 24, 27, 35, 36, 37, 42, 64, 75, 84, 90, 95], "won": 64, "word": [3, 24, 36, 42, 95], "work": [0, 17, 20, 24, 27, 37, 40, 43, 53, 63, 66, 68, 70, 76, 77, 78, 84, 88, 90, 93, 98, 100], "workflow": [0, 24, 27, 56, 62, 78, 84], "workhors": 91, "world": [24, 36, 42, 53, 84, 95, 100], "worri": 63, "wors": 63, "would": [12, 24, 35, 56, 60, 64, 69, 84, 87, 91], "wrap": 58, "wraparound": 59, "wrapper": [4, 5, 7, 8, 19, 21, 24, 34, 35, 54, 94], "writ": 70, "write": [1, 4, 8, 17, 20, 24, 25, 27, 28, 30, 35, 37, 48, 49, 53, 58, 59, 62, 67, 84], "write_fil": [24, 27, 84], "write_line_to_fil": 28, "write_log": [24, 30], "writeln": 0, "written": [17, 20, 22, 24, 25, 27, 28, 30, 35, 37, 48, 49, 53, 58, 67, 68, 69, 70, 71, 75, 84, 91, 94], "wrong": [24, 27, 99], "wrote": 0, "wsl": [75, 80], "wsl2": [59, 81], "wslconfig": 80, "wt": [20, 24, 49], "www": [24, 35], "x": [0, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24, 27, 34, 35, 36, 37, 41, 42, 44, 45, 46, 48, 53, 56, 58, 66, 80, 84, 87, 88, 90, 91, 94, 95, 96, 100], "x00": [21, 24, 34, 35], "x00b": [21, 24, 34, 35], "x00c": [21, 24, 34, 35], "x1": [7, 10, 12, 24, 35], "x2": [7, 10, 12, 24, 35], "x410": 80, "x61": [24, 35], "x62": [24, 35], "x63": [24, 35], "x64": [24, 35], "x86": 76, "x86_64": [21, 24, 34, 35, 59, 76, 80], "x_edg": [24, 35], "xgetbv1": 59, "xlabel": [24, 41], "xlogi": [24, 45], "xor": [7, 20, 22, 24, 37, 48, 83, 91], "xore": [24, 35], "xsave": 59, "xsavec": 59, "xsaveopt": 59, "xserver": 80, "xtol": 46, "xtopologi": 59, "xvf": 76, "xy": 5, "xzf": [73, 77], "y": [21, 24, 34, 35, 37, 41, 44, 45, 46, 58, 60, 76], "y_edg": [24, 35], "yaml": 79, "yaml_fil": 79, "ye": 60, "year": [24, 55], "yet": [3, 5, 7, 10, 24, 48, 75, 84], "yield": [1, 17, 20, 24, 25, 27, 35, 37, 48, 53, 90, 93], "yml": [73, 76, 77, 79], "you": [0, 1, 17, 19, 20, 21, 22, 24, 25, 27, 34, 35, 37, 48, 49, 53, 55, 58, 59, 60, 62, 63, 64, 65, 66, 68, 69, 73, 75, 76, 77, 78, 79, 80, 81, 90, 91, 93], "your": [0, 1, 20, 24, 25, 27, 35, 37, 53, 60, 61, 62, 64, 65, 73, 75, 76, 77, 78, 79, 80, 81, 90, 99, 100], "your_fork": [76, 77], "your_machin": 73, "yum": 76, "yyyi": 62, "z": [24, 35], "zarr": [4, 8, 24, 27], "zarrai": [24, 27], "zarrmsg": [24, 27], "zero": [5, 12, 21, 22, 24, 34, 35, 37, 38, 46, 51, 52, 62, 83, 89, 91, 93, 94], "zero_up": [3, 24], "zerodivisionerror": [24, 37, 38, 89], "zeromq": [75, 79], "zeros_lik": [5, 24, 38, 83, 89], "zig": [36, 42, 95], "ziggurat": [36, 42, 95], "zip": 73, "zmq": [1, 75], "zmqchannel": [18, 99], "zone": [24, 55], "zsh": 77, "zshrc": 77, "zstd": [17, 20, 24, 25, 27, 37, 48, 53, 59, 70], "\u00b2": [24, 53]}, "titles": ["Contributing", "Environment Variables", "arkouda.accessor", "arkouda.alignment", "arkouda.array_api.array_object", "arkouda.array_api.creation_functions", "arkouda.array_api.data_type_functions", "arkouda.array_api.elementwise_functions", "arkouda.array_api", "arkouda.array_api.indexing_functions", "arkouda.array_api.linalg", "arkouda.array_api.manipulation_functions", "arkouda.array_api.searching_functions", "arkouda.array_api.set_functions", "arkouda.array_api.sorting_functions", "arkouda.array_api.statistical_functions", "arkouda.array_api.utility_functions", "arkouda.categorical", "arkouda.client", "arkouda.client_dtypes", "arkouda.dataframe", "arkouda.dtypes", "arkouda.groupbyclass", "arkouda.history", "arkouda", "arkouda.index", "arkouda.infoclass", "arkouda.io", "arkouda.io_util", "arkouda.join", "arkouda.logger", "arkouda.match", "arkouda.matcher", "arkouda.numeric", "arkouda.numpy.dtypes", "arkouda.numpy", "arkouda.numpy.random", "arkouda.pdarrayclass", "arkouda.pdarraycreation", "arkouda.pdarraymanipulation", "arkouda.pdarraysetops", "arkouda.plotting", "arkouda.random", "arkouda.row", "arkouda.scipy", "arkouda.scipy.special", "arkouda.scipy.stats", "arkouda.security", "arkouda.segarray", "arkouda.series", "arkouda.sorting", "arkouda.sparrayclass", "arkouda.sparsematrix", "arkouda.strings", "arkouda.testing", "arkouda.timeclass", "arkouda.util", "API Reference", "Adding Your First Feature", "PyTest Benchmarks", "GASNet Development", "Reducing Memory Usage of Arkouda Builds", "Release Process", "Speeding up Arkouda Compilation", "Tips for Reproducing User Bugs", "Developer Documentation", "Examples", "CSV", "HDF5", "Import/Export", "Parquet", "File I/O", "Arkouda Documentation", "Quickstart", "Chapel API Reference", "Building the Server", "Linux", "MacOS", "Modular Server Builds", "Requirements", "Windows (WSL2)", "Installation", "Performance Testing", "Usage Guide", "Data I/O", "Indexs in Arkouda", "Sorting", "Arithmetic and Numeric Operations", "Categoricals", "Creating Arrays", "DataFrames in Arkouda", "GroupBy", "Summarizing Data", "Indexing and Assignment", "The pdarray class", "Random in Arkouda", "SegArrays in Arkouda", "Series in Arkouda", "Array Set Operations", "Startup", "Strings in Arkouda"], "titleterms": {"3": [73, 99], "The": [59, 94], "access": 96, "accessor": 2, "ad": [0, 1, 58, 78], "align": 3, "all": 75, "alwai": 63, "an": 78, "anaconda": [76, 77, 79], "api": [57, 67, 68, 69, 70, 71, 74], "append": [90, 96], "argsort": [82, 85], "argument": [59, 82], "arithmet": 87, "arkouda": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 61, 63, 66, 67, 68, 70, 72, 73, 75, 76, 77, 78, 85, 90, 95, 96, 97, 99, 100], "arrai": [66, 89, 96, 98], "array_api": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "array_object": 4, "arrow": 75, "assign": 93, "attribut": [4, 24, 26, 35, 47, 48, 68], "basic": 66, "benchmark": 59, "between": 84, "bug": [0, 64], "build": [60, 61, 63, 64, 75, 77, 78], "cast": 94, "categor": [17, 68, 70, 88], "chang": 85, "chapel": [0, 1, 60, 74, 75, 76, 77], "choic": 95, "class": [2, 4, 6, 8, 13, 17, 19, 20, 21, 22, 23, 24, 25, 30, 31, 32, 34, 35, 36, 37, 42, 43, 44, 46, 48, 49, 51, 53, 55, 94], "client": [1, 18, 58, 73, 84, 99], "client_dtyp": 19, "clone": [76, 77], "code": 0, "column": 90, "compil": [1, 63], "compress": 70, "concat": 85, "concaten": [89, 90], "conda": 75, "configur": [60, 68, 75, 78], "connect": [73, 99], "constant": 89, "construct": 88, "content": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "contribut": 0, "convent": 0, "copi": 90, "core": 0, "count": [92, 97], "creat": [66, 89], "creation": [66, 95], "creation_funct": 5, "csv": 67, "custom": 78, "data": [67, 68, 70, 84, 90, 92, 94], "data_type_funct": 6, "datafram": [20, 66, 67, 68, 70, 90], "dataset": 84, "dedupl": [90, 96], "depend": [1, 73, 75, 79], "descript": 92, "develop": [0, 60, 65, 79], "diff": 62, "differ": 96, "directori": 1, "disconnect": 73, "disk": 84, "distribut": [68, 75], "document": [65, 72, 75], "drop": 90, "dtype": [21, 34, 85], "effici": 64, "element": [87, 96], "elementwise_funct": 7, "environ": [1, 60, 63, 75, 76, 77], "exampl": [58, 66, 67], "except": [3, 24, 37], "exponenti": 95, "export": [66, 69, 71, 84], "express": 100, "featur": [0, 58, 85, 90, 95, 97], "file": [59, 67, 68, 71, 78, 84], "filter": 90, "first": 58, "flag": 1, "flatten": 100, "format": [67, 71, 84], "from": [1, 77, 84], "full": [59, 64], "function": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 26, 27, 28, 29, 30, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 47, 48, 50, 51, 52, 54, 55, 56, 58, 71, 87], "gasnet": 60, "gather": [82, 93], "gener": [62, 71], "get": 75, "git": 62, "groupbi": [66, 68, 90, 91], "groupbyclass": 22, "guid": [81, 83], "hdf5": 68, "head": [90, 97], "header": 67, "histogram": 92, "histori": 23, "homebrew": 77, "i": [71, 84, 100], "import": [66, 69, 71, 84], "index": [25, 67, 68, 70, 85, 90, 93], "indexing_funct": 9, "individu": 75, "infoclass": 26, "instal": [73, 75, 76, 77, 79, 81], "instruct": 62, "integ": [93, 95], "integr": 97, "interact": 66, "interfac": 58, "intersect": 96, "io": 27, "io_util": 28, "issu": 0, "iter": [88, 90, 94, 96, 100], "join": [29, 100], "json": 59, "l": 71, "larg": 84, "launch": [73, 99], "legaci": 68, "linalg": 10, "lint": 0, "linux": 76, "list": 79, "log": 62, "logger": 30, "logic": 93, "logist": 95, "lognorm": 95, "lookup": [85, 97], "maco": 77, "makefil": 1, "manipulation_funct": 11, "manual": 75, "map": 66, "match": [31, 100], "matcher": 32, "memori": 61, "merg": 0, "metadata": 68, "method": [96, 100], "mode": [68, 70], "modul": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56, 78], "modular": [63, 75, 78], "name": [82, 94], "new": 78, "next": [76, 77], "ngram": 96, "normal": 95, "note": 62, "numer": [33, 87], "numpi": [34, 35, 36], "o": [71, 84, 100], "object": [66, 100], "onli": 0, "oper": [66, 87, 88, 94, 96, 98, 100], "output": 59, "outsid": 1, "overview": 81, "packag": [8, 21, 24, 42, 54, 75], "panda": [66, 97], "parquet": 70, "path": 1, "pdarrai": [66, 67, 68, 70, 93, 94], "pdarrayclass": 37, "pdarraycr": 38, "pdarraymanipul": 39, "pdarraysetop": 40, "perform": [82, 96, 100], "permut": [90, 95], "pip": [75, 79], "plot": 41, "poisson": 95, "posit": 82, "prefix": 96, "prepend": 96, "preprocess": 84, "process": [0, 62, 78], "pull": 0, "py": 75, "pytest": 59, "python": [0, 1, 58, 66, 73, 76, 77, 79, 99], "python3": 0, "quickstart": 73, "random": [36, 42, 89, 95], "rank": 94, "read": [59, 71, 84], "recommend": [75, 77], "reduc": [61, 82], "reduct": 87, "refer": [57, 67, 68, 69, 70, 74], "regular": [89, 100], "releas": [0, 62], "renam": 90, "report": 0, "repositori": [76, 77], "reproduc": 64, "request": 0, "requir": [79, 81], "reset": 90, "reshap": 94, "review": 0, "rhel": 76, "row": 43, "run": [0, 1, 59, 60, 78], "save": [64, 78], "scalar": 87, "scan": [82, 87], "scatter": [82, 93], "schema": 68, "scipi": [44, 45, 46], "search": 100, "searching_funct": 12, "secur": 47, "segarrai": [48, 68, 70, 96], "seri": [49, 97], "server": [58, 73, 75, 78, 84, 99], "set": [63, 66, 96, 98], "set_funct": 13, "setop": 96, "shuffl": 95, "shutdown": 73, "singl": 59, "size": 96, "slice": 93, "sort": [50, 86, 90, 97], "sorting_funct": 14, "sourc": 77, "sparrayclass": 51, "sparsematrix": 52, "special": 45, "specif": [79, 96, 100], "specifi": 78, "speed": 63, "split": 100, "src": 1, "standard_exponenti": 95, "standard_norm": 95, "start": 75, "startup": 99, "stat": 46, "statist": 92, "statistical_funct": 15, "step": [62, 76, 77], "stream": 82, "string": [53, 67, 68, 70, 100], "sub": 96, "submodul": [8, 24, 35, 44], "subpackag": 24, "substr": 100, "suffix": 96, "suit": 59, "summar": 92, "support": [67, 68, 70, 71, 84], "symmetr": 96, "system": 63, "tail": [90, 97], "team": 0, "test": [0, 1, 54, 59, 82], "timeclass": 55, "tip": 64, "troubleshoot": 75, "type": [67, 68, 70, 90, 94], "ubuntu": 76, "uniform": 95, "union": 96, "up": 63, "updat": [77, 79], "us": [63, 66, 73, 75, 78, 79], "usag": [61, 83], "user": 64, "util": 56, "utility_funct": 16, "valu": [92, 97], "variabl": [1, 63], "vector": 87, "where": 87, "window": 80, "wise": 87, "without": 67, "write": [0, 68, 70, 71], "wsl2": 80, "your": 58}}) \ No newline at end of file diff --git a/server/_sources/modules/__w/arkouda/arkouda/src/SparseMatrix.rst.txt b/server/_sources/modules/__w/arkouda/arkouda/src/SparseMatrix.rst.txt index 4b2d8728d..ab5828cb6 100644 --- a/server/_sources/modules/__w/arkouda/arkouda/src/SparseMatrix.rst.txt +++ b/server/_sources/modules/__w/arkouda/arkouda/src/SparseMatrix.rst.txt @@ -62,3 +62,5 @@ or .. function:: proc randSparseMatrix(shape: 2*(int), density, param layout, type eltType) +.. function:: proc sparseMatFromArrays(rows, cols, vals, shape: 2*(int), param layout, type eltType) throws + diff --git a/server/genindex.html b/server/genindex.html index 56d75d0ee..ea14f74fc 100644 --- a/server/genindex.html +++ b/server/genindex.html @@ -2195,6 +2195,8 @@

      S

  • sparseMatDat (record in SpsMatUtil) +
  • +
  • sparseMatFromArrays() (in module SparseMatrix)
  • sparseMatMatMult() (in module SparseMatrix), [1], [2]
  • diff --git a/server/modules/__w/arkouda/arkouda/src/SparseMatrix.html b/server/modules/__w/arkouda/arkouda/src/SparseMatrix.html index baaebe9bc..96308d096 100644 --- a/server/modules/__w/arkouda/arkouda/src/SparseMatrix.html +++ b/server/modules/__w/arkouda/arkouda/src/SparseMatrix.html @@ -216,6 +216,11 @@ proc randSparseMatrix(shape: 2*(int), density, param layout, type eltType)
    +
    +
    +proc sparseMatFromArrays(rows, cols, vals, shape: 2*(int), param layout, type eltType) throws
    +
    + diff --git a/server/objects.inv b/server/objects.inv index dc25ae9b1..c13a833b0 100644 Binary files a/server/objects.inv and b/server/objects.inv differ diff --git a/server/searchindex.js b/server/searchindex.js index 3d7ee8ce5..555de1ba9 100644 --- a/server/searchindex.js +++ b/server/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["index", "modules/__w/arkouda/arkouda/src/AryUtil", "modules/__w/arkouda/arkouda/src/BigIntMsg", "modules/__w/arkouda/arkouda/src/Cast", "modules/__w/arkouda/arkouda/src/CommAggregation", "modules/__w/arkouda/arkouda/src/CommAggregation/BigIntegerAggregation", "modules/__w/arkouda/arkouda/src/CommPrimitives", "modules/__w/arkouda/arkouda/src/CommandMap", "modules/__w/arkouda/arkouda/src/ExternalIntegration", "modules/__w/arkouda/arkouda/src/FileIO", "modules/__w/arkouda/arkouda/src/GenSymIO", "modules/__w/arkouda/arkouda/src/IOUtils", "modules/__w/arkouda/arkouda/src/In1d", "modules/__w/arkouda/arkouda/src/Logging", "modules/__w/arkouda/arkouda/src/MemoryMgmt", "modules/__w/arkouda/arkouda/src/Message", "modules/__w/arkouda/arkouda/src/MetricsMsg", "modules/__w/arkouda/arkouda/src/MsgProcessing", "modules/__w/arkouda/arkouda/src/MultiTypeRegEntry", "modules/__w/arkouda/arkouda/src/MultiTypeSymEntry", "modules/__w/arkouda/arkouda/src/MultiTypeSymbolTable", "modules/__w/arkouda/arkouda/src/NumPyDType", "modules/__w/arkouda/arkouda/src/RadixSortLSD", "modules/__w/arkouda/arkouda/src/Registry", "modules/__w/arkouda/arkouda/src/Security", "modules/__w/arkouda/arkouda/src/SegStringSort", "modules/__w/arkouda/arkouda/src/SegmentedComputation", "modules/__w/arkouda/arkouda/src/SegmentedString", "modules/__w/arkouda/arkouda/src/ServerConfig", "modules/__w/arkouda/arkouda/src/ServerDaemon", "modules/__w/arkouda/arkouda/src/ServerErrorStrings", "modules/__w/arkouda/arkouda/src/ServerErrors", "modules/__w/arkouda/arkouda/src/SipHash", "modules/__w/arkouda/arkouda/src/SparseMatrix", "modules/__w/arkouda/arkouda/src/SparseMatrix/SpsMatUtil", "modules/__w/arkouda/arkouda/src/StatusMsg", "modules/__w/arkouda/arkouda/src/SymArrayDmap", "modules/__w/arkouda/arkouda/src/Unique", "modules/__w/arkouda/arkouda/src/arkouda_server", "modules/__w/arkouda/arkouda/src/compat/ge-22/ArkoudaSortCompat", "modules/__w/arkouda/arkouda/src/compat/ge-22/ArkoudaSparseMatrixCompat"], "filenames": ["index.rst", "modules/__w/arkouda/arkouda/src/AryUtil.rst", "modules/__w/arkouda/arkouda/src/BigIntMsg.rst", "modules/__w/arkouda/arkouda/src/Cast.rst", "modules/__w/arkouda/arkouda/src/CommAggregation.rst", "modules/__w/arkouda/arkouda/src/CommAggregation/BigIntegerAggregation.rst", "modules/__w/arkouda/arkouda/src/CommPrimitives.rst", "modules/__w/arkouda/arkouda/src/CommandMap.rst", "modules/__w/arkouda/arkouda/src/ExternalIntegration.rst", "modules/__w/arkouda/arkouda/src/FileIO.rst", "modules/__w/arkouda/arkouda/src/GenSymIO.rst", "modules/__w/arkouda/arkouda/src/IOUtils.rst", "modules/__w/arkouda/arkouda/src/In1d.rst", "modules/__w/arkouda/arkouda/src/Logging.rst", "modules/__w/arkouda/arkouda/src/MemoryMgmt.rst", "modules/__w/arkouda/arkouda/src/Message.rst", "modules/__w/arkouda/arkouda/src/MetricsMsg.rst", "modules/__w/arkouda/arkouda/src/MsgProcessing.rst", "modules/__w/arkouda/arkouda/src/MultiTypeRegEntry.rst", "modules/__w/arkouda/arkouda/src/MultiTypeSymEntry.rst", "modules/__w/arkouda/arkouda/src/MultiTypeSymbolTable.rst", "modules/__w/arkouda/arkouda/src/NumPyDType.rst", "modules/__w/arkouda/arkouda/src/RadixSortLSD.rst", "modules/__w/arkouda/arkouda/src/Registry.rst", "modules/__w/arkouda/arkouda/src/Security.rst", "modules/__w/arkouda/arkouda/src/SegStringSort.rst", "modules/__w/arkouda/arkouda/src/SegmentedComputation.rst", "modules/__w/arkouda/arkouda/src/SegmentedString.rst", "modules/__w/arkouda/arkouda/src/ServerConfig.rst", "modules/__w/arkouda/arkouda/src/ServerDaemon.rst", "modules/__w/arkouda/arkouda/src/ServerErrorStrings.rst", "modules/__w/arkouda/arkouda/src/ServerErrors.rst", "modules/__w/arkouda/arkouda/src/SipHash.rst", "modules/__w/arkouda/arkouda/src/SparseMatrix.rst", "modules/__w/arkouda/arkouda/src/SparseMatrix/SpsMatUtil.rst", "modules/__w/arkouda/arkouda/src/StatusMsg.rst", "modules/__w/arkouda/arkouda/src/SymArrayDmap.rst", "modules/__w/arkouda/arkouda/src/Unique.rst", "modules/__w/arkouda/arkouda/src/arkouda_server.rst", "modules/__w/arkouda/arkouda/src/compat/ge-22/ArkoudaSortCompat.rst", "modules/__w/arkouda/arkouda/src/compat/ge-22/ArkoudaSparseMatrixCompat.rst"], "titles": ["chpldoc documentation", "AryUtil", "BigIntMsg", "Cast", "CommAggregation", "BigIntegerAggregation", "CommPrimitives", "CommandMap", "ExternalIntegration", "FileIO", "GenSymIO", "IOUtils", "In1d", "Logging", "MemoryMgmt", "Message", "MetricsMsg", "MsgProcessing", "MultiTypeRegEntry", "MultiTypeSymEntry", "MultiTypeSymbolTable", "NumPyDType", "RadixSortLSD", "Registry", "Security", "SegStringSort", "SegmentedComputation", "SegmentedString", "ServerConfig", "ServerDaemon", "ServerErrorStrings", "ServerErrors", "SipHash", "SparseMatrix", "SpsMatUtil", "StatusMsg", "SymArrayDmap", "Unique", "arkouda_server", "ArkoudaSortCompat", "ArkoudaSparseMatrixCompat"], "terms": {"content": [0, 1, 7], "aryutil": 0, "bigintmsg": 0, "cast": [0, 10, 19], "commaggreg": [0, 5], "bigintegeraggreg": [0, 4], "commprimit": 0, "commandmap": [0, 17, 29], "externalintegr": 0, "fileio": 0, "gensymio": 0, "ioutil": 0, "in1d": [0, 27], "log": [0, 28], "memorymgmt": 0, "messag": [0, 1, 13, 17, 20, 28, 29, 31], "metricsmsg": 0, "msgprocess": 0, "multityperegentri": 0, "multitypesymentri": 0, "multitypesymbolt": 0, "numpydtyp": [0, 15], "radixsortlsd": 0, "registri": [0, 20], "secur": 0, "segstringsort": 0, "segmentedcomput": 0, "segmentedstr": 0, "serverconfig": [0, 14, 16, 19], "serverdaemon": 0, "servererrorstr": 0, "servererror": 0, "siphash": [0, 27], "sparsematrix": [0, 34], "spsmatutil": [0, 33], "statusmsg": 0, "symarraydmap": 0, "uniqu": [0, 12], "arkouda_serv": [0, 8, 28, 29], "arkoudasortcompat": 0, "arkoudasparsematrixcompat": 0, "index": [0, 1, 9, 15, 20, 27, 28], "chapel": [0, 10, 11, 19, 21, 27, 28, 31], "modul": [0, 14, 29, 31], "search": [0, 17, 20], "page": 0, "usag": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40], "us": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40], "import": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40], "param": [1, 4, 10, 11, 14, 15, 17, 19, 21, 26, 27, 28, 30, 32, 33, 36, 37], "bitsperdigit": 1, "rslsd_bitsperdigit": [1, 28], "const": [1, 2, 3, 4, 5, 6, 8, 9, 10, 14, 16, 17, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 32, 33, 34, 35, 37, 38], "aulogg": 1, "new": [1, 2, 3, 4, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 31, 32, 34, 35, 37, 38], "logger": [1, 2, 3, 8, 9, 10, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 32, 35, 37, 38], "loglevel": [1, 2, 3, 8, 9, 10, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 32, 35, 37, 38], "logchannel": [1, 2, 8, 9, 10, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 32, 35, 37, 38], "var": [1, 4, 5, 7, 8, 13, 14, 15, 16, 18, 19, 20, 23, 27, 28, 29, 30, 31, 34], "printthresh": 1, "30": 1, "threshold": [1, 19, 20], "amount": [1, 28], "data": [1, 4, 10, 15, 17, 19, 20, 31, 37], "print": [1, 19, 20, 28], "arrai": [1, 9, 10, 11, 12, 15, 17, 18, 19, 20, 21, 22, 27, 28, 33, 36, 37], "larger": 1, "than": [1, 19, 20], "less": [1, 19, 20], "proc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "formatari": 1, "A": [1, 33], "d": [1, 17, 19, 25, 26, 27, 32, 33, 36], "string": [1, 2, 3, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35], "throw": [1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36, 37], "pass": [1, 19, 20, 27, 31], "argument": [1, 11, 12, 15, 17, 19, 20, 21, 27, 29, 30, 31, 36, 37], "name": [1, 9, 10, 15, 16, 17, 18, 19, 20, 23, 27, 28, 29, 30, 31], "printari": 1, "printownership": 1, "x": [1, 5, 27, 32, 34], "1": [1, 7, 9, 15, 16, 19, 27, 28, 29, 31, 36], "18": 1, "version": [1, 16, 27, 28], "out": [1, 8, 20, 27], "localsubdomain": 1, "issort": [1, 27], "t": [1, 10, 11, 12, 15, 17, 19, 20, 21, 22, 26, 27, 30, 32, 36], "bool": [1, 3, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 27, 28, 29, 37], "determin": [1, 9, 19, 27, 28, 31], "i": [1, 4, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 19, 20, 23, 25, 27, 28, 29, 30, 31, 32], "sort": [1, 12, 22, 27, 28, 37], "check": [1, 9, 12, 14, 19, 20, 23, 27, 28], "issortedov": 1, "slice": [1, 27], "axisidx": 1, "int": [1, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37], "along": [1, 9, 37], "given": [1, 10, 11, 15, 20, 27], "axi": 1, "within": [1, 8, 14, 28, 29], "domain": [1, 9, 12, 19, 20, 25, 27, 36, 37], "onli": [1, 4, 10, 12, 15, 17, 19, 27, 31], "indic": [1, 9, 14, 15, 17, 20, 27, 28, 29, 33], "thi": [1, 7, 10, 14, 15, 16, 19, 20, 27, 28, 29, 30], "ar": [1, 4, 9, 13, 15, 16, 17, 19, 21, 23, 27, 29, 31, 37], "validatenegativeax": 1, "ax": 1, "nd": [1, 20, 30], "modifi": 1, "an": [1, 8, 9, 11, 15, 16, 17, 19, 20, 21, 23, 27, 28, 29, 31, 36], "potenti": 1, "neg": [1, 15], "posit": [1, 15], "rang": [1, 27, 37], "number": [1, 9, 15, 16, 19, 27, 28, 31, 37], "dimens": [1, 17, 19, 20, 36], "while": 1, "confirm": 1, "valid": 1, "convert": [1, 10, 17, 20, 21, 29], "where": [1, 4, 10, 13, 15, 17, 19, 21, 27, 28, 31, 32, 33, 36], "return": [1, 7, 9, 10, 12, 14, 15, 16, 17, 19, 20, 21, 22, 27, 28, 29, 30, 31, 36, 37], "tupl": [1, 9, 15, 19, 37], "boolean": [1, 12, 14, 20, 27, 29], "whether": [1, 9, 14, 20, 27, 28, 29], "domonaxi": 1, "idx": [1, 9, 18, 27, 34], "rank": [1, 19, 36], "na": 1, "get": [1, 4, 7, 15, 16, 17, 20, 28], "select": 1, "th": 1, "set": [1, 7, 12, 13, 15, 16, 17, 18, 19, 27, 28, 29], "specifi": [1, 8, 10, 19, 20, 31, 36], "must": [1, 15, 27, 29], "have": [1, 10, 19], "same": [1, 27], "subset": [1, 21], "For": [1, 10, 12, 17, 19, 27], "exampl": [1, 17, 19, 37], "repres": [1, 9, 19, 27], "stack": 1, "1000": 1, "10x10": 1, "matric": [1, 19], "ex": 1, "10": [1, 28], "Then": 1, "25": 1, "0": [1, 4, 5, 8, 10, 16, 17, 19, 20, 22, 27, 28, 29, 32, 34], "e": [1, 27], "25th": 1, "matrix": [1, 33], "ad": [1, 19, 22, 25, 37], "ref": [1, 3, 4, 5, 6, 7, 10, 12, 15, 25, 26, 27, 32, 33, 34], "list": [1, 9, 10, 15, 17, 18, 20, 23, 27, 29, 38], "domoffaxi": 1, "over": [1, 12, 27, 28, 36], "orthogon": 1, "iter": [1, 4, 15, 16, 20], "axisslic": 1, "all": [1, 13, 14, 15, 16, 17, 19, 20, 27, 29, 37], "tag": 1, "iterkind": 1, "standalon": 1, "n": [1, 9, 10, 11, 19, 20, 27, 29, 31, 36], "subdomchunk": 1, "dom": [1, 19, 36], "chunkidx": 1, "nchunk": 1, "creat": [1, 4, 8, 10, 13, 15, 17, 19, 20, 29], "chunk": [1, 17], "input": [1, 11, 19, 27], "split": [1, 27], "0th": 1, "roughli": 1, "equal": [1, 19, 20, 27], "size": [1, 4, 11, 12, 15, 16, 17, 19, 20, 21, 22, 27, 36, 37], "take": [1, 17, 20, 21, 27], "greater": [1, 19, 20], "first": [1, 12, 15, 17, 19, 20, 27], "empti": [1, 27], "last": [1, 19, 20], "contain": [1, 10, 12, 15, 17, 19, 20, 23, 27, 37], "entir": [1, 20, 27], "reducedshap": 1, "shape": [1, 10, 19, 20, 33, 36], "make": [1, 19, 29, 36], "degener": 1, "astat": 1, "real": [1, 14, 15, 16, 17, 21, 29, 32, 34, 37], "stat": 1, "form": [1, 10, 20], "produc": 1, "statist": 1, "a_min": 1, "a_max": 1, "a_mean": 1, "a_vari": 1, "a_stddevi": 1, "filluniform": 1, "seed": [1, 34], "241": 1, "concatarrai": 1, "b": [1, 9, 15, 21, 32, 33], "bd": 1, "order": [1, 16, 33], "true": [1, 10, 13, 14, 15, 22, 27, 28, 29, 37], "concaten": 1, "2": [1, 19, 25, 27, 28, 29, 32, 33, 34, 36], "result": [1, 12, 21, 27], "offset": [1, 10, 19, 25, 27], "ind": [1, 25], "israng": 1, "isdomain": 1, "manner": 1, "base": [1, 8, 9, 19, 28, 29, 37], "local": [1, 4, 8, 9, 12, 14, 16, 17, 28, 29, 31, 33], "id": [1, 16], "can": [1, 10, 19, 20, 21, 27, 28, 31], "avoid": [1, 19], "do": [1, 16, 19, 29, 32], "commun": 1, "lockstep": 1, "contiguousindic": 1, "map": [1, 7, 9, 10, 12, 16, 17, 18, 20, 23, 36], "contigu": [1, 27], "memori": [1, 4, 14, 17, 27, 28, 31], "validatearrayssamelength": 1, "type": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 20, 21, 26, 27, 28, 29, 30, 31, 33, 34, 36], "st": [1, 2, 3, 7, 9, 10, 15, 16, 17, 18, 20, 27, 29, 35], "borrow": [1, 2, 3, 7, 9, 10, 15, 16, 17, 18, 19, 20, 27, 35], "symtab": [1, 2, 3, 7, 9, 10, 16, 17, 18, 20, 27, 29, 31, 35], "variabl": 1, "from": [1, 8, 9, 10, 11, 15, 17, 19, 20, 27, 29, 31, 33], "command": [1, 7, 8, 14, 15, 17, 28, 29, 31], "them": 1, "thei": [1, 17, 19], "exist": [1, 8, 13, 15, 16, 20], "length": [1, 18, 19, 20, 25, 27], "metadata": 1, "about": [1, 19], "arg": [1, 9, 10, 15, 17, 19, 20, 27, 29, 30], "field": [1, 15, 27], "deriv": [1, 13, 29], "symbol": [1, 15, 17, 19, 20, 23, 27, 30], "tabl": [1, 17, 19, 20, 27, 30], "hasstr": 1, "objtyp": [1, 10, 18, 28], "getbitwidth": 1, "uint": [1, 5, 10, 14, 15, 17, 19, 25, 27, 28, 29, 32], "ishomogeneoustupl": 1, "getdigit": 1, "kei": [1, 15, 18, 22, 28], "rshift": 1, "_tupl": 1, "getnumdigitsnumericarrai": 1, "mergenumericarrai": 1, "numdigit": 1, "totaldigit": 1, "bitwidth": 1, "record": [1, 4, 5, 14, 15, 16, 22, 25, 34], "lowlevellocalizingslic": 1, "meant": 1, "low": [1, 22, 25, 27], "level": [1, 12, 13, 28], "altern": [1, 27], "assign": [1, 19], "better": [1, 20], "perform": [1, 20], "fewer": 1, "alloc": [1, 14, 17, 19, 27, 28], "especi": 1, "when": [1, 4, 12, 15, 19, 28], "region": [1, 27], "being": [1, 9, 12, 28, 29, 31], "pointer": 1, "store": [1, 21, 27], "isown": 1, "fals": [1, 4, 10, 12, 14, 15, 22, 27, 28, 29, 37], "remot": [1, 4], "non": [1, 12, 29, 33], "copi": [1, 4, 5], "buffer": [1, 4], "ptr": 1, "c_ptr": [1, 4, 5, 6], "nil": 1, "we": [1, 10, 19, 21, 28], "own": [1, 13, 16, 20, 27, 29], "init": [1, 8, 13, 15, 16, 18, 19, 27, 29, 31], "deinit": [1, 4, 5, 19], "removedegenrank": 1, "remov": [1, 8, 19, 20, 27], "": [1, 3, 8, 15, 16, 19, 20, 21, 31, 37], "minu": 1, "halt": [1, 19], "condit": [1, 27], "isn": [1, 27], "met": 1, "see": [1, 14, 15, 20, 23], "also": [1, 21, 27, 37], "manipulationmsg": [1, 15], "squeezemsg": 1, "broadcastshap": 1, "sa": 1, "sb": 1, "nb": 1, "algorithm": [1, 37], "broadcast": [1, 12, 17], "pd": 1, "two": [1, 21, 27], "http": [1, 8], "api": [1, 21], "org": 1, "latest": 1, "api_specif": 1, "html": 1, "n1": 1, "n2": 1, "removeaxi": 1, "appendaxi": 1, "valu": [1, 3, 10, 12, 15, 16, 17, 18, 19, 20, 25, 26, 27, 32, 33, 34, 37], "unflatten": 1, "1d": [1, 19], "multi": 1, "dimension": [1, 28], "flatten": 1, "accumranks": 1, "indextoord": 1, "bilogg": 2, "bigintcreationmsg": 2, "cmd": [2, 7, 9, 10, 15, 16, 17, 29, 35], "msgarg": [2, 7, 9, 10, 16, 17, 35], "messagearg": [2, 7, 9, 10, 15, 16, 17, 29, 35], "msgtupl": [2, 3, 7, 9, 10, 15, 16, 17, 20, 29, 35], "biginttouintarraysmsg": 2, "getmaxbitsmsg": 2, "setmaxbitsmsg": 2, "castlogg": 3, "castgensymentrytostr": 3, "gse": [3, 19], "gensymentri": [3, 19, 20, 27], "fromtyp": 3, "enum": [3, 8, 9, 13, 14, 15, 16, 18, 19, 21, 26, 27, 28, 29, 34, 36], "errormod": 3, "strict": 3, "ignor": [3, 17], "return_valid": 3, "constant": [3, 8, 9, 13, 14, 15, 16, 18, 19, 21, 26, 27, 28, 29, 34, 36], "stringtonumericstrict": [3, 26], "rng": [3, 27], "totyp": [3, 10], "stringtonumericignor": [3, 26], "stringtonumericreturnvalid": [3, 26], "caststringtosymentri": 3, "segstr": [3, 10, 25, 27, 31, 37], "error": [3, 9, 13, 15, 20, 27, 28, 30, 31], "caststringtobigint": 3, "submodul": [4, 33], "newdstaggreg": 4, "elemtyp": 4, "useunorderedcopi": 4, "destin": 4, "aggreg": 4, "dst": [4, 5], "lh": 4, "newsrcaggreg": 4, "sourc": 4, "src": [4, 5], "rh": 4, "dstaggreg": 4, "optim": 4, "Not": 4, "parallel": [4, 12], "safe": 4, "expect": 4, "per": [4, 12, 27, 28], "task": [4, 22, 25], "basi": 4, "high": [4, 12, 22, 25, 27], "sinc": [4, 19], "aggtyp": [4, 5], "buffers": [4, 5], "dstbuffsiz": [4, 5], "mylocalespac": [4, 5], "numlocal": [4, 5, 16], "lastlocal": [4, 5], "opsuntilyield": [4, 5], "yieldfrequ": [4, 5], "lbuffer": [4, 5], "rbuffer": [4, 5], "remotebuff": [4, 5], "bufferidx": [4, 5], "postinit": [4, 5], "flush": [4, 5], "srcval": 4, "flushbuff": [4, 5], "loc": [4, 5, 16, 22, 25], "freedata": [4, 5], "dstunorderedaggreg": 4, "unord": 4, "instead": [4, 19, 27], "actual": [4, 19], "srcaggreg": 4, "work": [4, 10, 27], "srcbuffsiz": [4, 5], "dstaddr": [4, 5], "lsrcaddr": [4, 5], "lsrcval": [4, 5], "rsrcaddr": [4, 5], "rsrcval": [4, 5], "srcunorderedaggreg": 4, "cachedalloc": 4, "localit": 4, "localfre": 4, "markfre": 4, "put": [4, 8, 12], "larr": 4, "isdefaultrectangular": [4, 19, 36], "bufferidxalloc": 4, "bigint": [5, 10, 15, 19, 21], "serializeds": 5, "serializeinto": 5, "8": [5, 10, 15, 17, 19, 20, 25, 27, 28, 32], "deserializefrom": 5, "dstaggregatorbigint": 5, "c_sizeof": 5, "mp_size_t": 5, "mp_limb_t": 5, "srcaggregatorbigint": 5, "uintbuffers": 5, "getaddr": 6, "p": [6, 15], "akmsgsign": 7, "dummi": [7, 19], "function": [7, 11, 16, 17, 19, 20, 26, 27, 29, 31], "signatur": [7, 17, 29], "arkouda": [7, 8, 13, 14, 15, 28, 29, 31, 38], "server": [7, 10, 15, 16, 17, 19, 28, 29, 31], "fcf": 7, "ideal": 7, "func": 7, "would": [7, 28], "abl": [7, 19], "construct": [7, 28], "wai": 7, "gener": [7, 9, 15, 16, 17, 19, 27, 29, 30, 31, 34], "todai": 7, "f": 7, "modulemap": 7, "usedmodul": 7, "registerfunct": 7, "modnam": 7, "line": [7, 9, 13, 29, 31], "regist": [7, 8, 20, 28, 29], "bind": [7, 37], "its": [7, 19, 27], "correspond": [7, 14, 15, 16, 27, 29, 31], "match": [7, 9, 15, 17, 20, 21, 27, 28, 29, 31], "standard": [7, 17, 28, 29], "writeusedmodulesjson": 7, "mod": 7, "writeusedmodul": 7, "fmt": 7, "cfg": [7, 28, 29], "dumpcommandmap": 7, "dump": [7, 20], "combin": [7, 34], "singl": [7, 19, 32], "json": [7, 8, 10, 11, 15, 17, 19, 20, 28, 29], "encod": [7, 17], "executecommand": 7, "eilogg": 8, "curlopt_verbos": 8, "curlopt": 8, "libcurl": 8, "c": [8, 10], "requir": [8, 10, 29, 31], "configur": [8, 13, 17, 19, 29, 31, 38], "curl": 8, "core": 8, "httpchannel": 8, "object": [8, 10, 13, 15, 19, 20, 27, 29, 31, 38], "curlopt_usernam": 8, "curlopt_password": 8, "curlopt_use_ssl": 8, "curlopt_sslcert": 8, "curlopt_sslkei": 8, "curlopt_keypasswd": 8, "curlopt_sslcerttyp": 8, "curlopt_capath": 8, "curlopt_cainfo": 8, "curlopt_url": 8, "curlopt_httphead": 8, "curlopt_postfield": 8, "curlopt_customrequest": 8, "curlopt_failonerror": 8, "curlinfo_response_cod": 8, "curlopt_ssl_verifyp": 8, "systemtyp": 8, "kubernet": [8, 28, 29], "redi": 8, "consul": 8, "none": [8, 19], "extern": [8, 29], "system": [8, 16, 19, 29], "integr": [8, 29], "channeltyp": 8, "stdout": [8, 13], "file": [8, 9, 13, 28, 29, 31], "describ": 8, "channel": [8, 13, 28], "write": [8, 13, 28], "serviceendpoint": [8, 29], "arkouda_cli": 8, "metric": [8, 16, 29], "servic": 8, "endpoint": [8, 29], "client": [8, 15, 19, 28, 29, 30, 31], "socket": [8, 29], "httprequesttyp": 8, "post": 8, "patch": 8, "delet": [8, 17, 20, 29], "request": [8, 14, 15, 16, 17, 28, 29, 31], "via": [8, 29, 31], "httprequestformat": 8, "text": 8, "multipart": 8, "format": [8, 10, 11, 15, 17, 19, 20, 28, 31], "getconnecthostip": 8, "retriev": [8, 10, 19, 20, 27, 28, 29], "host": [8, 14, 31], "ip": 8, "address": 8, "process": [8, 14, 20, 28, 29, 37], "which": [8, 9, 10, 19, 21, 27, 28, 29, 31, 37], "cloud": [8, 28], "environ": [8, 28], "class": [8, 13, 15, 16, 18, 19, 20, 23, 27, 29, 30, 31, 34], "defin": [8, 13, 19, 20, 23, 27, 29], "interfac": [8, 13], "consist": [8, 19, 30], "method": [8, 13, 16, 17, 19, 20, 27, 31, 38], "payload": [8, 10, 15, 17], "filechannel": 8, "The": [8, 13, 14, 16, 17, 27, 29, 31, 38], "either": [8, 14, 28, 31], "append": [8, 9, 19, 27, 31], "overwrit": 8, "path": [8, 9], "overrid": [8, 13, 15, 16, 19, 29], "url": 8, "requesttyp": 8, "requestformat": 8, "configurechannel": 8, "generatehead": 8, "instanc": [8, 27, 29, 31], "attribut": [8, 20, 27], "httpschannel": 8, "cacert": 8, "token": [8, 15, 28, 29], "overridden": [8, 16, 29], "add": [8, 16, 19, 34], "tl": 8, "header": [8, 9], "registerwithkubernet": 8, "appnam": 8, "servicenam": 8, "serviceport": 8, "targetserviceport": 8, "deploi": [8, 28], "outsid": 8, "enabl": 8, "discoveri": 8, "applic": 8, "deregisterfromkubernet": 8, "compos": [8, 9, 15, 27], "access": [8, 31], "getkubernetesregistrationparamet": 8, "getkubernetesderegisterparamet": 8, "registerwithexternalsystem": 8, "startup": [8, 28, 29], "default": [8, 14, 16, 19, 21, 27, 28, 29], "deregisterfromexternalsystem": 8, "deregist": [8, 29], "upon": [8, 9, 29], "receipt": 8, "shutdown": [8, 29], "fiologg": 9, "filetyp": 9, "hdf5": [9, 31], "arrow": 9, "parquet": 9, "csv": 9, "unknown": [9, 19, 28], "appendfil": 9, "filepath": [9, 13], "writetofil": [9, 13], "writelinestofil": 9, "getlinefromfil": 9, "lineindex": 9, "delimitedfiletomap": 9, "delimit": [9, 15, 27, 29], "initdirectori": 9, "ensureclos": 9, "tmpf": 9, "ensur": 9, "close": [9, 29], "disregard": 9, "isglobpattern": 9, "filenam": 9, "glob": 9, "express": [9, 27], "oppos": 9, "specif": [9, 19], "generatefilenam": 9, "prefix": [9, 19, 27], "extens": 9, "targetlocaless": 9, "written": [9, 13], "provid": [9, 13, 15, 17, 20, 29, 31], "user": [9, 15, 16, 29, 31], "getmatchingfilenam": 9, "mode": [9, 31], "truncat": 9, "warn": [9, 13, 15, 27], "overwritten": 9, "getfilemetadata": 9, "magic_parquet": 9, "byte": [9, 10, 15, 20, 21, 27, 28], "par1": 9, "magic_hdf5": 9, "x89hdf": 9, "r": 9, "x1a": 9, "magic_arrow": 9, "arrow1": 9, "x00": 9, "magic_csv": 9, "getfiletypebymag": 9, "public": 9, "magic": 9, "support": [9, 19, 27, 28], "domain_intersect": 9, "d1": 9, "d2": 9, "getfirsteightbytesfromfil": 9, "getfiletyp": 9, "getfiletypemsg": 9, "lsanymsg": 9, "globexpansionmsg": 9, "gslogger": 10, "config": [10, 14, 22, 27, 28, 34, 36], "null_strings_valu": [10, 27], "array_dtyp": [10, 17], "array_nd": [10, 17], "pdarrai": [10, 19, 27, 28], "side": 10, "makearrayfrombyt": 10, "arraysegstr": 10, "segmentedcalcoffset": 10, "valuesdom": 10, "calcul": [10, 16], "find": [10, 12, 20, 27, 37], "null": [10, 27], "termin": [10, 27], "should": [10, 12, 19, 27, 28], "alreadi": [10, 20], "been": [10, 31], "uint8": [10, 21], "tondarrai": 10, "output": 10, "numpi": [10, 19, 21], "ndarrai": 10, "checkcast": 10, "util": [10, 19], "test": [10, 27], "wa": [10, 15, 27, 28, 31], "success": [10, 15], "otherwis": [10, 15, 19, 27, 28], "buildreadallmsgjson": 10, "rname": 10, "allowerror": 10, "fileerrorcount": 10, "fileerror": 10, "jsontomap": 10, "simpl": 10, "parser": 10, "allow": 10, "properli": 10, "THAT": 10, "doe": [10, 13, 15, 16, 27], "NOT": 10, "nest": 10, "formatjson": 11, "val": [11, 15, 16, 19, 28, 32, 33, 34], "jsontoarrai": 11, "deseri": [11, 15], "parsejson": [11, 20], "helper": [11, 19], "pars": [11, 15, 17, 31], "item": [11, 16, 20], "ar1": 12, "ad1": 12, "ar2": 12, "ad2": 12, "invert": [12, 27], "each": [12, 14, 15, 16, 19, 20, 27, 36, 37], "membership": [12, 27], "second": [12, 17, 27], "truth": [12, 37], "distribut": [12, 19, 22, 36], "in1dar2perlocassoc": 12, "associ": [12, 17], "so": [12, 19], "appropri": 12, "term": 12, "space": [12, 15, 27], "small": 12, "in1dsort": 12, "strategi": 12, "At": 12, "both": 12, "intersect": 12, "back": [12, 19, 29, 31], "origin": [12, 27, 31], "scale": 12, "well": [12, 27, 31], "time": [12, 27, 29, 37], "ha": [12, 19, 29, 31], "trivial": 12, "overhead": 12, "typic": 12, "larg": [12, 37], "debug": 13, "info": [13, 17, 20, 28], "critic": 13, "strongli": 13, "mean": [13, 28, 37], "consol": [13, 28], "outputhandl": 13, "variou": 13, "consoleoutputhandl": 13, "fileoutputhandl": 13, "getoutputhandl": 13, "factori": [13, 19, 27, 31], "implement": [13, 15, 27, 30, 31], "structur": 13, "sensit": 13, "analog": 13, "other": [13, 17, 19, 21, 27], "languag": 13, "python": [13, 15, 17, 19, 21, 27], "warnlevel": 13, "criticallevel": 13, "errorlevel": 13, "infolevel": 13, "printdat": 13, "try": [13, 16, 28, 29], "modulenam": [13, 31], "routinenam": [13, 31], "linenumb": [13, 31], "msg": [13, 15, 17, 30, 31, 32, 34], "generateerrormsg": 13, "generatelogmessag": 13, "generatedatetimestr": 13, "mmlogger": 14, "memmgmttyp": 14, "static": 14, "dynam": 14, "captur": [14, 27, 28], "estim": [14, 28, 37], "suffici": 14, "avail": [14, 29, 31, 36], "execut": [14, 17, 29, 31], "availablememorypct": 14, "90": [14, 28], "percentag": [14, 28], "current": [14, 28, 31], "limit": [14, 19, 28], "mgmt": 14, "logic": [14, 27, 29], "localememorystatu": 14, "total_mem": 14, "64": [14, 16, 17, 21, 32], "avail_mem": 14, "pct_avail_mem": 14, "arkouda_mem_alloc": 14, "mem_us": 14, "locale_id": 14, "locale_hostnam": [14, 16], "issupportedo": 14, "getarkoudapid": 14, "getarkoudamemalloc": 14, "getavailmemori": 14, "gettotalmemori": 14, "getlocalememorystatus": 14, "localememavail": 14, "reqmemori": 14, "ismemavail": 14, "If": [14, 15, 16, 27, 29], "exce": [14, 31], "least": [14, 22], "one": [14, 15, 19, 27], "more": [14, 19, 27], "insuffici": 14, "addit": 14, "msgtype": [15, 17], "normal": 15, "msgformat": 15, "binari": [15, 30], "encapsul": [15, 16, 29], "requestmsg": [15, 29], "state": [15, 19, 29, 34], "sent": 15, "newsymbol": 15, "sym": [15, 17, 19, 20], "abstractsymentri": [15, 19, 20], "fromrespons": 15, "respons": [15, 17, 29], "group": [15, 19, 27, 28], "multipl": [15, 19, 29], "unstack": 15, "ani": [15, 19, 27, 31], "fromscalar": 15, "scalar": 15, "serial": 15, "parameterobj": [15, 20], "paramet": [15, 19, 27, 29, 31], "note": [15, 16, 19, 27], "dure": [15, 28], "transit": [15, 19], "part": [15, 19], "onc": [15, 29], "dtype": [15, 16, 17, 19, 20, 21, 30], "setkei": 15, "setval": 15, "getdtyp": 15, "getvalu": 15, "raw": 15, "trygetscalar": 15, "toscalar": 15, "errorwithcontext": [15, 31], "cannot": [15, 31], "toscalartupl": 15, "element": [15, 17, 19, 20, 27, 31], "wrong": 15, "toscalarlist": 15, "toscalararrai": 15, "getscalarvalu": 15, "getintvalu": 15, "getpositiveintvalu": 15, "max": [15, 37], "rule": [15, 21], "getuintvalu": 15, "getuint8valu": 15, "getrealvalu": 15, "getboolvalu": 15, "getbigintvalu": 15, "getlist": 15, "gettupl": 15, "writeserializ": 15, "param_list": 15, "parsaf": 15, "addpayload": 15, "attach": 15, "writer": 15, "filewrit": 15, "identifi": 15, "keynotfound": 15, "getvalueof": 15, "parseparamet": 15, "individu": [15, 27], "compon": [15, 27], "parsemessagearg": 15, "json_str": 15, "follow": [15, 16, 21, 27, 29], "arg1": 15, "arg2": 15, "replymsg": 15, "repli": 15, "metriccategori": 16, "num_request": 16, "response_tim": 16, "avg_response_tim": 16, "total_response_tim": 16, "total_memory_us": 16, "server_info": 16, "num_error": 16, "metricscop": 16, "global": [16, 28], "metricdatatyp": 16, "mlogger": 16, "getenv": [16, 28], "metric_scop": 16, "servermetr": 16, "countert": 16, "requestmetr": 16, "avgresponsetimemetr": 16, "averagemeasurementt": 16, "responsetimemetr": 16, "measurementt": 16, "totalresponsetimemetr": 16, "totalmemoryusedmetr": 16, "usermetr": 16, "errormetr": 16, "getus": 16, "getusernam": 16, "metricvalu": 16, "realvalu": 16, "intvalu": 16, "datatyp": 16, "updat": 16, "avgmetricvalu": 16, "numvalu": 16, "inttot": 16, "realtot": 16, "keytyp": 16, "valtyp": 16, "share": [16, 18, 19, 20, 23, 27, 29], "getusermetr": 16, "incrementperuserrequestmetr": 16, "usernam": 16, "metricnam": 16, "increment": 16, "getperusernumrequestspercommandmetr": 16, "getperusernumrequestspercommandforallusersmetr": 16, "incrementnumrequestspercommand": 16, "incrementtotalnumrequest": 16, "measur": 16, "extend": 16, "averag": 16, "incom": [16, 29], "nummeasur": 16, "measurementtot": 16, "getnummeasur": 16, "getmeasurementtot": 16, "sum": 16, "design": 16, "invok": [16, 29, 38], "intern": [16, 19], "avg": 16, "run": [16, 28, 29, 38], "total": [16, 17, 20, 27], "divid": 16, "count": [16, 27, 37], "decrement": 16, "exportallmetr": 16, "getuserrequestmetr": 16, "getalluserrequestmetr": 16, "getservermetr": 16, "getnumrequestmetr": 16, "getnumerrormetr": 16, "getperusernumrequestmetr": 16, "getresponsetimemetr": 16, "getavgresponsetimemetr": 16, "gettotalresponsetimemetr": 16, "gettotalmemoryusedmetr": 16, "getmaxlocalememori": 16, "getsystemmetr": 16, "getserverinfo": 16, "categori": [16, 18], "scope": [16, 29], "timestamp": 16, "datetim": [16, 28], "now": [16, 19], "arraymetr": 16, "localeinfo": 16, "hostnam": [16, 28], "number_of_processing_unit": 16, "physical_memori": 16, "max_number_of_task": 16, "serverinfo": 16, "server_port": 16, "number_of_local": 16, "localemetr": 16, "locale_num": 16, "locale_nam": 16, "mplogger": 17, "respond": 17, "act": 17, "createscalararrai": 17, "deletemsg": 17, "reqmsg": 17, "clearmsg": 17, "clear": [17, 20], "unregist": [17, 20], "infomsg": 17, "referenc": 17, "entri": [17, 19, 20, 27, 31], "getconfigmsg": 17, "queri": 17, "getmemusedmsg": 17, "getmemavailmsg": 17, "availbl": 17, "getcommandmapmsg": 17, "here": [17, 19, 22], "similar": [17, 20, 27], "strmsg": 17, "__str__": 17, "str": [17, 37], "reprmsg": 17, "__repr__": 17, "repr": 17, "setmsg": 17, "undefinedsymbolerror": 17, "chunkinfoasstr": 17, "how": [17, 28], "across": 17, "100x40": 17, "2d": 17, "4": [17, 28, 32], "could": [17, 37], "50": 17, "20": [17, 28], "start": [17, 27], "chunkinfoasarrai": 17, "reglogg": [18, 23], "registryentrytyp": 18, "abstractregentri": [18, 23], "genregentri": 18, "arrayregentri": [18, 23], "dataframeregentri": [18, 23], "groupbyregentri": [18, 23], "categoricalregentri": [18, 23], "segarrayregentri": [18, 23], "indexregentri": [18, 23], "seriesregentri": [18, 23], "bitvectorregentri": [18, 23], "entrytyp": [18, 19], "assignabletyp": [18, 19], "setnam": [18, 19], "todataframeregentri": 18, "array_nam": 18, "asmap": 18, "width": [18, 28], "revers": 18, "segment": [18, 26, 27], "column_nam": 18, "column": 18, "permut": [18, 22, 27], "uki": 18, "code": [18, 31], "nacod": 18, "genlogg": 19, "symbolentrytyp": 19, "typedarraysymentri": 19, "primitivetypedarraysymentri": 19, "complextypedarraysymentri": 19, "segstringsymentri": [19, 20, 27], "compositesymentri": 19, "gensparsesymentri": [19, 20], "sparsesymentri": 19, "generatorsymentri": 19, "anythingsymentri": 19, "unknownsymentri": 19, "build": [19, 27], "our": [19, 29], "hierarchi": 19, "littl": 19, "concret": 19, "root": 19, "symbolt": 19, "symentri": [19, 20, 27], "inherit": 19, "ancestor": 19, "ultim": 19, "everyth": 19, "coercibl": 19, "subclass": 19, "maintain": 19, "isassignableto": 19, "help": 19, "coerc": 19, "anoth": [19, 27], "getsizeestim": 19, "hook": 19, "overmemlimit": [19, 28], "procedur": [19, 37], "entry__str__": 19, "thresh": [19, 20], "suffix": [19, 27], "baseformat": 19, "up": [19, 20], "entireti": [19, 20], "3": [19, 20, 27, 28, 29], "prepend": [19, 27, 31], "front": [19, 31], "tail": 19, "tosymentri": 19, "etyp": [19, 21, 36], "talk": 19, "instanti": 19, "singular": 19, "segarrai": [19, 28], "consid": 19, "items": [19, 22], "ndim": [19, 20], "len": [19, 24, 27], "fail": 19, "attrib": [19, 20], "differ": [19, 27, 31], "v": 19, "visibl": 19, "tupshap": 19, "live": 19, "stai": 19, "makedistarrai": [19, 36], "whose": 19, "makedist": 19, "vari": [19, 29], "accessor": 19, "max_bit": 19, "mydmap": [19, 36], "dmap": [19, 36], "defaultrectangular": [19, 36], "verbos": [19, 20], "flag": [19, 28], "6": [19, 28], "pre": 19, "pend": 19, "createsymentri": 19, "These": 19, "relat": [19, 28], "dataset": [19, 31], "createtypedsymentri": 19, "mem": 19, "offsetsentri": 19, "bytesentri": 19, "offsetssymentri": 19, "bytessymentri": 19, "nnz": [19, 34], "layoutstr": 19, "tosparsesymentri": 19, "layout": [19, 33, 34, 36], "sparsegensymentri": 19, "layouttostr": 19, "l": [19, 33], "assum": 19, "matlayout": [19, 36], "spars": [19, 33, 37], "csc": [19, 33, 34], "csr": [19, 33, 34], "makesparsearrai": [19, 36], "elttyp": [19, 33, 34, 36, 37], "parentdom": [19, 34], "noprefix": 19, "nosuffix": 19, "randomstream": [19, 34], "togensymentri": 19, "abstrcatsymentri": 19, "tocompositesymentri": 19, "tosegstringsymentri": 19, "togensparsesymentri": 19, "togeneratorsymentri": 19, "getarrayspecfromentri": 19, "temporari": 19, "shim": 19, "eas": 19, "attempt": [19, 20, 31], "valus": 19, "descend": 19, "retrun": 19, "synonym": 19, "tupshapestr": 19, "mtlogger": 20, "regtab": [20, 23], "track": 20, "tab": [20, 23], "serverid": 20, "id_": 20, "generatetoken": [20, 24], "_": [20, 25], "nid": 20, "nextnam": 20, "give": 20, "insert": 20, "creation": 20, "addentri": 20, "newli": 20, "deleteentri": 20, "symtabl": 20, "occur": [20, 27], "lookup": [20, 23, 27], "found": [20, 30], "checktabl": [20, 23], "calling_func": [20, 23], "except": [20, 23], "pretti": 20, "memus": [20, 29], "__allsymbols__": 20, "formmat": 20, "__registeredsymbols__": 20, "registr": [20, 28], "statu": [20, 29], "getentri": 20, "infolist": 20, "formatentri": 20, "abstractentri": 20, "dictionari": 20, "datastr": 20, "datarepr": 20, "signfi": 20, "signifi": 20, "findal": 20, "pattern": [20, 27], "regex": [20, 27, 28], "getgenerictypedarrayentri": 20, "conveni": [20, 27], "convers": 20, "you": [20, 37], "call": [20, 27, 29], "report": [20, 31], "getsegstringentri": 20, "abstractysymentri": 20, "getgenericsparsearrayentri": 20, "uint16": 21, "uint32": 21, "uint64": 21, "int8": 21, "int16": 21, "int32": 21, "int64": [21, 27], "float32": 21, "float64": 21, "complex64": 21, "complex128": 21, "undef": 21, "In": 21, "need": [21, 27, 37], "like": 21, "etc": 21, "whichdtyp": 21, "dtypes": 21, "dt": 21, "types": 21, "str2dtype": 21, "dstr": 21, "turn": 21, "pythonland": 21, "dtype2str": 21, "type2str": 21, "type2fmt": 21, "bool2str": 21, "commondtyp": 21, "oper": [21, 27, 30, 31], "between": [21, 27], "promot": 21, "divdtyp": 21, "divis": 21, "dtk": 21, "integ": 21, "float": 21, "complex": 21, "radix": [22, 28], "signific": 22, "digit": [22, 27, 28], "rslsd_vv": 22, "vv": 22, "rslsd_numtask": 22, "maxtaskpar": 22, "numtask": 22, "rslogger": 22, "keyscompar": 22, "keycompar": 22, "k": 22, "keysrankscompar": 22, "kr": 22, "calcblock": [22, 25], "calcglobalindex": [22, 25], "bucket": [22, 25], "checksort": [22, 27], "radixsortlsd_rank": 22, "block": [22, 27, 29], "vector": [22, 27], "radixsortlsd_kei": 22, "radixsortlsd_memest": 22, "radixsortlsd_keys_memest": 22, "registered_entri": 23, "register_arrai": 23, "register_segarray_compon": 23, "sre": 23, "register_segarrai": 23, "register_datafram": 23, "dfre": 23, "register_groupbi": 23, "gbre": 23, "register_categorical_compon": 23, "cre": 23, "register_categor": 23, "register_index_compon": 23, "ir": 23, "register_index": 23, "register_seri": 23, "register_bitvector": 23, "bre": 23, "unregister_arrai": 23, "unregister_segarray_compon": 23, "unregister_segarrai": 23, "unregister_datafram": 23, "unregister_groupbi": 23, "unregister_categorical_compon": 23, "unregister_categor": 23, "unregister_index_compon": 23, "unregister_index": 23, "unregister_seri": 23, "unregister_bitvector": 23, "checkavail": 23, "list_registri": 23, "32": 24, "getarkoudatoken": 24, "tokenspath": 24, "setarkoudatoken": 24, "sslogger": [25, 27], "stringintcompar": 25, "keypartcompar": 25, "keypart": 25, "a0": 25, "twophasestringsort": 25, "ss": [25, 27], "getpivot": 25, "gatherlongstr": 25, "longind": 25, "radixsortlsd_raw": 25, "pivot": 25, "computesegmentownership": 26, "vd": 26, "segfunct": [26, 27], "siphash128": [26, 27, 32], "stringcompareliteraleq": [26, 27], "stringcompareliteralneq": [26, 27], "stringsearch": [26, 27], "stringislow": [26, 27], "stringisupp": [26, 27], "stringistitl": [26, 27], "stringisalphanumer": [26, 27], "stringisalphabet": [26, 27], "stringisdigit": [26, 27], "stringisdecim": [26, 27], "stringisempti": [26, 27], "stringisspac": [26, 27], "computeonseg": [26, 27], "rettyp": 26, "strarg": 26, "segmentedstringusehash": 27, "usehash": 27, "fix": [27, 28], "getsegstr": 27, "assemblesegstringfrompart": 27, "ephemer": 27, "refer": 27, "persist": 27, "bundl": 27, "those": 27, "relev": 27, "composit": 27, "bytearrai": 27, "complet": [27, 31], "join": 27, "zero": [27, 33], "nbyte": 27, "includ": [27, 29, 31], "corresond": 27, "separ": [27, 29], "entrynam": 27, "directli": 27, "show": 27, "stride": 27, "stridekind": 27, "iv": 27, "gather": [27, 29], "compress": 27, "appli": 27, "hash": [27, 32], "arggroup": 27, "becaus": 27, "equival": 27, "fall": 27, "getlength": 27, "lower": 27, "uppercas": 27, "charact": 27, "replac": 27, "lowercas": 27, "substr": 27, "upper": 27, "titl": 27, "remain": 27, "isdecim": 27, "decim": 27, "capit": 27, "islow": 27, "isupp": 27, "istitl": 27, "titlecas": 27, "isalnum": 27, "alphanumer": 27, "isalpha": 27, "alphabet": 27, "isdigit": 27, "isempti": 27, "isspac": 27, "whitespac": 27, "bytestouintarr": 27, "max_byt": 27, "findsubstringinbyt": 27, "findmatchloc": 27, "groupnum": 27, "postit": 27, "positon": 27, "findallmatch": 27, "nummatchesentri": 27, "startsentri": 27, "lensentri": 27, "indicesentri": 27, "returnmatchorig": 27, "sysmentri": 27, "postion": 27, "portion": 27, "option": [27, 29], "sub": 27, "replstr": 27, "initcount": 27, "returnnumsub": 27, "substitut": 27, "repl": 27, "nonzero": 27, "most": 27, "susbstitut": 27, "segstrwher": 27, "otherstr": 27, "newlen": 27, "strip": 27, "char": 27, "lead": 27, "trail": 27, "substringsearch": 27, "regular": 27, "engin": 27, "re2": 27, "lookahead": 27, "lookbehind": 27, "peelregex": 27, "includedelimit": 27, "keepparti": 27, "left": 27, "peel": 27, "off": 27, "partit": 27, "experiment": 27, "guarante": 27, "delimt": 27, "sought": 27, "skip": 27, "end": [27, 31], "By": 27, "begin": 27, "leftoffset": 27, "leftval": 27, "rightoffset": 27, "rightval": 27, "stick": 27, "delim": 27, "right": 27, "ediff": 27, "argsort": 27, "getfix": 27, "kind": [27, 30], "proper": 27, "memcmp": 27, "xind": 27, "y": 27, "yind": 27, "lss": 27, "rss": 27, "inequ": 27, "teststr": 27, "against": 27, "compar": [27, 29], "wise": 27, "comparison": 27, "target": 27, "polar": 27, "checkcompil": 27, "regexp": 27, "compil": [27, 28, 29], "without": 27, "unsafecompileregex": 27, "myregex": 27, "stringbytestouintarr": 27, "mainstr": 27, "concat": 27, "s1": 27, "v1": 27, "s2": 27, "v2": 27, "segstrful": 27, "arrsiz": 27, "fillvalu": 27, "interpretasstr": 27, "interpret": 27, "reduc": 27, "after": 27, "interpretasbyt": 27, "model": 27, "deploy": 28, "arrayview": 28, "categor": 28, "groupbi": 28, "5": 28, "datafram": 28, "7": 28, "timedelta": 28, "ipv4": 28, "9": 28, "bitvector": 28, "seri": 28, "11": 28, "12": 28, "multiindex": 28, "13": 28, "maxarraydim": 28, "maximum": 28, "bare": 28, "metal": 28, "hpc": 28, "trace": 28, "logcommand": 28, "serverport": 28, "5555": 28, "port": [28, 29], "zeromq": 28, "perlocalememlimit": 28, "physic": 28, "16": [28, 32], "bit": 28, "lsd": 28, "op": [28, 30], "arkoudavers": 28, "pleas": 28, "serverconnectioninfo": [28, 29], "arkouda_server_connection_info": 28, "autoshutdown": 28, "shut": 28, "down": 28, "automat": 28, "disconnect": 28, "serverinfonosplash": 28, "inform": 28, "serverhostnam": 28, "get_hostnam": 28, "am": 28, "getconnecthostnam": 28, "getchplvers": 28, "built": [28, 31], "chplversionarkouda": 28, "authent": 28, "akrouda": 28, "regexmaxcaptur": 28, "saveusedmodul": 28, "usedmodulesfmt": 28, "sclogger": 28, "llevel": 28, "lchannel": 28, "createconfig": 28, "getconfig": 28, "getphysicalmemher": 28, "much": 28, "runtim": 28, "chpl_comm_regmemheapinfo": 28, "heap": 28, "getbyteord": 28, "byteord": 28, "endian": 28, "getmemus": 28, "getmemlimit": 28, "memmax": 28, "memhighwat": 28, "additionalamount": 28, "go": 28, "splitmsgtotupl": 28, "numchunk": 28, "sep": 28, "getenvint": 28, "q": 28, "qcq": 28, "bslash": 28, "escaped_quot": 28, "appendtoconfigstr": 28, "serverdaemontyp": 29, "sdlogger": 29, "getdaemontyp": 29, "comma": 29, "daemontyp": 29, "metricsen": 29, "dedic": 29, "integrationen": 29, "multipleserverdaemon": 29, "app": 29, "pod": 29, "arkoudaserverdaemon": [29, 38], "shutdowndaemon": 29, "requestshutdown": 29, "prompt": 29, "initi": 29, "trigger": 29, "chang": 29, "caus": 29, "exit": 29, "daemon": 29, "loop": 29, "extractrequest": 29, "arkoduaseverdaemon": 29, "defaultserverdaemon": 29, "serv": [29, 38], "driver": [29, 38], "servertoken": 29, "arkdirectori": 29, "connecturl": 29, "reqcount": 29, "repcount": 29, "context": [29, 31], "zmq": 29, "getconnecturl": 29, "printserversplashmessag": 29, "createserverconnectioninfo": 29, "deleteserverconnectioninfo": 29, "serverconnetionfil": 29, "sendrepmsg": 29, "send": 29, "authenticateus": 29, "submit": 29, "did": 29, "errorwithmsg": [29, 30], "thrown": [29, 31], "stop": 29, "listen": 29, "thread": 29, "registerservercommand": 29, "There": 29, "adher": 29, "special": 29, "servermodul": 29, "initarkoudadirectori": 29, "processmetr": 29, "elapsedtim": 29, "processerrormessagemetr": 29, "errormsg": 29, "geterrornam": 29, "err": 29, "metricsserverdaemon": 29, "lessen": 29, "possibl": 29, "externalintegrationserverdaemon": 29, "arkoudaserverdeamon": 29, "parent": 29, "serverstatusdaemon": 29, "chanc": 29, "getserverdaemon": 29, "notimplementederror": [30, 31], "pname": 30, "ldtype": 30, "rdtype": 30, "efunc": 30, "dt1": 30, "dt2": 30, "dt3": 30, "algorthm": 30, "unrecognizedtypeerror": 30, "stype": 30, "unrecogn": 30, "unknownsymbolerror": [30, 31], "sname": 30, "unknownerror": 30, "incompatibleargumentserror": 30, "reason": 30, "incompat": 30, "unsupportedtypeerror": 30, "outofboundserror": 31, "fuller": 31, "errorclass": 31, "publishmsg": 31, "accept": 31, "detail": 31, "rich": 31, "publish": 31, "understand": 31, "develop": 31, "datasetnotfounderror": 31, "writemodeerror": 31, "save": 31, "brand": 31, "lack": 31, "nothdf5fileerror": 31, "hdff": 31, "hdf5fileformaterror": 31, "mismatchedappenderror": 31, "made": 31, "wrote": 31, "segstringerror": 31, "segstring_offset_nam": 31, "segstring_value_nam": 31, "argumenterror": 31, "problem": 31, "unsupportedoserror": 31, "o": 31, "ioerror": 31, "io": 31, "overmemorylimiterror": 31, "project": 31, "invoc": 31, "free": 31, "configurationerror": 31, "generateerrorcontext": 31, "geterrorwithcontext": 31, "routin": 31, "cround": 32, "dround": 32, "defaultsiphashkei": 32, "shlogger": 32, "rotl": 32, "siphash64": 32, "comput": 32, "fillsparsematrix": 33, "spsmat": 33, "getgrid": 33, "chpl_isnondistributedarrai": 33, "getlsd": 33, "getlsa": 33, "rowblockidx": 33, "colblockidx": 33, "sparsemattopdarrai": 33, "row": 33, "col": 33, "fill": 33, "major": 33, "rowmajorexscan": 33, "nnzpercolblock": 33, "grid": 33, "pdom": 33, "colmajorexscan": 33, "nnzperrowblock": 33, "sparsematmatmult": 33, "spsdata": [33, 34], "densematmatmult": 33, "randsparsematrix": 33, "densiti": 33, "rand": 34, "els": 34, "sparsematdat": 34, "emptysparsedomlik": 34, "mat": 34, "writesparsematrix": 34, "arr": 34, "makesparsemat": 34, "merg": 34, "reducescanop": 34, "ident": 34, "accumul": 34, "accumulateontost": 34, "clone": 34, "slogger": 35, "getmemorystatusmsg": 35, "blockdist": 36, "defaultdmap": 36, "makedistdom": 36, "accord": 36, "desir": 36, "initexpr": 36, "makedistdomtyp": 36, "makesparsedomain": 36, "m": 36, "dens": 37, "histogram": 37, "assoc": 37, "got": 37, "realli": 37, "factor": 37, "sparsiti": 37, "somehow": 37, "min": 37, "ulogg": 37, "uniquesort": 37, "needcount": 37, "uniquevalarrai": 37, "uniquevalcountsarrai": 37, "appear": 37, "uniquesortwithinvers": 37, "needindic": 37, "uniquefromsort": 37, "uniquegroup": 37, "returninvers": 37, "uniquefromtruth": 37, "perm": 37, "aslogg": 38, "main": 38}, "objects": {"": [[39, 0, 0, "-", "ArkoudaSortCompat"], [40, 0, 0, "-", "ArkoudaSparseMatrixCompat"], [1, 0, 0, "-", "AryUtil"], [2, 0, 0, "-", "BigIntMsg"], [5, 0, 0, "-", "BigIntegerAggregation"], [3, 0, 0, "-", "Cast"], [4, 0, 0, "-", "CommAggregation"], [6, 0, 0, "-", "CommPrimitives"], [7, 0, 0, "-", "CommandMap"], [8, 0, 0, "-", "ExternalIntegration"], [9, 0, 0, "-", "FileIO"], [10, 0, 0, "-", "GenSymIO"], [11, 0, 0, "-", "IOUtils"], [12, 0, 0, "-", "In1d"], [13, 0, 0, "-", "Logging"], [14, 0, 0, "-", "MemoryMgmt"], [15, 0, 0, "-", "Message"], [16, 0, 0, "-", "MetricsMsg"], [17, 0, 0, "-", "MsgProcessing"], [18, 0, 0, "-", "MultiTypeRegEntry"], [19, 0, 0, "-", "MultiTypeSymEntry"], [20, 0, 0, "-", "MultiTypeSymbolTable"], [21, 0, 0, "-", "NumPyDType"], [22, 0, 0, "-", "RadixSortLSD"], [23, 0, 0, "-", "Registry"], [24, 0, 0, "-", "Security"], [25, 0, 0, "-", "SegStringSort"], [26, 0, 0, "-", "SegmentedComputation"], [27, 0, 0, "-", "SegmentedString"], [28, 0, 0, "-", "ServerConfig"], [29, 0, 0, "-", "ServerDaemon"], [30, 0, 0, "-", "ServerErrorStrings"], [31, 0, 0, "-", "ServerErrors"], [32, 0, 0, "-", "SipHash"], [33, 0, 0, "-", "SparseMatrix"], [34, 0, 0, "-", "SpsMatUtil"], [35, 0, 0, "-", "StatusMsg"], [36, 0, 0, "-", "SymArrayDmap"], [37, 0, 0, "-", "Unique"], [38, 0, 0, "-", "arkouda_server"]], "AryUtil": [[1, 1, 1, "", "aStats"], [1, 1, 1, "", "appendAxis"], [1, 2, 1, "", "auLogger"], [1, 3, 1, "", "axisSlices"], [1, 2, 1, "", "bitsPerDigit"], [1, 1, 1, "", "broadcastShape"], [1, 1, 1, "", "concatArrays"], [1, 1, 1, "", "contiguousIndices"], [1, 1, 1, "", "domOffAxis"], [1, 1, 1, "", "domOnAxis"], [1, 1, 1, "", "fillUniform"], [1, 1, 1, "", "flatten"], [1, 1, 1, "", "formatAry"], [1, 1, 1, "", "getBitWidth"], [1, 1, 1, "", "getDigit"], [1, 1, 1, "", "getNumDigitsNumericArrays"], [1, 1, 1, "", "isSorted"], [1, 1, 1, "", "isSortedOver"], [1, 4, 1, "", "lowLevelLocalizingSlice"], [1, 1, 1, "", "mergeNumericArrays"], [1, 3, 1, "", "offset"], [1, 4, 1, "", "orderer"], [1, 1, 1, "", "printAry"], [1, 1, 1, "", "printOwnership"], [1, 2, 1, "", "printThresh"], [1, 1, 1, "", "reducedShape"], [1, 1, 1, "", "removeAxis"], [1, 1, 1, "", "removeDegenRanks"], [1, 1, 1, "", "subDomChunk"], [1, 1, 1, "", "unflatten"], [1, 1, 1, "", "validateArraysSameLength"], [1, 1, 1, "", "validateNegativeAxes"]], "AryUtil.lowLevelLocalizingSlice": [[1, 5, 1, "", "deinit"], [1, 5, 1, "", "init"], [1, 6, 1, "", "isOwned"], [1, 6, 1, "", "ptr"], [1, 6, 1, "", "t"]], "AryUtil.orderer": [[1, 6, 1, "", "accumRankSizes"], [1, 5, 1, "", "indexToOrder"], [1, 5, 1, "", "init"], [1, 6, 1, "", "rank"]], "BigIntMsg": [[2, 2, 1, "", "biLogger"], [2, 1, 1, "", "bigIntCreationMsg"], [2, 1, 1, "", "bigintToUintArraysMsg"], [2, 1, 1, "", "getMaxBitsMsg"], [2, 1, 1, "", "setMaxBitsMsg"]], "BigIntegerAggregation": [[5, 4, 1, "", "DstAggregatorBigint"], [5, 4, 1, "", "SrcAggregatorBigint"]], "BigIntegerAggregation.DstAggregatorBigint": [[5, 6, 1, "", "aggType"], [5, 6, 1, "", "bufferIdxs"], [5, 6, 1, "", "bufferSize"], [5, 5, 1, "", "copy"], [5, 5, 1, "", "deinit"], [5, 5, 1, "", "flush"], [5, 5, 1, "", "flushBuffer"], [5, 6, 1, "", "lBuffers"], [5, 6, 1, "", "lastLocale"], [5, 6, 1, "", "myLocaleSpace"], [5, 6, 1, "", "opsUntilYield"], [5, 5, 1, "", "postinit"], [5, 6, 1, "", "rBuffers"]], "BigIntegerAggregation.SrcAggregatorBigint": [[5, 6, 1, "", "aggType"], [5, 6, 1, "", "bufferIdxs"], [5, 6, 1, "", "bufferSize"], [5, 5, 1, "", "copy"], [5, 5, 1, "", "deinit"], [5, 6, 1, "", "dstAddrs"], [5, 5, 1, "", "flush"], [5, 5, 1, "", "flushBuffer"], [5, 6, 1, "", "lSrcAddrs"], [5, 6, 1, "", "lSrcVals"], [5, 6, 1, "", "lastLocale"], [5, 6, 1, "", "myLocaleSpace"], [5, 6, 1, "", "opsUntilYield"], [5, 5, 1, "", "postinit"], [5, 6, 1, "", "rSrcAddrs"], [5, 6, 1, "", "rSrcVals"], [5, 6, 1, "", "uintBufferSize"]], "BigIntegerAggregation.bigint": [[5, 5, 1, "", "deserializeFrom"], [5, 5, 1, "", "serializeInto"], [5, 5, 1, "", "serializedSize"]], "Cast": [[3, 7, 1, "", "ErrorMode"], [3, 1, 1, "", "castGenSymEntryToString"], [3, 2, 1, "", "castLogger"], [3, 1, 1, "", "castStringToBigInt"], [3, 1, 1, "", "castStringToSymEntry"], [3, 1, 1, "", "stringToNumericIgnore"], [3, 1, 1, "", "stringToNumericReturnValidity"], [3, 1, 1, "", "stringToNumericStrict"]], "Cast.ErrorMode": [[3, 8, 1, "", "ignore"], [3, 8, 1, "", "return_validity"], [3, 8, 1, "", "strict"]], "CommAggregation": [[4, 4, 1, "", "DstAggregator"], [4, 4, 1, "", "DstUnorderedAggregator"], [4, 4, 1, "", "SrcAggregator"], [4, 4, 1, "", "SrcUnorderedAggregator"], [4, 1, 1, "", "bufferIdxAlloc"], [4, 1, 1, "", "newDstAggregator"], [4, 1, 1, "", "newSrcAggregator"], [4, 4, 1, "", "remoteBuffer"]], "CommAggregation.DstAggregator": [[4, 6, 1, "", "aggType"], [4, 6, 1, "", "bufferIdxs"], [4, 6, 1, "", "bufferSize"], [4, 5, 1, "", "copy"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "elemType"], [4, 5, 1, "", "flush"], [4, 5, 1, "", "flushBuffer"], [4, 6, 1, "", "lBuffers"], [4, 6, 1, "", "lastLocale"], [4, 6, 1, "", "myLocaleSpace"], [4, 6, 1, "", "opsUntilYield"], [4, 5, 1, "", "postinit"], [4, 6, 1, "", "rBuffers"]], "CommAggregation.DstUnorderedAggregator": [[4, 5, 1, "", "copy"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "elemType"], [4, 5, 1, "", "flush"]], "CommAggregation.SrcAggregator": [[4, 6, 1, "", "aggType"], [4, 6, 1, "", "bufferIdxs"], [4, 6, 1, "", "bufferSize"], [4, 5, 1, "", "copy"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "dstAddrs"], [4, 6, 1, "", "elemType"], [4, 5, 1, "", "flush"], [4, 5, 1, "", "flushBuffer"], [4, 6, 1, "", "lSrcAddrs"], [4, 6, 1, "", "lSrcVals"], [4, 6, 1, "", "lastLocale"], [4, 6, 1, "", "myLocaleSpace"], [4, 6, 1, "", "opsUntilYield"], [4, 5, 1, "", "postinit"], [4, 6, 1, "", "rSrcAddrs"], [4, 6, 1, "", "rSrcVals"]], "CommAggregation.SrcUnorderedAggregator": [[4, 5, 1, "", "copy"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "elemType"], [4, 5, 1, "", "flush"]], "CommAggregation.remoteBuffer": [[4, 5, 1, "", "GET"], [4, 5, 1, "", "PUT"], [4, 5, 1, "", "cachedAlloc"], [4, 6, 1, "", "data"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "elemType"], [4, 6, 1, "", "loc"], [4, 5, 1, "", "localFree"], [4, 9, 1, "", "localIter"], [4, 5, 1, "", "markFreed"], [4, 6, 1, "", "size"]], "CommPrimitives": [[6, 1, 1, "", "getAddr"]], "CommandMap": [[7, 1, 1, "", "akMsgSign"], [7, 2, 1, "", "commandMap"], [7, 1, 1, "", "dumpCommandMap"], [7, 1, 1, "", "executeCommand"], [7, 2, 1, "", "moduleMap"], [7, 1, 1, "", "registerFunction"], [7, 2, 1, "", "usedModules"], [7, 1, 1, "", "writeUsedModules"], [7, 1, 1, "", "writeUsedModulesJson"]], "ExternalIntegration": [[8, 2, 1, "", "CURLINFO_RESPONSE_CODE"], [8, 2, 1, "", "CURLOPT_CAINFO"], [8, 2, 1, "", "CURLOPT_CAPATH"], [8, 2, 1, "", "CURLOPT_CUSTOMREQUEST"], [8, 2, 1, "", "CURLOPT_FAILONERROR"], [8, 2, 1, "", "CURLOPT_HTTPHEADER"], [8, 2, 1, "", "CURLOPT_KEYPASSWD"], [8, 2, 1, "", "CURLOPT_PASSWORD"], [8, 2, 1, "", "CURLOPT_POSTFIELDS"], [8, 2, 1, "", "CURLOPT_SSLCERT"], [8, 2, 1, "", "CURLOPT_SSLCERTTYPE"], [8, 2, 1, "", "CURLOPT_SSLKEY"], [8, 2, 1, "", "CURLOPT_SSL_VERIFYPEER"], [8, 2, 1, "", "CURLOPT_URL"], [8, 2, 1, "", "CURLOPT_USERNAME"], [8, 2, 1, "", "CURLOPT_USE_SSL"], [8, 2, 1, "", "CURLOPT_VERBOSE"], [8, 10, 1, "", "Channel"], [8, 7, 1, "", "ChannelType"], [8, 10, 1, "", "FileChannel"], [8, 10, 1, "", "HttpChannel"], [8, 7, 1, "", "HttpRequestFormat"], [8, 7, 1, "", "HttpRequestType"], [8, 10, 1, "", "HttpsChannel"], [8, 7, 1, "", "ServiceEndpoint"], [8, 7, 1, "", "SystemType"], [8, 1, 1, "", "deregisterFromExternalSystem"], [8, 1, 1, "", "deregisterFromKubernetes"], [8, 2, 1, "", "eiLogger"], [8, 1, 1, "", "getConnectHostIp"], [8, 1, 1, "", "getKubernetesDeregisterParameters"], [8, 1, 1, "", "getKubernetesRegistrationParameters"], [8, 1, 1, "", "registerWithExternalSystem"], [8, 1, 1, "", "registerWithKubernetes"]], "ExternalIntegration.Channel": [[8, 5, 1, "", "write"]], "ExternalIntegration.ChannelType": [[8, 8, 1, "", "FILE"], [8, 8, 1, "", "HTTP"], [8, 8, 1, "", "STDOUT"]], "ExternalIntegration.FileChannel": [[8, 6, 1, "", "append"], [8, 5, 1, "", "init"], [8, 6, 1, "", "path"], [8, 5, 1, "", "write"]], "ExternalIntegration.HttpChannel": [[8, 5, 1, "", "configureChannel"], [8, 5, 1, "", "generateHeader"], [8, 5, 1, "", "init"], [8, 6, 1, "", "requestFormat"], [8, 6, 1, "", "requestType"], [8, 6, 1, "", "url"], [8, 5, 1, "", "write"]], "ExternalIntegration.HttpRequestFormat": [[8, 8, 1, "", "JSON"], [8, 8, 1, "", "MULTIPART"], [8, 8, 1, "", "TEXT"]], "ExternalIntegration.HttpRequestType": [[8, 8, 1, "", "DELETE"], [8, 8, 1, "", "PATCH"], [8, 8, 1, "", "POST"], [8, 8, 1, "", "PUT"]], "ExternalIntegration.HttpsChannel": [[8, 6, 1, "", "caCert"], [8, 5, 1, "", "configureChannel"], [8, 5, 1, "", "generateHeader"], [8, 5, 1, "", "init"], [8, 6, 1, "", "token"]], "ExternalIntegration.ServiceEndpoint": [[8, 8, 1, "", "ARKOUDA_CLIENT"], [8, 8, 1, "", "METRICS"]], "ExternalIntegration.SystemType": [[8, 8, 1, "", "CONSUL"], [8, 8, 1, "", "KUBERNETES"], [8, 8, 1, "", "NONE"], [8, 8, 1, "", "REDIS"]], "FileIO": [[9, 7, 1, "", "FileType"], [9, 2, 1, "", "MAGIC_ARROW"], [9, 2, 1, "", "MAGIC_CSV"], [9, 2, 1, "", "MAGIC_HDF5"], [9, 2, 1, "", "MAGIC_PARQUET"], [9, 1, 1, "", "appendFile"], [9, 1, 1, "", "delimitedFileToMap"], [9, 1, 1, "", "domain_intersection"], [9, 1, 1, "", "ensureClose"], [9, 2, 1, "", "fioLogger"], [9, 1, 1, "", "generateFilename"], [9, 1, 1, "", "generateFilenames"], [9, 1, 1, "", "getFileMetadata"], [9, 1, 1, "", "getFileType"], [9, 1, 1, "", "getFileTypeByMagic"], [9, 1, 1, "", "getFileTypeMsg"], [9, 1, 1, "", "getFirstEightBytesFromFile"], [9, 1, 1, "", "getLineFromFile"], [9, 1, 1, "", "getMatchingFilenames"], [9, 1, 1, "", "globExpansionMsg"], [9, 1, 1, "", "initDirectory"], [9, 1, 1, "", "isGlobPattern"], [9, 1, 1, "", "lsAnyMsg"], [9, 1, 1, "", "writeLinesToFile"], [9, 1, 1, "", "writeToFile"]], "FileIO.FileType": [[9, 8, 1, "", "ARROW"], [9, 8, 1, "", "CSV"], [9, 8, 1, "", "HDF5"], [9, 8, 1, "", "PARQUET"], [9, 8, 1, "", "UNKNOWN"]], "GenSymIO": [[10, 2, 1, "", "NULL_STRINGS_VALUE"], [10, 1, 1, "", "array"], [10, 1, 1, "", "arraySegString"], [10, 1, 1, "", "buildReadAllMsgJson"], [10, 1, 1, "", "checkCast"], [10, 2, 1, "", "gsLogger"], [10, 1, 1, "", "jsonToMap"], [10, 1, 1, "", "makeArrayFromBytes"], [10, 1, 1, "", "segmentedCalcOffsets"], [10, 1, 1, "", "tondarray"]], "IOUtils": [[11, 1, 1, "", "formatJson"], [11, 1, 1, "", "jsonToArray"], [11, 1, 1, "", "parseJson"]], "In1d": [[12, 1, 1, "", "in1d"], [12, 1, 1, "", "in1dAr2PerLocAssoc"], [12, 1, 1, "", "in1dSort"]], "Logging": [[13, 10, 1, "", "ConsoleOutputHandler"], [13, 10, 1, "", "FileOutputHandler"], [13, 7, 1, "", "LogChannel"], [13, 7, 1, "", "LogLevel"], [13, 10, 1, "", "Logger"], [13, 10, 1, "", "OutputHandler"], [13, 1, 1, "", "getOutputHandler"]], "Logging.ConsoleOutputHandler": [[13, 5, 1, "", "write"]], "Logging.FileOutputHandler": [[13, 6, 1, "", "filePath"], [13, 5, 1, "", "init"], [13, 5, 1, "", "write"], [13, 5, 1, "", "writeToFile"]], "Logging.LogChannel": [[13, 8, 1, "", "CONSOLE"], [13, 8, 1, "", "FILE"]], "Logging.LogLevel": [[13, 8, 1, "", "CRITICAL"], [13, 8, 1, "", "DEBUG"], [13, 8, 1, "", "ERROR"], [13, 8, 1, "", "INFO"], [13, 8, 1, "", "WARN"]], "Logging.Logger": [[13, 5, 1, "", "critical"], [13, 6, 1, "", "criticalLevels"], [13, 5, 1, "", "debug"], [13, 5, 1, "", "error"], [13, 6, 1, "", "errorLevels"], [13, 5, 1, "", "generateDateTimeString"], [13, 5, 1, "", "generateErrorMsg"], [13, 5, 1, "", "generateLogMessage"], [13, 5, 1, "", "info"], [13, 6, 1, "", "infoLevels"], [13, 5, 1, "", "init"], [13, 6, 1, "", "level"], [13, 6, 1, "", "outputHandler"], [13, 6, 1, "", "printDate"], [13, 5, 1, "", "warn"], [13, 6, 1, "", "warnLevels"]], "Logging.OutputHandler": [[13, 5, 1, "", "write"]], "MemoryMgmt": [[14, 4, 1, "", "LocaleMemoryStatus"], [14, 7, 1, "", "MemMgmtType"], [14, 2, 1, "", "availableMemoryPct"], [14, 1, 1, "", "getArkoudaMemAlloc"], [14, 1, 1, "", "getArkoudaPid"], [14, 1, 1, "", "getAvailMemory"], [14, 1, 1, "", "getLocaleMemoryStatuses"], [14, 1, 1, "", "getTotalMemory"], [14, 1, 1, "", "isMemAvailable"], [14, 1, 1, "", "isSupportedOS"], [14, 1, 1, "", "localeMemAvailable"], [14, 2, 1, "", "memMgmtType"], [14, 2, 1, "", "mmLogger"]], "MemoryMgmt.LocaleMemoryStatus": [[14, 6, 1, "", "arkouda_mem_alloc"], [14, 6, 1, "", "avail_mem"], [14, 6, 1, "", "locale_hostname"], [14, 6, 1, "", "locale_id"], [14, 6, 1, "", "mem_used"], [14, 6, 1, "", "pct_avail_mem"], [14, 6, 1, "", "total_mem"]], "MemoryMgmt.MemMgmtType": [[14, 8, 1, "", "DYNAMIC"], [14, 8, 1, "", "STATIC"]], "Message": [[15, 10, 1, "", "MessageArgs"], [15, 7, 1, "", "MsgFormat"], [15, 4, 1, "", "MsgTuple"], [15, 7, 1, "", "MsgType"], [15, 4, 1, "", "ParameterObj"], [15, 4, 1, "", "RequestMsg"], [15, 1, 1, "", "deserialize"], [15, 1, 1, "", "parseMessageArgs"], [15, 1, 1, "", "parseParameter"], [15, 1, 1, "", "serialize"]], "Message.MessageArgs": [[15, 5, 1, "", "addPayload"], [15, 5, 1, "", "contains"], [15, 5, 1, "", "get"], [15, 5, 1, "", "getValueOf"], [15, 5, 1, "", "init"], [15, 6, 1, "", "param_list"], [15, 6, 1, "", "payload"], [15, 5, 1, "", "serialize"], [15, 6, 1, "", "size"], [15, 9, 1, "", "these"], [15, 5, 1, "", "this"]], "Message.MsgFormat": [[15, 8, 1, "", "BINARY"], [15, 8, 1, "", "STRING"]], "Message.MsgTuple": [[15, 5, 1, "", "error"], [15, 5, 1, "", "fromResponses"], [15, 5, 1, "", "fromScalar"], [15, 5, 1, "", "init"], [15, 6, 1, "", "msg"], [15, 6, 1, "", "msgFormat"], [15, 6, 1, "", "msgType"], [15, 5, 1, "", "newSymbol"], [15, 6, 1, "", "payload"], [15, 5, 1, "", "serialize"], [15, 5, 1, "", "success"], [15, 6, 1, "", "user"]], "Message.MsgType": [[15, 8, 1, "", "ERROR"], [15, 8, 1, "", "NORMAL"], [15, 8, 1, "", "WARNING"]], "Message.ParameterObj": [[15, 6, 1, "", "dtype"], [15, 5, 1, "", "getBigIntValue"], [15, 5, 1, "", "getBoolValue"], [15, 5, 1, "", "getDType"], [15, 5, 1, "", "getIntValue"], [15, 5, 1, "", "getList"], [15, 5, 1, "", "getPositiveIntValue"], [15, 5, 1, "", "getRealValue"], [15, 5, 1, "", "getScalarValue"], [15, 5, 1, "", "getTuple"], [15, 5, 1, "", "getUInt8Value"], [15, 5, 1, "", "getUIntValue"], [15, 5, 1, "", "getValue"], [15, 5, 1, "", "init"], [15, 6, 1, "", "key"], [15, 5, 1, "", "setKey"], [15, 5, 1, "", "setVal"], [15, 5, 1, "", "toScalar"], [15, 5, 1, "", "toScalarArray"], [15, 5, 1, "", "toScalarList"], [15, 5, 1, "", "toScalarTuple"], [15, 5, 1, "", "tryGetScalar"], [15, 6, 1, "", "val"]], "Message.RequestMsg": [[15, 6, 1, "", "args"], [15, 6, 1, "", "cmd"], [15, 6, 1, "", "format"], [15, 6, 1, "", "size"], [15, 6, 1, "", "token"], [15, 6, 1, "", "user"]], "MetricsMsg": [[16, 10, 1, "", "ArrayMetric"], [16, 10, 1, "", "AverageMeasurementTable"], [16, 10, 1, "", "AvgMetricValue"], [16, 10, 1, "", "CounterTable"], [16, 10, 1, "", "LocaleInfo"], [16, 10, 1, "", "LocaleMetric"], [16, 10, 1, "", "MeasurementTable"], [16, 10, 1, "", "Metric"], [16, 7, 1, "", "MetricCategory"], [16, 7, 1, "", "MetricDataType"], [16, 7, 1, "", "MetricScope"], [16, 10, 1, "", "MetricValue"], [16, 10, 1, "", "ServerInfo"], [16, 4, 1, "", "User"], [16, 10, 1, "", "UserMetric"], [16, 10, 1, "", "UserMetrics"], [16, 10, 1, "", "Users"], [16, 2, 1, "", "avgResponseTimeMetrics"], [16, 2, 1, "", "errorMetrics"], [16, 1, 1, "", "exportAllMetrics"], [16, 1, 1, "", "getAllUserRequestMetrics"], [16, 1, 1, "", "getAvgResponseTimeMetrics"], [16, 1, 1, "", "getMaxLocaleMemory"], [16, 1, 1, "", "getNumErrorMetrics"], [16, 1, 1, "", "getNumRequestMetrics"], [16, 1, 1, "", "getPerUserNumRequestMetrics"], [16, 1, 1, "", "getResponseTimeMetrics"], [16, 1, 1, "", "getServerInfo"], [16, 1, 1, "", "getServerMetrics"], [16, 1, 1, "", "getSystemMetrics"], [16, 1, 1, "", "getTotalMemoryUsedMetrics"], [16, 1, 1, "", "getTotalResponseTimeMetrics"], [16, 1, 1, "", "getUserRequestMetrics"], [16, 2, 1, "", "mLogger"], [16, 2, 1, "", "metricScope"], [16, 1, 1, "", "metricsMsg"], [16, 2, 1, "", "requestMetrics"], [16, 2, 1, "", "responseTimeMetrics"], [16, 2, 1, "", "serverMetrics"], [16, 2, 1, "", "totalMemoryUsedMetrics"], [16, 2, 1, "", "totalResponseTimeMetrics"], [16, 2, 1, "", "userMetrics"], [16, 2, 1, "", "users"]], "MetricsMsg.ArrayMetric": [[16, 6, 1, "", "cmd"], [16, 6, 1, "", "dType"], [16, 5, 1, "", "init"], [16, 6, 1, "", "size"]], "MetricsMsg.AverageMeasurementTable": [[16, 5, 1, "", "add"], [16, 5, 1, "", "getMeasurementTotal"], [16, 5, 1, "", "getNumMeasurements"], [16, 6, 1, "", "measurementTotals"], [16, 6, 1, "", "numMeasurements"]], "MetricsMsg.AvgMetricValue": [[16, 6, 1, "", "intTotal"], [16, 6, 1, "", "numValues"], [16, 6, 1, "", "realTotal"], [16, 5, 1, "", "update"]], "MetricsMsg.CounterTable": [[16, 6, 1, "", "counts"], [16, 5, 1, "", "decrement"], [16, 5, 1, "", "get"], [16, 5, 1, "", "increment"], [16, 9, 1, "", "items"], [16, 5, 1, "", "set"], [16, 5, 1, "", "size"], [16, 5, 1, "", "total"]], "MetricsMsg.LocaleInfo": [[16, 6, 1, "", "hostname"], [16, 6, 1, "", "id"], [16, 6, 1, "", "max_number_of_tasks"], [16, 6, 1, "", "name"], [16, 6, 1, "", "number_of_processing_units"], [16, 6, 1, "", "physical_memory"]], "MetricsMsg.LocaleMetric": [[16, 5, 1, "", "init"], [16, 6, 1, "", "locale_hostname"], [16, 6, 1, "", "locale_name"], [16, 6, 1, "", "locale_num"]], "MetricsMsg.MeasurementTable": [[16, 5, 1, "", "add"], [16, 5, 1, "", "get"], [16, 9, 1, "", "items"], [16, 6, 1, "", "measurements"], [16, 5, 1, "", "set"], [16, 5, 1, "", "size"]], "MetricsMsg.Metric": [[16, 6, 1, "", "category"], [16, 5, 1, "", "init"], [16, 6, 1, "", "name"], [16, 6, 1, "", "scope"], [16, 6, 1, "", "timestamp"], [16, 6, 1, "", "value"]], "MetricsMsg.MetricCategory": [[16, 8, 1, "", "ALL"], [16, 8, 1, "", "AVG_RESPONSE_TIME"], [16, 8, 1, "", "NUM_ERRORS"], [16, 8, 1, "", "NUM_REQUESTS"], [16, 8, 1, "", "RESPONSE_TIME"], [16, 8, 1, "", "SERVER"], [16, 8, 1, "", "SERVER_INFO"], [16, 8, 1, "", "SYSTEM"], [16, 8, 1, "", "TOTAL_MEMORY_USED"], [16, 8, 1, "", "TOTAL_RESPONSE_TIME"]], "MetricsMsg.MetricDataType": [[16, 8, 1, "", "INT"], [16, 8, 1, "", "REAL"]], "MetricsMsg.MetricScope": [[16, 8, 1, "", "GLOBAL"], [16, 8, 1, "", "LOCALE"], [16, 8, 1, "", "REQUEST"], [16, 8, 1, "", "USER"]], "MetricsMsg.MetricValue": [[16, 6, 1, "", "dataType"], [16, 5, 1, "", "init"], [16, 6, 1, "", "intValue"], [16, 6, 1, "", "realValue"], [16, 5, 1, "", "update"]], "MetricsMsg.ServerInfo": [[16, 6, 1, "", "hostname"], [16, 5, 1, "", "init"], [16, 6, 1, "", "locales"], [16, 6, 1, "", "number_of_locales"], [16, 6, 1, "", "server_port"], [16, 6, 1, "", "version"]], "MetricsMsg.User": [[16, 6, 1, "", "name"]], "MetricsMsg.UserMetric": [[16, 5, 1, "", "init"], [16, 6, 1, "", "user"]], "MetricsMsg.UserMetrics": [[16, 5, 1, "", "getPerUserNumRequestsPerCommandForAllUsersMetrics"], [16, 5, 1, "", "getPerUserNumRequestsPerCommandMetrics"], [16, 5, 1, "", "getUserMetrics"], [16, 5, 1, "", "incrementNumRequestsPerCommand"], [16, 5, 1, "", "incrementPerUserRequestMetrics"], [16, 5, 1, "", "incrementTotalNumRequests"], [16, 6, 1, "", "metrics"], [16, 6, 1, "", "users"]], "MetricsMsg.Users": [[16, 5, 1, "", "getUser"], [16, 5, 1, "", "getUserNames"], [16, 5, 1, "", "getUsers"], [16, 6, 1, "", "users"]], "MsgProcessing": [[17, 1, 1, "", "chunkInfoAsArray"], [17, 1, 1, "", "chunkInfoAsString"], [17, 1, 1, "", "clearMsg"], [17, 1, 1, "", "create"], [17, 1, 1, "", "createScalarArray"], [17, 1, 1, "", "deleteMsg"], [17, 1, 1, "", "getCommandMapMsg"], [17, 1, 1, "", "getconfigMsg"], [17, 1, 1, "", "getmemavailMsg"], [17, 1, 1, "", "getmemusedMsg"], [17, 1, 1, "", "infoMsg"], [17, 2, 1, "", "mpLogger"], [17, 1, 1, "", "reprMsg"], [17, 1, 1, "", "setMsg"], [17, 1, 1, "", "strMsg"]], "MultiTypeRegEntry": [[18, 10, 1, "", "AbstractRegEntry"], [18, 10, 1, "", "ArrayRegEntry"], [18, 10, 1, "", "BitVectorRegEntry"], [18, 10, 1, "", "CategoricalRegEntry"], [18, 10, 1, "", "DataFrameRegEntry"], [18, 10, 1, "", "GenRegEntry"], [18, 10, 1, "", "GroupByRegEntry"], [18, 10, 1, "", "IndexRegEntry"], [18, 7, 1, "", "RegistryEntryType"], [18, 10, 1, "", "SegArrayRegEntry"], [18, 10, 1, "", "SeriesRegEntry"], [18, 2, 1, "", "regLogger"]], "MultiTypeRegEntry.AbstractRegEntry": [[18, 6, 1, "", "assignableTypes"], [18, 6, 1, "", "entryType"], [18, 5, 1, "", "init"], [18, 6, 1, "", "name"], [18, 5, 1, "", "setName"]], "MultiTypeRegEntry.ArrayRegEntry": [[18, 6, 1, "", "array"], [18, 5, 1, "", "asMap"], [18, 5, 1, "", "init"]], "MultiTypeRegEntry.BitVectorRegEntry": [[18, 6, 1, "", "array"], [18, 5, 1, "", "asMap"], [18, 5, 1, "", "init"], [18, 6, 1, "", "reverse"], [18, 6, 1, "", "width"]], "MultiTypeRegEntry.CategoricalRegEntry": [[18, 5, 1, "", "asMap"], [18, 6, 1, "", "categories"], [18, 6, 1, "", "codes"], [18, 5, 1, "", "init"], [18, 6, 1, "", "naCode"], [18, 6, 1, "", "permutation"], [18, 6, 1, "", "segments"]], "MultiTypeRegEntry.DataFrameRegEntry": [[18, 5, 1, "", "asMap"], [18, 6, 1, "", "column_names"], [18, 6, 1, "", "columns"], [18, 6, 1, "", "idx"], [18, 5, 1, "", "init"]], "MultiTypeRegEntry.GenRegEntry": [[18, 5, 1, "", "init"], [18, 6, 1, "", "objType"], [18, 5, 1, "", "toDataFrameRegEntry"]], "MultiTypeRegEntry.GroupByRegEntry": [[18, 5, 1, "", "asMap"], [18, 5, 1, "", "init"], [18, 6, 1, "", "keys"], [18, 6, 1, "", "permutation"], [18, 6, 1, "", "segments"], [18, 6, 1, "", "uki"]], "MultiTypeRegEntry.IndexRegEntry": [[18, 5, 1, "", "asMap"], [18, 6, 1, "", "idx"], [18, 5, 1, "", "init"]], "MultiTypeRegEntry.RegistryEntryType": [[18, 8, 1, "", "AbstractRegEntry"], [18, 8, 1, "", "ArrayRegEntry"], [18, 8, 1, "", "BitVectorRegEntry"], [18, 8, 1, "", "CategoricalRegEntry"], [18, 8, 1, "", "DataFrameRegEntry"], [18, 8, 1, "", "GenRegEntry"], [18, 8, 1, "", "GroupByRegEntry"], [18, 8, 1, "", "IndexRegEntry"], [18, 8, 1, "", "SegArrayRegEntry"], [18, 8, 1, "", "SeriesRegEntry"]], "MultiTypeRegEntry.SegArrayRegEntry": [[18, 5, 1, "", "asMap"], [18, 5, 1, "", "init"], [18, 6, 1, "", "lengths"], [18, 6, 1, "", "segments"], [18, 6, 1, "", "values"]], "MultiTypeRegEntry.SeriesRegEntry": [[18, 5, 1, "", "asMap"], [18, 6, 1, "", "idx"], [18, 5, 1, "", "init"], [18, 6, 1, "", "values"]], "MultiTypeSymEntry": [[19, 10, 1, "", "AbstractSymEntry"], [19, 10, 1, "", "CompositeSymEntry"], [19, 10, 1, "", "GenSparseSymEntry"], [19, 10, 1, "", "GenSymEntry"], [19, 10, 1, "", "GeneratorSymEntry"], [19, 10, 1, "", "SegStringSymEntry"], [19, 10, 1, "", "SparseSymEntry"], [19, 10, 1, "", "SymEntry"], [19, 7, 1, "", "SymbolEntryType"], [19, 1, 1, "", "createSymEntry"], [19, 1, 1, "", "createTypedSymEntry"], [19, 2, 1, "", "genLogger"], [19, 1, 1, "", "getArraySpecFromEntry"], [19, 1, 1, "", "layoutToStr"], [19, 1, 1, "", "toCompositeSymEntry"], [19, 1, 1, "", "toGenSparseSymEntry"], [19, 1, 1, "", "toGenSymEntry"], [19, 1, 1, "", "toGeneratorSymEntry"], [19, 1, 1, "", "toSegStringSymEntry"], [19, 1, 1, "", "toSymEntry"], [19, 1, 1, "", "tupShapeString"]], "MultiTypeSymEntry.AbstractSymEntry": [[19, 6, 1, "", "assignableTypes"], [19, 6, 1, "", "entryType"], [19, 5, 1, "", "entry__str__"], [19, 5, 1, "", "getSizeEstimate"], [19, 5, 1, "", "init"], [19, 5, 1, "", "isAssignableTo"], [19, 6, 1, "", "name"], [19, 5, 1, "", "setName"]], "MultiTypeSymEntry.CompositeSymEntry": [[19, 5, 1, "", "attrib"], [19, 5, 1, "", "init"], [19, 6, 1, "", "ndim"], [19, 6, 1, "", "size"]], "MultiTypeSymEntry.GenSparseSymEntry": [[19, 5, 1, "", "attrib"], [19, 6, 1, "", "dtype"], [19, 5, 1, "", "entry__str__"], [19, 5, 1, "", "init"], [19, 6, 1, "", "itemsize"], [19, 6, 1, "", "layoutStr"], [19, 6, 1, "", "ndim"], [19, 6, 1, "", "nnz"], [19, 6, 1, "", "shape"], [19, 6, 1, "", "size"], [19, 5, 1, "", "toSparseSymEntry"]], "MultiTypeSymEntry.GenSymEntry": [[19, 5, 1, "", "attrib"], [19, 6, 1, "", "dtype"], [19, 5, 1, "", "entry__str__"], [19, 5, 1, "", "getSizeEstimate"], [19, 5, 1, "", "init"], [19, 6, 1, "", "itemsize"], [19, 6, 1, "", "ndim"], [19, 6, 1, "", "shape"], [19, 6, 1, "", "size"], [19, 5, 1, "", "toSymEntry"]], "MultiTypeSymEntry.GeneratorSymEntry": [[19, 6, 1, "", "etype"], [19, 6, 1, "", "generator"], [19, 5, 1, "", "init"], [19, 6, 1, "", "state"]], "MultiTypeSymEntry.SegStringSymEntry": [[19, 6, 1, "", "bytesEntry"], [19, 5, 1, "", "entry__str__"], [19, 6, 1, "", "etype"], [19, 5, 1, "", "getSizeEstimate"], [19, 5, 1, "", "init"], [19, 6, 1, "", "offsetsEntry"]], "MultiTypeSymEntry.SparseSymEntry": [[19, 6, 1, "", "a"], [19, 5, 1, "", "deinit"], [19, 6, 1, "", "dimensions"], [19, 5, 1, "", "entry__str__"], [19, 6, 1, "", "etype"], [19, 5, 1, "", "init"], [19, 6, 1, "", "matLayout"], [19, 6, 1, "", "tupShape"]], "MultiTypeSymEntry.SymEntry": [[19, 6, 1, "", "a"], [19, 5, 1, "", "aD"], [19, 5, 1, "", "deinit"], [19, 6, 1, "", "dimensions"], [19, 5, 1, "", "entry__str__"], [19, 6, 1, "", "etype"], [19, 5, 1, "", "init"], [19, 6, 1, "", "max_bits"], [19, 6, 1, "", "tupShape"]], "MultiTypeSymEntry.SymbolEntryType": [[19, 8, 1, "", "AbstractSymEntry"], [19, 8, 1, "", "AnythingSymEntry"], [19, 8, 1, "", "ComplexTypedArraySymEntry"], [19, 8, 1, "", "CompositeSymEntry"], [19, 8, 1, "", "GenSparseSymEntry"], [19, 8, 1, "", "GenSymEntry"], [19, 8, 1, "", "GeneratorSymEntry"], [19, 8, 1, "", "None"], [19, 8, 1, "", "PrimitiveTypedArraySymEntry"], [19, 8, 1, "", "SegStringSymEntry"], [19, 8, 1, "", "SparseSymEntry"], [19, 8, 1, "", "TypedArraySymEntry"], [19, 8, 1, "", "UnknownSymEntry"]], "MultiTypeSymbolTable": [[20, 10, 1, "", "SymTab"], [20, 1, 1, "", "getGenericSparseArrayEntry"], [20, 1, 1, "", "getGenericTypedArrayEntry"], [20, 1, 1, "", "getSegStringEntry"], [20, 2, 1, "", "mtLogger"]], "MultiTypeSymbolTable.SymTab": [[20, 5, 1, "", "addEntry"], [20, 5, 1, "", "attrib"], [20, 5, 1, "", "checkTable"], [20, 5, 1, "", "clear"], [20, 5, 1, "", "contains"], [20, 5, 1, "", "datarepr"], [20, 5, 1, "", "datastr"], [20, 5, 1, "", "deleteEntry"], [20, 5, 1, "", "dump"], [20, 5, 1, "", "findAll"], [20, 5, 1, "", "formatEntry"], [20, 5, 1, "", "getEntries"], [20, 5, 1, "", "info"], [20, 5, 1, "", "insert"], [20, 5, 1, "", "lookup"], [20, 5, 1, "", "memUsed"], [20, 5, 1, "", "nextName"], [20, 6, 1, "", "nid"], [20, 5, 1, "", "parseJson"], [20, 5, 1, "", "pretty"], [20, 6, 1, "", "registry"], [20, 6, 1, "", "serverid"], [20, 6, 1, "", "tab"], [20, 5, 1, "", "this"]], "NumPyDType": [[21, 7, 1, "", "DTK"], [21, 7, 1, "", "DType"], [21, 1, 1, "", "bool2str"], [21, 1, 1, "", "commonDType"], [21, 1, 1, "", "divDType"], [21, 1, 1, "", "dtype2str"], [21, 1, 1, "", "dtypeSize"], [21, 1, 1, "", "str2dtype"], [21, 1, 1, "", "type2fmt"], [21, 1, 1, "", "type2str"], [21, 1, 1, "", "typeSize"], [21, 1, 1, "", "whichDtype"]], "NumPyDType.DTK": [[21, 8, 1, "", "Bool"], [21, 8, 1, "", "Complex"], [21, 8, 1, "", "Float"], [21, 8, 1, "", "Integer"], [21, 8, 1, "", "Other"]], "NumPyDType.DType": [[21, 8, 1, "", "BigInt"], [21, 8, 1, "", "Bool"], [21, 8, 1, "", "Complex128"], [21, 8, 1, "", "Complex64"], [21, 8, 1, "", "Float32"], [21, 8, 1, "", "Float64"], [21, 8, 1, "", "Int16"], [21, 8, 1, "", "Int32"], [21, 8, 1, "", "Int64"], [21, 8, 1, "", "Int8"], [21, 8, 1, "", "Strings"], [21, 8, 1, "", "UInt16"], [21, 8, 1, "", "UInt32"], [21, 8, 1, "", "UInt64"], [21, 8, 1, "", "UInt8"], [21, 8, 1, "", "UNDEF"]], "RadixSortLSD": [[22, 4, 1, "", "KeysComparator"], [22, 4, 1, "", "KeysRanksComparator"], [22, 2, 1, "", "RSLSD_numTasks"], [22, 2, 1, "", "RSLSD_vv"], [22, 2, 1, "", "Tasks"], [22, 1, 1, "", "calcBlock"], [22, 1, 1, "", "calcGlobalIndex"], [22, 2, 1, "", "numTasks"], [22, 1, 1, "", "radixSortLSD"], [22, 1, 1, "", "radixSortLSD_keys"], [22, 1, 1, "", "radixSortLSD_keys_memEst"], [22, 1, 1, "", "radixSortLSD_memEst"], [22, 1, 1, "", "radixSortLSD_ranks"], [22, 2, 1, "", "rsLogger"], [22, 2, 1, "", "vv"]], "RadixSortLSD.KeysComparator": [[22, 5, 1, "", "key"]], "RadixSortLSD.KeysRanksComparator": [[22, 5, 1, "", "key"]], "Registry": [[23, 10, 1, "", "RegTab"], [23, 2, 1, "", "regLogger"]], "Registry.RegTab": [[23, 5, 1, "", "checkAvailability"], [23, 5, 1, "", "checkTable"], [23, 5, 1, "", "contains"], [23, 5, 1, "", "list_registry"], [23, 5, 1, "", "lookup"], [23, 5, 1, "", "register_array"], [23, 5, 1, "", "register_bitvector"], [23, 5, 1, "", "register_categorical"], [23, 5, 1, "", "register_categorical_components"], [23, 5, 1, "", "register_dataframe"], [23, 5, 1, "", "register_groupby"], [23, 5, 1, "", "register_index"], [23, 5, 1, "", "register_index_components"], [23, 5, 1, "", "register_segarray"], [23, 5, 1, "", "register_segarray_components"], [23, 5, 1, "", "register_series"], [23, 6, 1, "", "registered_entries"], [23, 6, 1, "", "tab"], [23, 5, 1, "", "unregister_array"], [23, 5, 1, "", "unregister_bitvector"], [23, 5, 1, "", "unregister_categorical"], [23, 5, 1, "", "unregister_categorical_components"], [23, 5, 1, "", "unregister_dataframe"], [23, 5, 1, "", "unregister_groupby"], [23, 5, 1, "", "unregister_index"], [23, 5, 1, "", "unregister_index_components"], [23, 5, 1, "", "unregister_segarray"], [23, 5, 1, "", "unregister_segarray_components"], [23, 5, 1, "", "unregister_series"]], "Security": [[24, 1, 1, "", "generateToken"], [24, 1, 1, "", "getArkoudaToken"], [24, 1, 1, "", "setArkoudaToken"]], "SegStringSort": [[25, 4, 1, "", "StringIntComparator"], [25, 1, 1, "", "calcBlock"], [25, 1, 1, "", "calcGlobalIndex"], [25, 1, 1, "", "gatherLongStrings"], [25, 1, 1, "", "getPivot"], [25, 1, 1, "", "radixSortLSD_raw"], [25, 2, 1, "", "ssLogger"], [25, 1, 1, "", "twoPhaseStringSort"]], "SegStringSort.StringIntComparator": [[25, 5, 1, "", "keyPart"]], "SegmentedComputation": [[26, 7, 1, "", "SegFunction"], [26, 1, 1, "", "computeOnSegments"], [26, 1, 1, "", "computeSegmentOwnership"]], "SegmentedComputation.SegFunction": [[26, 8, 1, "", "SipHash128"], [26, 8, 1, "", "StringCompareLiteralEq"], [26, 8, 1, "", "StringCompareLiteralNeq"], [26, 8, 1, "", "StringIsAlphaNumeric"], [26, 8, 1, "", "StringIsAlphabetic"], [26, 8, 1, "", "StringIsDecimal"], [26, 8, 1, "", "StringIsDigit"], [26, 8, 1, "", "StringIsEmpty"], [26, 8, 1, "", "StringIsLower"], [26, 8, 1, "", "StringIsSpace"], [26, 8, 1, "", "StringIsTitle"], [26, 8, 1, "", "StringIsUpper"], [26, 8, 1, "", "StringSearch"], [26, 8, 1, "", "StringToNumericIgnore"], [26, 8, 1, "", "StringToNumericReturnValidity"], [26, 8, 1, "", "StringToNumericStrict"]], "SegmentedString": [[27, 1, 1, "", "!="], [27, 1, 1, "", "=="], [27, 7, 1, "", "Fixes"], [27, 2, 1, "", "NULL_STRINGS_VALUE"], [27, 10, 1, "", "SegString"], [27, 2, 1, "", "SegmentedStringUseHash"], [27, 1, 1, "", "assembleSegStringFromParts"], [27, 1, 1, "", "checkCompile"], [27, 1, 1, "", "compare"], [27, 1, 1, "", "concat"], [27, 1, 1, "", "getSegString"], [27, 1, 1, "", "in1d"], [27, 1, 1, "", "interpretAsBytes"], [27, 1, 1, "", "interpretAsString"], [27, 1, 1, "", "memcmp"], [27, 1, 1, "", "segStrFull"], [27, 2, 1, "", "ssLogger"], [27, 1, 1, "", "stringBytesToUintArr"], [27, 1, 1, "", "stringCompareLiteralEq"], [27, 1, 1, "", "stringCompareLiteralNeq"], [27, 1, 1, "", "stringIsAlphaNumeric"], [27, 1, 1, "", "stringIsAlphabetic"], [27, 1, 1, "", "stringIsDecimal"], [27, 1, 1, "", "stringIsDigit"], [27, 1, 1, "", "stringIsEmpty"], [27, 1, 1, "", "stringIsLower"], [27, 1, 1, "", "stringIsSpace"], [27, 1, 1, "", "stringIsTitle"], [27, 1, 1, "", "stringIsUpper"], [27, 1, 1, "", "stringSearch"], [27, 1, 1, "", "unsafeCompileRegex"]], "SegmentedString.Fixes": [[27, 8, 1, "", "prefixes"], [27, 8, 1, "", "suffixes"]], "SegmentedString.SegString": [[27, 5, 1, "", "argGroup"], [27, 5, 1, "", "argsort"], [27, 5, 1, "", "bytesToUintArr"], [27, 5, 1, "", "capitalize"], [27, 6, 1, "", "composite"], [27, 5, 1, "", "ediff"], [27, 5, 1, "", "findAllMatches"], [27, 5, 1, "", "findMatchLocations"], [27, 5, 1, "", "findSubstringInBytes"], [27, 5, 1, "", "getFixes"], [27, 5, 1, "", "getLengths"], [27, 5, 1, "", "init"], [27, 5, 1, "", "isDecimal"], [27, 5, 1, "", "isLower"], [27, 5, 1, "", "isSorted"], [27, 5, 1, "", "isTitle"], [27, 5, 1, "", "isUpper"], [27, 5, 1, "", "isalnum"], [27, 5, 1, "", "isalpha"], [27, 5, 1, "", "isdigit"], [27, 5, 1, "", "isempty"], [27, 5, 1, "", "isspace"], [27, 5, 1, "", "lower"], [27, 6, 1, "", "nBytes"], [27, 6, 1, "", "name"], [27, 6, 1, "", "offsets"], [27, 5, 1, "", "peel"], [27, 5, 1, "", "peelRegex"], [27, 5, 1, "", "segStrWhere"], [27, 5, 1, "", "show"], [27, 5, 1, "", "siphash"], [27, 6, 1, "", "size"], [27, 5, 1, "", "stick"], [27, 5, 1, "", "strip"], [27, 5, 1, "", "sub"], [27, 5, 1, "", "substringSearch"], [27, 5, 1, "", "this"], [27, 5, 1, "", "title"], [27, 5, 1, "", "upper"], [27, 6, 1, "", "values"]], "ServerConfig": [[28, 2, 1, "", "BSLASH"], [28, 7, 1, "", "Deployment"], [28, 2, 1, "", "ESCAPED_QUOTES"], [28, 2, 1, "", "MaxArrayDims"], [28, 7, 1, "", "ObjType"], [28, 2, 1, "", "Q"], [28, 2, 1, "", "QCQ"], [28, 2, 1, "", "RSLSD_bitsPerDigit"], [28, 2, 1, "", "ServerPort"], [28, 1, 1, "", "appendToConfigStr"], [28, 2, 1, "", "arkoudaVersion"], [28, 2, 1, "", "authenticate"], [28, 2, 1, "", "autoShutdown"], [28, 2, 1, "", "chplVersionArkouda"], [28, 1, 1, "", "createConfig"], [28, 2, 1, "", "deployment"], [28, 1, 1, "", "getByteorder"], [28, 1, 1, "", "getChplVersion"], [28, 1, 1, "", "getConfig"], [28, 1, 1, "", "getConnectHostname"], [28, 1, 1, "", "getEnv"], [28, 1, 1, "", "getEnvInt"], [28, 1, 1, "", "getMemLimit"], [28, 1, 1, "", "getMemUsed"], [28, 1, 1, "", "getPhysicalMemHere"], [28, 1, 1, "", "get_hostname"], [28, 2, 1, "", "logChannel"], [28, 2, 1, "", "logCommands"], [28, 2, 1, "", "logLevel"], [28, 2, 1, "", "memHighWater"], [28, 1, 1, "", "overMemLimit"], [28, 2, 1, "", "perLocaleMemLimit"], [28, 2, 1, "", "regexMaxCaptures"], [28, 2, 1, "", "saveUsedModules"], [28, 2, 1, "", "scLogger"], [28, 2, 1, "", "serverConnectionInfo"], [28, 2, 1, "", "serverHostname"], [28, 2, 1, "", "serverInfoNoSplash"], [28, 2, 1, "", "trace"], [28, 2, 1, "", "usedModulesFmt"]], "ServerConfig.Deployment": [[28, 8, 1, "", "KUBERNETES"], [28, 8, 1, "", "STANDARD"]], "ServerConfig.ObjType": [[28, 8, 1, "", "ARRAYVIEW"], [28, 8, 1, "", "BITVECTOR"], [28, 8, 1, "", "CATEGORICAL"], [28, 8, 1, "", "DATAFRAME"], [28, 8, 1, "", "DATETIME"], [28, 8, 1, "", "GROUPBY"], [28, 8, 1, "", "INDEX"], [28, 8, 1, "", "IPV4"], [28, 8, 1, "", "MULTIINDEX"], [28, 8, 1, "", "PDARRAY"], [28, 8, 1, "", "SEGARRAY"], [28, 8, 1, "", "SERIES"], [28, 8, 1, "", "STRINGS"], [28, 8, 1, "", "TIMEDELTA"], [28, 8, 1, "", "UNKNOWN"]], "ServerConfig.bytes": [[28, 5, 1, "", "splitMsgToTuple"]], "ServerConfig.string": [[28, 5, 1, "", "splitMsgToTuple"]], "ServerDaemon": [[29, 10, 1, "", "ArkoudaServerDaemon"], [29, 10, 1, "", "DefaultServerDaemon"], [29, 10, 1, "", "ExternalIntegrationServerDaemon"], [29, 10, 1, "", "MetricsServerDaemon"], [29, 7, 1, "", "ServerDaemonType"], [29, 10, 1, "", "ServerStatusDaemon"], [29, 1, 1, "", "getDaemonTypes"], [29, 1, 1, "", "getServerDaemon"], [29, 1, 1, "", "getServerDaemons"], [29, 1, 1, "", "integrationEnabled"], [29, 1, 1, "", "metricsEnabled"], [29, 1, 1, "", "multipleServerDaemons"], [29, 1, 1, "", "register"], [29, 2, 1, "", "sdLogger"], [29, 2, 1, "", "serverDaemonTypes"]], "ServerDaemon.ArkoudaServerDaemon": [[29, 5, 1, "", "extractRequest"], [29, 6, 1, "", "port"], [29, 5, 1, "", "requestShutdown"], [29, 5, 1, "", "run"], [29, 5, 1, "", "shutdown"], [29, 6, 1, "", "shutdownDaemon"], [29, 6, 1, "", "st"]], "ServerDaemon.DefaultServerDaemon": [[29, 6, 1, "", "arkDirectory"], [29, 5, 1, "", "authenticateUser"], [29, 6, 1, "", "connectUrl"], [29, 6, 1, "", "context"], [29, 5, 1, "", "createServerConnectionInfo"], [29, 5, 1, "", "deleteServerConnectionInfo"], [29, 5, 1, "", "getConnectUrl"], [29, 5, 1, "", "getErrorName"], [29, 5, 1, "", "init"], [29, 5, 1, "", "initArkoudaDirectory"], [29, 5, 1, "", "printServerSplashMessage"], [29, 5, 1, "", "processErrorMessageMetrics"], [29, 5, 1, "", "processMetrics"], [29, 5, 1, "", "registerServerCommands"], [29, 6, 1, "", "repCount"], [29, 6, 1, "", "reqCount"], [29, 5, 1, "", "requestShutdown"], [29, 5, 1, "", "run"], [29, 5, 1, "", "sendRepMsg"], [29, 6, 1, "", "serverToken"], [29, 5, 1, "", "shutdown"], [29, 6, 1, "", "socket"]], "ServerDaemon.ExternalIntegrationServerDaemon": [[29, 5, 1, "", "run"], [29, 5, 1, "", "shutdown"]], "ServerDaemon.MetricsServerDaemon": [[29, 6, 1, "", "context"], [29, 5, 1, "", "init"], [29, 5, 1, "", "run"], [29, 6, 1, "", "socket"]], "ServerDaemon.ServerDaemonType": [[29, 8, 1, "", "DEFAULT"], [29, 8, 1, "", "INTEGRATION"], [29, 8, 1, "", "METRICS"], [29, 8, 1, "", "STATUS"]], "ServerDaemon.ServerStatusDaemon": [[29, 6, 1, "", "context"], [29, 5, 1, "", "init"], [29, 5, 1, "", "run"], [29, 6, 1, "", "socket"]], "ServerErrorStrings": [[30, 10, 1, "", "ErrorWithMsg"], [30, 1, 1, "", "incompatibleArgumentsError"], [30, 1, 1, "", "notImplementedError"], [30, 1, 1, "", "unknownError"], [30, 1, 1, "", "unknownSymbolError"], [30, 1, 1, "", "unrecognizedTypeError"], [30, 1, 1, "", "unsupportedTypeError"]], "ServerErrorStrings.ErrorWithMsg": [[30, 6, 1, "", "msg"]], "ServerErrors": [[31, 10, 1, "", "ArgumentError"], [31, 10, 1, "", "ConfigurationError"], [31, 10, 1, "", "DatasetNotFoundError"], [31, 10, 1, "", "ErrorWithContext"], [31, 10, 1, "", "HDF5FileFormatError"], [31, 10, 1, "", "IOError"], [31, 10, 1, "", "MismatchedAppendError"], [31, 10, 1, "", "NotHDF5FileError"], [31, 10, 1, "", "NotImplementedError"], [31, 10, 1, "", "OutOfBoundsError"], [31, 10, 1, "", "OverMemoryLimitError"], [31, 10, 1, "", "SegStringError"], [31, 10, 1, "", "UnknownSymbolError"], [31, 10, 1, "", "UnsupportedOSError"], [31, 10, 1, "", "WriteModeError"], [31, 1, 1, "", "generateErrorContext"], [31, 1, 1, "", "getErrorWithContext"]], "ServerErrors.ArgumentError": [[31, 5, 1, "", "init"]], "ServerErrors.ConfigurationError": [[31, 5, 1, "", "init"]], "ServerErrors.DatasetNotFoundError": [[31, 5, 1, "", "init"]], "ServerErrors.ErrorWithContext": [[31, 6, 1, "", "errorClass"], [31, 5, 1, "", "init"], [31, 6, 1, "", "lineNumber"], [31, 6, 1, "", "moduleName"], [31, 5, 1, "", "publish"], [31, 6, 1, "", "publishMsg"], [31, 6, 1, "", "routineName"]], "ServerErrors.HDF5FileFormatError": [[31, 5, 1, "", "init"]], "ServerErrors.IOError": [[31, 5, 1, "", "init"]], "ServerErrors.MismatchedAppendError": [[31, 5, 1, "", "init"]], "ServerErrors.NotHDF5FileError": [[31, 5, 1, "", "init"]], "ServerErrors.NotImplementedError": [[31, 5, 1, "", "init"]], "ServerErrors.OverMemoryLimitError": [[31, 5, 1, "", "init"]], "ServerErrors.SegStringError": [[31, 5, 1, "", "init"]], "ServerErrors.UnknownSymbolError": [[31, 5, 1, "", "init"]], "ServerErrors.UnsupportedOSError": [[31, 5, 1, "", "init"]], "ServerErrors.WriteModeError": [[31, 5, 1, "", "init"]], "SipHash": [[32, 1, 1, "", "ROTL"], [32, 2, 1, "", "cROUNDS"], [32, 2, 1, "", "dROUNDS"], [32, 2, 1, "", "defaultSipHashKey"], [32, 2, 1, "", "shLogger"], [32, 1, 1, "", "sipHash128"], [32, 1, 1, "", "sipHash64"]], "SparseMatrix": [[33, 1, 1, "", "colMajorExScan"], [33, 1, 1, "", "denseMatMatMult"], [33, 1, 1, "", "fillSparseMatrix"], [33, 1, 1, "", "getGrid"], [33, 1, 1, "", "getLSA"], [33, 1, 1, "", "getLSD"], [33, 1, 1, "", "randSparseMatrix"], [33, 1, 1, "", "rowMajorExScan"], [33, 1, 1, "", "sparseMatMatMult"], [33, 1, 1, "", "sparseMatToPdarray"]], "SpsMatUtil": [[34, 7, 1, "", "Layout"], [34, 1, 1, "", "emptySparseDomLike"], [34, 1, 1, "", "makeSparseMat"], [34, 10, 1, "", "merge"], [34, 2, 1, "", "rands"], [34, 2, 1, "", "seed"], [34, 4, 1, "", "sparseMatDat"], [34, 1, 1, "", "writeSparseMatrix"]], "SpsMatUtil.Layout": [[34, 8, 1, "", "CSC"], [34, 8, 1, "", "CSR"]], "SpsMatUtil.merge": [[34, 5, 1, "", "accumulate"], [34, 5, 1, "", "accumulateOntoState"], [34, 5, 1, "", "clone"], [34, 5, 1, "", "combine"], [34, 6, 1, "", "eltType"], [34, 5, 1, "", "generate"], [34, 5, 1, "", "identity"], [34, 6, 1, "", "value"]], "SpsMatUtil.sparseMatDat": [[34, 5, 1, "", "add"]], "StatusMsg": [[35, 1, 1, "", "getMemoryStatusMsg"], [35, 2, 1, "", "sLogger"]], "SymArrayDmap": [[36, 7, 1, "", "Dmap"], [36, 2, 1, "", "MyDmap"], [36, 1, 1, "", "makeDistArray"], [36, 1, 1, "", "makeDistDom"], [36, 1, 1, "", "makeDistDomType"], [36, 1, 1, "", "makeSparseArray"], [36, 1, 1, "", "makeSparseDomain"]], "SymArrayDmap.Dmap": [[36, 8, 1, "", "blockDist"], [36, 8, 1, "", "defaultRectangular"]], "Unique": [[37, 2, 1, "", "uLogger"], [37, 1, 1, "", "uniqueFromSorted"], [37, 1, 1, "", "uniqueFromTruth"], [37, 1, 1, "", "uniqueGroup"], [37, 1, 1, "", "uniqueSort"], [37, 1, 1, "", "uniqueSortWithInverse"]], "arkouda_server": [[38, 2, 1, "", "asLogger"], [38, 1, 1, "", "main"]]}, "objtypes": {"0": "chpl:module", "1": "chpl:function", "2": "chpl:data", "3": "chpl:iterfunction", "4": "chpl:record", "5": "chpl:method", "6": "chpl:attribute", "7": "chpl:enum", "8": "chpl:enumconstant", "9": "chpl:itermethod", "10": "chpl:class"}, "objnames": {"0": ["chpl", "module", " module"], "1": ["chpl", "function", " function"], "2": ["chpl", "data", " data"], "3": ["chpl", "iterfunction", " iterfunction"], "4": ["chpl", "record", " record"], "5": ["chpl", "method", " method"], "6": ["chpl", "attribute", " attribute"], "7": ["chpl", "enum", " enum"], "8": ["chpl", "enumconstant", " enumconstant"], "9": ["chpl", "itermethod", " itermethod"], "10": ["chpl", "class", " class"]}, "titleterms": {"chpldoc": 0, "document": 0, "indic": 0, "tabl": 0, "aryutil": 1, "bigintmsg": 2, "cast": 3, "commaggreg": 4, "bigintegeraggreg": 5, "commprimit": 6, "commandmap": 7, "externalintegr": 8, "fileio": 9, "gensymio": 10, "ioutil": 11, "in1d": 12, "log": 13, "memorymgmt": 14, "messag": 15, "metricsmsg": 16, "msgprocess": 17, "multityperegentri": 18, "multitypesymentri": 19, "multitypesymbolt": 20, "numpydtyp": 21, "radixsortlsd": 22, "registri": 23, "secur": 24, "segstringsort": 25, "segmentedcomput": 26, "segmentedstr": 27, "serverconfig": 28, "serverdaemon": 29, "servererrorstr": 30, "servererror": 31, "siphash": 32, "sparsematrix": 33, "spsmatutil": 34, "statusmsg": 35, "symarraydmap": 36, "uniqu": 37, "arkouda_serv": 38, "arkoudasortcompat": 39, "arkoudasparsematrixcompat": 40}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx": 60}, "alltitles": {"chpldoc documentation": [[0, "chpldoc-documentation"]], "Indices and tables": [[0, "indices-and-tables"]], "AryUtil": [[1, "aryutil"]], "BigIntMsg": [[2, "bigintmsg"]], "Cast": [[3, "cast"]], "CommAggregation": [[4, "commaggregation"]], "BigIntegerAggregation": [[5, "bigintegeraggregation"]], "CommPrimitives": [[6, "commprimitives"]], "CommandMap": [[7, "commandmap"]], "ExternalIntegration": [[8, "externalintegration"]], "FileIO": [[9, "fileio"]], "GenSymIO": [[10, "gensymio"]], "IOUtils": [[11, "ioutils"]], "In1d": [[12, "in1d"]], "Logging": [[13, "logging"]], "MemoryMgmt": [[14, "memorymgmt"]], "Message": [[15, "message"]], "MetricsMsg": [[16, "metricsmsg"]], "MsgProcessing": [[17, "msgprocessing"]], "MultiTypeRegEntry": [[18, "multityperegentry"]], "MultiTypeSymEntry": [[19, "multitypesymentry"]], "MultiTypeSymbolTable": [[20, "multitypesymboltable"]], "NumPyDType": [[21, "numpydtype"]], "RadixSortLSD": [[22, "radixsortlsd"]], "Registry": [[23, "registry"]], "Security": [[24, "security"]], "SegStringSort": [[25, "segstringsort"]], "SegmentedComputation": [[26, "segmentedcomputation"]], "SegmentedString": [[27, "segmentedstring"]], "ServerConfig": [[28, "serverconfig"]], "ServerDaemon": [[29, "serverdaemon"]], "ServerErrorStrings": [[30, "servererrorstrings"]], "ServerErrors": [[31, "servererrors"]], "SipHash": [[32, "siphash"]], "SparseMatrix": [[33, "sparsematrix"]], "SpsMatUtil": [[34, "spsmatutil"]], "StatusMsg": [[35, "statusmsg"]], "SymArrayDmap": [[36, "symarraydmap"]], "Unique": [[37, "unique"]], "arkouda_server": [[38, "arkouda-server"]], "ArkoudaSortCompat": [[39, "arkoudasortcompat"]], "ArkoudaSparseMatrixCompat": [[40, "arkoudasparsematrixcompat"]]}, "indexentries": {"aryutil (module)": [[1, "module-AryUtil"]], "astats() (in module aryutil)": [[1, "AryUtil.aStats"]], "accumranksizes (aryutil.orderer attribute)": [[1, "AryUtil.orderer.accumRankSizes"]], "appendaxis() (in module aryutil)": [[1, "AryUtil.appendAxis"]], "aulogger (in module aryutil)": [[1, "AryUtil.auLogger"]], "axisslices() (in module aryutil)": [[1, "AryUtil.axisSlices"]], "bitsperdigit (in module aryutil)": [[1, "AryUtil.bitsPerDigit"]], "broadcastshape() (in module aryutil)": [[1, "AryUtil.broadcastShape"]], "concatarrays() (in module aryutil)": [[1, "AryUtil.concatArrays"]], "contiguousindices() (in module aryutil)": [[1, "AryUtil.contiguousIndices"]], "deinit() (aryutil.lowlevellocalizingslice method)": [[1, "AryUtil.lowLevelLocalizingSlice.deinit"]], "domoffaxis() (in module aryutil)": [[1, "AryUtil.domOffAxis"]], "domonaxis() (in module aryutil)": [[1, "AryUtil.domOnAxis"]], "filluniform() (in module aryutil)": [[1, "AryUtil.fillUniform"]], "flatten() (in module aryutil)": [[1, "AryUtil.flatten"]], "formatary() (in module aryutil)": [[1, "AryUtil.formatAry"]], "getbitwidth() (in module aryutil)": [[1, "AryUtil.getBitWidth"]], "getdigit() (in module aryutil)": [[1, "AryUtil.getDigit"]], "getnumdigitsnumericarrays() (in module aryutil)": [[1, "AryUtil.getNumDigitsNumericArrays"]], "indextoorder() (aryutil.orderer method)": [[1, "AryUtil.orderer.indexToOrder"]], "init() (aryutil.lowlevellocalizingslice method)": [[1, "AryUtil.lowLevelLocalizingSlice.init"]], "init() (aryutil.orderer method)": [[1, "AryUtil.orderer.init"]], "isowned (aryutil.lowlevellocalizingslice attribute)": [[1, "AryUtil.lowLevelLocalizingSlice.isOwned"]], "issorted() (in module aryutil)": [[1, "AryUtil.isSorted"]], "issortedover() (in module aryutil)": [[1, "AryUtil.isSortedOver"]], "lowlevellocalizingslice (record in aryutil)": [[1, "AryUtil.lowLevelLocalizingSlice"]], "mergenumericarrays() (in module aryutil)": [[1, "AryUtil.mergeNumericArrays"]], "offset() (in module aryutil)": [[1, "AryUtil.offset"]], "orderer (record in aryutil)": [[1, "AryUtil.orderer"]], "printary() (in module aryutil)": [[1, "AryUtil.printAry"]], "printownership() (in module aryutil)": [[1, "AryUtil.printOwnership"]], "printthresh (in module aryutil)": [[1, "AryUtil.printThresh"]], "ptr (aryutil.lowlevellocalizingslice attribute)": [[1, "AryUtil.lowLevelLocalizingSlice.ptr"]], "rank (aryutil.orderer attribute)": [[1, "AryUtil.orderer.rank"]], "reducedshape() (in module aryutil)": [[1, "AryUtil.reducedShape"]], "removeaxis() (in module aryutil)": [[1, "AryUtil.removeAxis"]], "removedegenranks() (in module aryutil)": [[1, "AryUtil.removeDegenRanks"]], "subdomchunk() (in module aryutil)": [[1, "AryUtil.subDomChunk"]], "t (aryutil.lowlevellocalizingslice attribute)": [[1, "AryUtil.lowLevelLocalizingSlice.t"]], "unflatten() (in module aryutil)": [[1, "AryUtil.unflatten"]], "validatearrayssamelength() (in module aryutil)": [[1, "AryUtil.validateArraysSameLength"]], "validatenegativeaxes() (in module aryutil)": [[1, "AryUtil.validateNegativeAxes"]], "bigintmsg (module)": [[2, "module-BigIntMsg"]], "bilogger (in module bigintmsg)": [[2, "BigIntMsg.biLogger"]], "bigintcreationmsg() (in module bigintmsg)": [[2, "BigIntMsg.bigIntCreationMsg"]], "biginttouintarraysmsg() (in module bigintmsg)": [[2, "BigIntMsg.bigintToUintArraysMsg"]], "getmaxbitsmsg() (in module bigintmsg)": [[2, "BigIntMsg.getMaxBitsMsg"]], "setmaxbitsmsg() (in module bigintmsg)": [[2, "BigIntMsg.setMaxBitsMsg"]], "cast (module)": [[3, "module-Cast"]], "errormode (enum in cast)": [[3, "Cast.ErrorMode"]], "castgensymentrytostring() (in module cast)": [[3, "Cast.castGenSymEntryToString"]], "castlogger (in module cast)": [[3, "Cast.castLogger"]], "caststringtobigint() (in module cast)": [[3, "Cast.castStringToBigInt"]], "caststringtosymentry() (in module cast)": [[3, "Cast.castStringToSymEntry"]], "stringtonumericignore() (in module cast)": [[3, "Cast.stringToNumericIgnore"]], "stringtonumericreturnvalidity() (in module cast)": [[3, "Cast.stringToNumericReturnValidity"]], "stringtonumericstrict() (in module cast)": [[3, "Cast.stringToNumericStrict"]], "commaggregation (module)": [[4, "module-CommAggregation"]], "dstaggregator (record in commaggregation)": [[4, "CommAggregation.DstAggregator"]], "dstunorderedaggregator (record in commaggregation)": [[4, "CommAggregation.DstUnorderedAggregator"]], "get() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.GET"]], "put() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.PUT"]], "srcaggregator (record in commaggregation)": [[4, "CommAggregation.SrcAggregator"]], "srcunorderedaggregator (record in commaggregation)": [[4, "CommAggregation.SrcUnorderedAggregator"]], "aggtype (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.aggType"]], "aggtype (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.aggType"]], "bufferidxalloc() (in module commaggregation)": [[4, "CommAggregation.bufferIdxAlloc"]], "bufferidxs (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.bufferIdxs"]], "bufferidxs (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.bufferIdxs"]], "buffersize (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.bufferSize"]], "buffersize (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.bufferSize"]], "cachedalloc() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.cachedAlloc"]], "copy() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.copy"]], "copy() (commaggregation.dstunorderedaggregator method)": [[4, "CommAggregation.DstUnorderedAggregator.copy"]], "copy() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.copy"]], "copy() (commaggregation.srcunorderedaggregator method)": [[4, "CommAggregation.SrcUnorderedAggregator.copy"]], "data (commaggregation.remotebuffer attribute)": [[4, "CommAggregation.remoteBuffer.data"]], "deinit() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.deinit"]], "deinit() (commaggregation.dstunorderedaggregator method)": [[4, "CommAggregation.DstUnorderedAggregator.deinit"]], "deinit() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.deinit"]], "deinit() (commaggregation.srcunorderedaggregator method)": [[4, "CommAggregation.SrcUnorderedAggregator.deinit"]], "deinit() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.deinit"]], "dstaddrs (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.dstAddrs"]], "elemtype (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.elemType"]], "elemtype (commaggregation.dstunorderedaggregator attribute)": [[4, "CommAggregation.DstUnorderedAggregator.elemType"]], "elemtype (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.elemType"]], "elemtype (commaggregation.srcunorderedaggregator attribute)": [[4, "CommAggregation.SrcUnorderedAggregator.elemType"]], "elemtype (commaggregation.remotebuffer attribute)": [[4, "CommAggregation.remoteBuffer.elemType"]], "flush() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.flush"]], "flush() (commaggregation.dstunorderedaggregator method)": [[4, "CommAggregation.DstUnorderedAggregator.flush"]], "flush() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.flush"]], "flush() (commaggregation.srcunorderedaggregator method)": [[4, "CommAggregation.SrcUnorderedAggregator.flush"]], "flushbuffer() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.flushBuffer"]], "flushbuffer() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.flushBuffer"]], "lbuffers (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.lBuffers"]], "lsrcaddrs (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.lSrcAddrs"]], "lsrcvals (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.lSrcVals"]], "lastlocale (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.lastLocale"]], "lastlocale (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.lastLocale"]], "loc (commaggregation.remotebuffer attribute)": [[4, "CommAggregation.remoteBuffer.loc"]], "localfree() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.localFree"]], "localiter() (commaggregation.remotebuffer iterator)": [[4, "CommAggregation.remoteBuffer.localIter"]], "markfreed() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.markFreed"]], "mylocalespace (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.myLocaleSpace"]], "mylocalespace (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.myLocaleSpace"]], "newdstaggregator() (in module commaggregation)": [[4, "CommAggregation.newDstAggregator"]], "newsrcaggregator() (in module commaggregation)": [[4, "CommAggregation.newSrcAggregator"]], "opsuntilyield (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.opsUntilYield"]], "opsuntilyield (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.opsUntilYield"]], "postinit() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.postinit"]], "postinit() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.postinit"]], "rbuffers (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.rBuffers"]], "rsrcaddrs (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.rSrcAddrs"]], "rsrcvals (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.rSrcVals"]], "remotebuffer (record in commaggregation)": [[4, "CommAggregation.remoteBuffer"]], "size (commaggregation.remotebuffer attribute)": [[4, "CommAggregation.remoteBuffer.size"]], "bigintegeraggregation (module)": [[5, "module-BigIntegerAggregation"]], "dstaggregatorbigint (record in bigintegeraggregation)": [[5, "BigIntegerAggregation.DstAggregatorBigint"]], "srcaggregatorbigint (record in bigintegeraggregation)": [[5, "BigIntegerAggregation.SrcAggregatorBigint"]], "aggtype (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.aggType"]], "aggtype (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.aggType"]], "bufferidxs (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.bufferIdxs"]], "bufferidxs (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.bufferIdxs"]], "buffersize (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.bufferSize"]], "buffersize (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.bufferSize"]], "copy() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.copy"]], "copy() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.copy"]], "deinit() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.deinit"]], "deinit() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.deinit"]], "deserializefrom() (bigintegeraggregation.bigint method)": [[5, "BigIntegerAggregation.bigint.deserializeFrom"]], "dstaddrs (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.dstAddrs"]], "flush() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.flush"]], "flush() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.flush"]], "flushbuffer() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.flushBuffer"]], "flushbuffer() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.flushBuffer"]], "lbuffers (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.lBuffers"]], "lsrcaddrs (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.lSrcAddrs"]], "lsrcvals (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.lSrcVals"]], "lastlocale (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.lastLocale"]], "lastlocale (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.lastLocale"]], "mylocalespace (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.myLocaleSpace"]], "mylocalespace (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.myLocaleSpace"]], "opsuntilyield (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.opsUntilYield"]], "opsuntilyield (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.opsUntilYield"]], "postinit() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.postinit"]], "postinit() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.postinit"]], "rbuffers (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.rBuffers"]], "rsrcaddrs (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.rSrcAddrs"]], "rsrcvals (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.rSrcVals"]], "serializeinto() (bigintegeraggregation.bigint method)": [[5, "BigIntegerAggregation.bigint.serializeInto"]], "serializedsize() (bigintegeraggregation.bigint method)": [[5, "BigIntegerAggregation.bigint.serializedSize"]], "uintbuffersize (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.uintBufferSize"]], "commprimitives (module)": [[6, "module-CommPrimitives"]], "getaddr() (in module commprimitives)": [[6, "CommPrimitives.getAddr"]], "commandmap (module)": [[7, "module-CommandMap"]], "akmsgsign() (in module commandmap)": [[7, "CommandMap.akMsgSign"]], "commandmap (in module commandmap)": [[7, "CommandMap.commandMap"]], "dumpcommandmap() (in module commandmap)": [[7, "CommandMap.dumpCommandMap"]], "executecommand() (in module commandmap)": [[7, "CommandMap.executeCommand"]], "modulemap (in module commandmap)": [[7, "CommandMap.moduleMap"]], "registerfunction() (in module commandmap)": [[7, "CommandMap.registerFunction"]], "usedmodules (in module commandmap)": [[7, "CommandMap.usedModules"]], "writeusedmodules() (in module commandmap)": [[7, "CommandMap.writeUsedModules"]], "writeusedmodulesjson() (in module commandmap)": [[7, "CommandMap.writeUsedModulesJson"]], "curlinfo_response_code (in module externalintegration)": [[8, "ExternalIntegration.CURLINFO_RESPONSE_CODE"]], "curlopt_cainfo (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_CAINFO"]], "curlopt_capath (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_CAPATH"]], "curlopt_customrequest (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_CUSTOMREQUEST"]], "curlopt_failonerror (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_FAILONERROR"]], "curlopt_httpheader (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_HTTPHEADER"]], "curlopt_keypasswd (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_KEYPASSWD"]], "curlopt_password (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_PASSWORD"]], "curlopt_postfields (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_POSTFIELDS"]], "curlopt_sslcert (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_SSLCERT"]], "curlopt_sslcerttype (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_SSLCERTTYPE"]], "curlopt_sslkey (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_SSLKEY"]], "curlopt_ssl_verifypeer (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_SSL_VERIFYPEER"]], "curlopt_url (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_URL"]], "curlopt_username (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_USERNAME"]], "curlopt_use_ssl (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_USE_SSL"]], "curlopt_verbose (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_VERBOSE"]], "channel (class in externalintegration)": [[8, "ExternalIntegration.Channel"]], "channeltype (enum in externalintegration)": [[8, "ExternalIntegration.ChannelType"]], "externalintegration (module)": [[8, "module-ExternalIntegration"]], "filechannel (class in externalintegration)": [[8, "ExternalIntegration.FileChannel"]], "httpchannel (class in externalintegration)": [[8, "ExternalIntegration.HttpChannel"]], "httprequestformat (enum in externalintegration)": [[8, "ExternalIntegration.HttpRequestFormat"]], "httprequesttype (enum in externalintegration)": [[8, "ExternalIntegration.HttpRequestType"]], "httpschannel (class in externalintegration)": [[8, "ExternalIntegration.HttpsChannel"]], "serviceendpoint (enum in externalintegration)": [[8, "ExternalIntegration.ServiceEndpoint"]], "systemtype (enum in externalintegration)": [[8, "ExternalIntegration.SystemType"]], "append (externalintegration.filechannel attribute)": [[8, "ExternalIntegration.FileChannel.append"]], "cacert (externalintegration.httpschannel attribute)": [[8, "ExternalIntegration.HttpsChannel.caCert"]], "configurechannel() (externalintegration.httpchannel method)": [[8, "ExternalIntegration.HttpChannel.configureChannel"]], "configurechannel() (externalintegration.httpschannel method)": [[8, "ExternalIntegration.HttpsChannel.configureChannel"]], "deregisterfromexternalsystem() (in module externalintegration)": [[8, "ExternalIntegration.deregisterFromExternalSystem"]], "deregisterfromkubernetes() (in module externalintegration)": [[8, "ExternalIntegration.deregisterFromKubernetes"]], "eilogger (in module externalintegration)": [[8, "ExternalIntegration.eiLogger"]], "generateheader() (externalintegration.httpchannel method)": [[8, "ExternalIntegration.HttpChannel.generateHeader"]], "generateheader() (externalintegration.httpschannel method)": [[8, "ExternalIntegration.HttpsChannel.generateHeader"]], "getconnecthostip() (in module externalintegration)": [[8, "ExternalIntegration.getConnectHostIp"]], "getkubernetesderegisterparameters() (in module externalintegration)": [[8, "ExternalIntegration.getKubernetesDeregisterParameters"]], "getkubernetesregistrationparameters() (in module externalintegration)": [[8, "ExternalIntegration.getKubernetesRegistrationParameters"]], "init() (externalintegration.filechannel method)": [[8, "ExternalIntegration.FileChannel.init"]], "init() (externalintegration.httpchannel method)": [[8, "ExternalIntegration.HttpChannel.init"]], "init() (externalintegration.httpschannel method)": [[8, "ExternalIntegration.HttpsChannel.init"]], "path (externalintegration.filechannel attribute)": [[8, "ExternalIntegration.FileChannel.path"]], "registerwithexternalsystem() (in module externalintegration)": [[8, "ExternalIntegration.registerWithExternalSystem"]], "registerwithkubernetes() (in module externalintegration)": [[8, "ExternalIntegration.registerWithKubernetes"]], "requestformat (externalintegration.httpchannel attribute)": [[8, "ExternalIntegration.HttpChannel.requestFormat"]], "requesttype (externalintegration.httpchannel attribute)": [[8, "ExternalIntegration.HttpChannel.requestType"]], "token (externalintegration.httpschannel attribute)": [[8, "ExternalIntegration.HttpsChannel.token"]], "url (externalintegration.httpchannel attribute)": [[8, "ExternalIntegration.HttpChannel.url"]], "write() (externalintegration.channel method)": [[8, "ExternalIntegration.Channel.write"]], "write() (externalintegration.filechannel method)": [[8, "ExternalIntegration.FileChannel.write"]], "write() (externalintegration.httpchannel method)": [[8, "ExternalIntegration.HttpChannel.write"]], "fileio (module)": [[9, "module-FileIO"]], "filetype (enum in fileio)": [[9, "FileIO.FileType"]], "magic_arrow (in module fileio)": [[9, "FileIO.MAGIC_ARROW"]], "magic_csv (in module fileio)": [[9, "FileIO.MAGIC_CSV"]], "magic_hdf5 (in module fileio)": [[9, "FileIO.MAGIC_HDF5"]], "magic_parquet (in module fileio)": [[9, "FileIO.MAGIC_PARQUET"]], "appendfile() (in module fileio)": [[9, "FileIO.appendFile"]], "delimitedfiletomap() (in module fileio)": [[9, "FileIO.delimitedFileToMap"]], "domain_intersection() (in module fileio)": [[9, "FileIO.domain_intersection"]], "ensureclose() (in module fileio)": [[9, "FileIO.ensureClose"]], "fiologger (in module fileio)": [[9, "FileIO.fioLogger"]], "generatefilename() (in module fileio)": [[9, "FileIO.generateFilename"]], "generatefilenames() (in module fileio)": [[9, "FileIO.generateFilenames"]], "getfilemetadata() (in module fileio)": [[9, "FileIO.getFileMetadata"]], "getfiletype() (in module fileio)": [[9, "FileIO.getFileType"]], "getfiletypebymagic() (in module fileio)": [[9, "FileIO.getFileTypeByMagic"]], "getfiletypemsg() (in module fileio)": [[9, "FileIO.getFileTypeMsg"]], "getfirsteightbytesfromfile() (in module fileio)": [[9, "FileIO.getFirstEightBytesFromFile"]], "getlinefromfile() (in module fileio)": [[9, "FileIO.getLineFromFile"]], "getmatchingfilenames() (in module fileio)": [[9, "FileIO.getMatchingFilenames"]], "globexpansionmsg() (in module fileio)": [[9, "FileIO.globExpansionMsg"]], "initdirectory() (in module fileio)": [[9, "FileIO.initDirectory"]], "isglobpattern() (in module fileio)": [[9, "FileIO.isGlobPattern"]], "lsanymsg() (in module fileio)": [[9, "FileIO.lsAnyMsg"]], "writelinestofile() (in module fileio)": [[9, "FileIO.writeLinesToFile"]], "writetofile() (in module fileio)": [[9, "FileIO.writeToFile"]], "gensymio (module)": [[10, "module-GenSymIO"]], "null_strings_value (in module gensymio)": [[10, "GenSymIO.NULL_STRINGS_VALUE"]], "array() (in module gensymio)": [[10, "GenSymIO.array"]], "arraysegstring() (in module gensymio)": [[10, "GenSymIO.arraySegString"]], "buildreadallmsgjson() (in module gensymio)": [[10, "GenSymIO.buildReadAllMsgJson"]], "checkcast() (in module gensymio)": [[10, "GenSymIO.checkCast"]], "gslogger (in module gensymio)": [[10, "GenSymIO.gsLogger"]], "jsontomap() (in module gensymio)": [[10, "GenSymIO.jsonToMap"]], "makearrayfrombytes() (in module gensymio)": [[10, "GenSymIO.makeArrayFromBytes"]], "segmentedcalcoffsets() (in module gensymio)": [[10, "GenSymIO.segmentedCalcOffsets"]], "tondarray() (in module gensymio)": [[10, "GenSymIO.tondarray"]], "ioutils (module)": [[11, "module-IOUtils"]], "formatjson() (in module ioutils)": [[11, "IOUtils.formatJson"]], "jsontoarray() (in module ioutils)": [[11, "IOUtils.jsonToArray"]], "parsejson() (in module ioutils)": [[11, "IOUtils.parseJson"]], "in1d (module)": [[12, "module-In1d"]], "in1d() (in module in1d)": [[12, "In1d.in1d"]], "in1dar2perlocassoc() (in module in1d)": [[12, "In1d.in1dAr2PerLocAssoc"]], "in1dsort() (in module in1d)": [[12, "In1d.in1dSort"]], "consoleoutputhandler (class in logging)": [[13, "Logging.ConsoleOutputHandler"]], "fileoutputhandler (class in logging)": [[13, "Logging.FileOutputHandler"]], "logchannel (enum in logging)": [[13, "Logging.LogChannel"]], "loglevel (enum in logging)": [[13, "Logging.LogLevel"]], "logger (class in logging)": [[13, "Logging.Logger"]], "logging (module)": [[13, "module-Logging"]], "outputhandler (class in logging)": [[13, "Logging.OutputHandler"]], "critical() (logging.logger method)": [[13, "Logging.Logger.critical"]], "criticallevels (logging.logger attribute)": [[13, "Logging.Logger.criticalLevels"]], "debug() (logging.logger method)": [[13, "Logging.Logger.debug"]], "error() (logging.logger method)": [[13, "Logging.Logger.error"]], "errorlevels (logging.logger attribute)": [[13, "Logging.Logger.errorLevels"]], "filepath (logging.fileoutputhandler attribute)": [[13, "Logging.FileOutputHandler.filePath"]], "generatedatetimestring() (logging.logger method)": [[13, "Logging.Logger.generateDateTimeString"]], "generateerrormsg() (logging.logger method)": [[13, "Logging.Logger.generateErrorMsg"]], "generatelogmessage() (logging.logger method)": [[13, "Logging.Logger.generateLogMessage"]], "getoutputhandler() (in module logging)": [[13, "Logging.getOutputHandler"]], "info() (logging.logger method)": [[13, "Logging.Logger.info"]], "infolevels (logging.logger attribute)": [[13, "Logging.Logger.infoLevels"]], "init() (logging.fileoutputhandler method)": [[13, "Logging.FileOutputHandler.init"]], "init() (logging.logger method)": [[13, "Logging.Logger.init"]], "level (logging.logger attribute)": [[13, "Logging.Logger.level"]], "outputhandler (logging.logger attribute)": [[13, "Logging.Logger.outputHandler"]], "printdate (logging.logger attribute)": [[13, "Logging.Logger.printDate"]], "warn() (logging.logger method)": [[13, "Logging.Logger.warn"]], "warnlevels (logging.logger attribute)": [[13, "Logging.Logger.warnLevels"]], "write() (logging.consoleoutputhandler method)": [[13, "Logging.ConsoleOutputHandler.write"]], "write() (logging.fileoutputhandler method)": [[13, "Logging.FileOutputHandler.write"]], "write() (logging.outputhandler method)": [[13, "Logging.OutputHandler.write"]], "writetofile() (logging.fileoutputhandler method)": [[13, "Logging.FileOutputHandler.writeToFile"]], "localememorystatus (record in memorymgmt)": [[14, "MemoryMgmt.LocaleMemoryStatus"]], "memmgmttype (enum in memorymgmt)": [[14, "MemoryMgmt.MemMgmtType"]], "memorymgmt (module)": [[14, "module-MemoryMgmt"]], "arkouda_mem_alloc (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.arkouda_mem_alloc"]], "avail_mem (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.avail_mem"]], "availablememorypct (in module memorymgmt)": [[14, "MemoryMgmt.availableMemoryPct"]], "getarkoudamemalloc() (in module memorymgmt)": [[14, "MemoryMgmt.getArkoudaMemAlloc"]], "getarkoudapid() (in module memorymgmt)": [[14, "MemoryMgmt.getArkoudaPid"]], "getavailmemory() (in module memorymgmt)": [[14, "MemoryMgmt.getAvailMemory"]], "getlocalememorystatuses() (in module memorymgmt)": [[14, "MemoryMgmt.getLocaleMemoryStatuses"]], "gettotalmemory() (in module memorymgmt)": [[14, "MemoryMgmt.getTotalMemory"]], "ismemavailable() (in module memorymgmt)": [[14, "MemoryMgmt.isMemAvailable"]], "issupportedos() (in module memorymgmt)": [[14, "MemoryMgmt.isSupportedOS"]], "localememavailable() (in module memorymgmt)": [[14, "MemoryMgmt.localeMemAvailable"]], "locale_hostname (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.locale_hostname"]], "locale_id (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.locale_id"]], "memmgmttype (in module memorymgmt)": [[14, "MemoryMgmt.memMgmtType"]], "mem_used (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.mem_used"]], "mmlogger (in module memorymgmt)": [[14, "MemoryMgmt.mmLogger"]], "pct_avail_mem (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.pct_avail_mem"]], "total_mem (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.total_mem"]], "message (module)": [[15, "module-Message"]], "messageargs (class in message)": [[15, "Message.MessageArgs"]], "msgformat (enum in message)": [[15, "Message.MsgFormat"]], "msgtuple (record in message)": [[15, "Message.MsgTuple"]], "msgtype (enum in message)": [[15, "Message.MsgType"]], "parameterobj (record in message)": [[15, "Message.ParameterObj"]], "requestmsg (record in message)": [[15, "Message.RequestMsg"]], "addpayload() (message.messageargs method)": [[15, "Message.MessageArgs.addPayload"]], "args (message.requestmsg attribute)": [[15, "Message.RequestMsg.args"]], "cmd (message.requestmsg attribute)": [[15, "Message.RequestMsg.cmd"]], "contains() (message.messageargs method)": [[15, "Message.MessageArgs.contains"]], "deserialize() (in module message)": [[15, "Message.deserialize"]], "dtype (message.parameterobj attribute)": [[15, "Message.ParameterObj.dtype"]], "error() (message.msgtuple method)": [[15, "Message.MsgTuple.error"]], "format (message.requestmsg attribute)": [[15, "Message.RequestMsg.format"]], "fromresponses() (message.msgtuple method)": [[15, "Message.MsgTuple.fromResponses"]], "fromscalar() (message.msgtuple method)": [[15, "Message.MsgTuple.fromScalar"]], "get() (message.messageargs method)": [[15, "Message.MessageArgs.get"]], "getbigintvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getBigIntValue"]], "getboolvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getBoolValue"]], "getdtype() (message.parameterobj method)": [[15, "Message.ParameterObj.getDType"]], "getintvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getIntValue"]], "getlist() (message.parameterobj method)": [[15, "Message.ParameterObj.getList"]], "getpositiveintvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getPositiveIntValue"]], "getrealvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getRealValue"]], "getscalarvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getScalarValue"]], "gettuple() (message.parameterobj method)": [[15, "Message.ParameterObj.getTuple"]], "getuint8value() (message.parameterobj method)": [[15, "Message.ParameterObj.getUInt8Value"]], "getuintvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getUIntValue"]], "getvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getValue"]], "getvalueof() (message.messageargs method)": [[15, "Message.MessageArgs.getValueOf"]], "init() (message.messageargs method)": [[15, "Message.MessageArgs.init"]], "init() (message.msgtuple method)": [[15, "Message.MsgTuple.init"]], "init() (message.parameterobj method)": [[15, "Message.ParameterObj.init"]], "key (message.parameterobj attribute)": [[15, "Message.ParameterObj.key"]], "msg (message.msgtuple attribute)": [[15, "Message.MsgTuple.msg"]], "msgformat (message.msgtuple attribute)": [[15, "Message.MsgTuple.msgFormat"]], "msgtype (message.msgtuple attribute)": [[15, "Message.MsgTuple.msgType"]], "newsymbol() (message.msgtuple method)": [[15, "Message.MsgTuple.newSymbol"]], "param_list (message.messageargs attribute)": [[15, "Message.MessageArgs.param_list"]], "parsemessageargs() (in module message)": [[15, "Message.parseMessageArgs"]], "parseparameter() (in module message)": [[15, "Message.parseParameter"]], "payload (message.messageargs attribute)": [[15, "Message.MessageArgs.payload"]], "payload (message.msgtuple attribute)": [[15, "Message.MsgTuple.payload"]], "payload() (message.msgtuple method)": [[15, "Message.MsgTuple.payload"]], "serialize() (message.messageargs method)": [[15, "Message.MessageArgs.serialize"]], "serialize() (message.msgtuple method)": [[15, "Message.MsgTuple.serialize"]], "serialize() (in module message)": [[15, "Message.serialize"]], "setkey() (message.parameterobj method)": [[15, "Message.ParameterObj.setKey"]], "setval() (message.parameterobj method)": [[15, "Message.ParameterObj.setVal"]], "size (message.messageargs attribute)": [[15, "Message.MessageArgs.size"]], "size (message.requestmsg attribute)": [[15, "Message.RequestMsg.size"]], "success() (message.msgtuple method)": [[15, "Message.MsgTuple.success"]], "these() (message.messageargs iterator)": [[15, "Message.MessageArgs.these"]], "this() (message.messageargs method)": [[15, "Message.MessageArgs.this"]], "toscalar() (message.parameterobj method)": [[15, "Message.ParameterObj.toScalar"]], "toscalararray() (message.parameterobj method)": [[15, "Message.ParameterObj.toScalarArray"]], "toscalarlist() (message.parameterobj method)": [[15, "Message.ParameterObj.toScalarList"]], "toscalartuple() (message.parameterobj method)": [[15, "Message.ParameterObj.toScalarTuple"]], "token (message.requestmsg attribute)": [[15, "Message.RequestMsg.token"]], "trygetscalar() (message.parameterobj method)": [[15, "Message.ParameterObj.tryGetScalar"]], "user (message.msgtuple attribute)": [[15, "Message.MsgTuple.user"]], "user (message.requestmsg attribute)": [[15, "Message.RequestMsg.user"]], "val (message.parameterobj attribute)": [[15, "Message.ParameterObj.val"]], "arraymetric (class in metricsmsg)": [[16, "MetricsMsg.ArrayMetric"]], "averagemeasurementtable (class in metricsmsg)": [[16, "MetricsMsg.AverageMeasurementTable"]], "avgmetricvalue (class in metricsmsg)": [[16, "MetricsMsg.AvgMetricValue"]], "countertable (class in metricsmsg)": [[16, "MetricsMsg.CounterTable"]], "localeinfo (class in metricsmsg)": [[16, "MetricsMsg.LocaleInfo"]], "localemetric (class in metricsmsg)": [[16, "MetricsMsg.LocaleMetric"]], "measurementtable (class in metricsmsg)": [[16, "MetricsMsg.MeasurementTable"]], "metric (class in metricsmsg)": [[16, "MetricsMsg.Metric"]], "metriccategory (enum in metricsmsg)": [[16, "MetricsMsg.MetricCategory"]], "metricdatatype (enum in metricsmsg)": [[16, "MetricsMsg.MetricDataType"]], "metricscope (enum in metricsmsg)": [[16, "MetricsMsg.MetricScope"]], "metricvalue (class in metricsmsg)": [[16, "MetricsMsg.MetricValue"]], "metricsmsg (module)": [[16, "module-MetricsMsg"]], "serverinfo (class in metricsmsg)": [[16, "MetricsMsg.ServerInfo"]], "user (record in metricsmsg)": [[16, "MetricsMsg.User"]], "usermetric (class in metricsmsg)": [[16, "MetricsMsg.UserMetric"]], "usermetrics (class in metricsmsg)": [[16, "MetricsMsg.UserMetrics"]], "users (class in metricsmsg)": [[16, "MetricsMsg.Users"]], "add() (metricsmsg.averagemeasurementtable method)": [[16, "MetricsMsg.AverageMeasurementTable.add"]], "add() (metricsmsg.measurementtable method)": [[16, "MetricsMsg.MeasurementTable.add"]], "avgresponsetimemetrics (in module metricsmsg)": [[16, "MetricsMsg.avgResponseTimeMetrics"]], "category (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.category"]], "cmd (metricsmsg.arraymetric attribute)": [[16, "MetricsMsg.ArrayMetric.cmd"]], "counts (metricsmsg.countertable attribute)": [[16, "MetricsMsg.CounterTable.counts"]], "dtype (metricsmsg.arraymetric attribute)": [[16, "MetricsMsg.ArrayMetric.dType"]], "datatype (metricsmsg.metricvalue attribute)": [[16, "MetricsMsg.MetricValue.dataType"]], "decrement() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.decrement"]], "errormetrics (in module metricsmsg)": [[16, "MetricsMsg.errorMetrics"]], "exportallmetrics() (in module metricsmsg)": [[16, "MetricsMsg.exportAllMetrics"]], "get() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.get"]], "get() (metricsmsg.measurementtable method)": [[16, "MetricsMsg.MeasurementTable.get"]], "getalluserrequestmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getAllUserRequestMetrics"]], "getavgresponsetimemetrics() (in module metricsmsg)": [[16, "MetricsMsg.getAvgResponseTimeMetrics"]], "getmaxlocalememory() (in module metricsmsg)": [[16, "MetricsMsg.getMaxLocaleMemory"]], "getmeasurementtotal() (metricsmsg.averagemeasurementtable method)": [[16, "MetricsMsg.AverageMeasurementTable.getMeasurementTotal"]], "getnumerrormetrics() (in module metricsmsg)": [[16, "MetricsMsg.getNumErrorMetrics"]], "getnummeasurements() (metricsmsg.averagemeasurementtable method)": [[16, "MetricsMsg.AverageMeasurementTable.getNumMeasurements"]], "getnumrequestmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getNumRequestMetrics"]], "getperusernumrequestmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getPerUserNumRequestMetrics"]], "getperusernumrequestspercommandforallusersmetrics() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.getPerUserNumRequestsPerCommandForAllUsersMetrics"]], "getperusernumrequestspercommandmetrics() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.getPerUserNumRequestsPerCommandMetrics"]], "getresponsetimemetrics() (in module metricsmsg)": [[16, "MetricsMsg.getResponseTimeMetrics"]], "getserverinfo() (in module metricsmsg)": [[16, "MetricsMsg.getServerInfo"]], "getservermetrics() (in module metricsmsg)": [[16, "MetricsMsg.getServerMetrics"]], "getsystemmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getSystemMetrics"]], "gettotalmemoryusedmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getTotalMemoryUsedMetrics"]], "gettotalresponsetimemetrics() (in module metricsmsg)": [[16, "MetricsMsg.getTotalResponseTimeMetrics"]], "getuser() (metricsmsg.users method)": [[16, "MetricsMsg.Users.getUser"]], "getusermetrics() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.getUserMetrics"]], "getusernames() (metricsmsg.users method)": [[16, "MetricsMsg.Users.getUserNames"]], "getuserrequestmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getUserRequestMetrics"]], "getusers() (metricsmsg.users method)": [[16, "MetricsMsg.Users.getUsers"]], "hostname (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.hostname"]], "hostname (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.hostname"]], "id (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.id"]], "increment() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.increment"]], "incrementnumrequestspercommand() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.incrementNumRequestsPerCommand"]], "incrementperuserrequestmetrics() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.incrementPerUserRequestMetrics"]], "incrementtotalnumrequests() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.incrementTotalNumRequests"]], "init() (metricsmsg.arraymetric method)": [[16, "MetricsMsg.ArrayMetric.init"]], "init() (metricsmsg.localemetric method)": [[16, "MetricsMsg.LocaleMetric.init"]], "init() (metricsmsg.metric method)": [[16, "MetricsMsg.Metric.init"]], "init() (metricsmsg.metricvalue method)": [[16, "MetricsMsg.MetricValue.init"]], "init() (metricsmsg.serverinfo method)": [[16, "MetricsMsg.ServerInfo.init"]], "init() (metricsmsg.usermetric method)": [[16, "MetricsMsg.UserMetric.init"]], "inttotal (metricsmsg.avgmetricvalue attribute)": [[16, "MetricsMsg.AvgMetricValue.intTotal"]], "intvalue (metricsmsg.metricvalue attribute)": [[16, "MetricsMsg.MetricValue.intValue"]], "items() (metricsmsg.countertable iterator)": [[16, "MetricsMsg.CounterTable.items"]], "items() (metricsmsg.measurementtable iterator)": [[16, "MetricsMsg.MeasurementTable.items"]], "locale_hostname (metricsmsg.localemetric attribute)": [[16, "MetricsMsg.LocaleMetric.locale_hostname"]], "locale_name (metricsmsg.localemetric attribute)": [[16, "MetricsMsg.LocaleMetric.locale_name"]], "locale_num (metricsmsg.localemetric attribute)": [[16, "MetricsMsg.LocaleMetric.locale_num"]], "locales (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.locales"]], "mlogger (in module metricsmsg)": [[16, "MetricsMsg.mLogger"]], "max_number_of_tasks (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.max_number_of_tasks"]], "measurementtotals (metricsmsg.averagemeasurementtable attribute)": [[16, "MetricsMsg.AverageMeasurementTable.measurementTotals"]], "measurements (metricsmsg.measurementtable attribute)": [[16, "MetricsMsg.MeasurementTable.measurements"]], "metricscope (in module metricsmsg)": [[16, "MetricsMsg.metricScope"]], "metrics (metricsmsg.usermetrics attribute)": [[16, "MetricsMsg.UserMetrics.metrics"]], "metricsmsg() (in module metricsmsg)": [[16, "MetricsMsg.metricsMsg"]], "name (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.name"]], "name (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.name"]], "name (metricsmsg.user attribute)": [[16, "MetricsMsg.User.name"]], "nummeasurements (metricsmsg.averagemeasurementtable attribute)": [[16, "MetricsMsg.AverageMeasurementTable.numMeasurements"]], "numvalues (metricsmsg.avgmetricvalue attribute)": [[16, "MetricsMsg.AvgMetricValue.numValues"]], "number_of_locales (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.number_of_locales"]], "number_of_processing_units (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.number_of_processing_units"]], "physical_memory (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.physical_memory"]], "realtotal (metricsmsg.avgmetricvalue attribute)": [[16, "MetricsMsg.AvgMetricValue.realTotal"]], "realvalue (metricsmsg.metricvalue attribute)": [[16, "MetricsMsg.MetricValue.realValue"]], "requestmetrics (in module metricsmsg)": [[16, "MetricsMsg.requestMetrics"]], "responsetimemetrics (in module metricsmsg)": [[16, "MetricsMsg.responseTimeMetrics"]], "scope (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.scope"]], "servermetrics (in module metricsmsg)": [[16, "MetricsMsg.serverMetrics"]], "server_port (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.server_port"]], "set() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.set"]], "set() (metricsmsg.measurementtable method)": [[16, "MetricsMsg.MeasurementTable.set"]], "size (metricsmsg.arraymetric attribute)": [[16, "MetricsMsg.ArrayMetric.size"]], "size() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.size"]], "size() (metricsmsg.measurementtable method)": [[16, "MetricsMsg.MeasurementTable.size"]], "timestamp (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.timestamp"]], "total() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.total"]], "totalmemoryusedmetrics (in module metricsmsg)": [[16, "MetricsMsg.totalMemoryUsedMetrics"]], "totalresponsetimemetrics (in module metricsmsg)": [[16, "MetricsMsg.totalResponseTimeMetrics"]], "update() (metricsmsg.avgmetricvalue method)": [[16, "MetricsMsg.AvgMetricValue.update"]], "update() (metricsmsg.metricvalue method)": [[16, "MetricsMsg.MetricValue.update"]], "user (metricsmsg.usermetric attribute)": [[16, "MetricsMsg.UserMetric.user"]], "usermetrics (in module metricsmsg)": [[16, "MetricsMsg.userMetrics"]], "users (metricsmsg.usermetrics attribute)": [[16, "MetricsMsg.UserMetrics.users"]], "users (metricsmsg.users attribute)": [[16, "MetricsMsg.Users.users"]], "users (in module metricsmsg)": [[16, "MetricsMsg.users"]], "value (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.value"]], "version (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.version"]], "msgprocessing (module)": [[17, "module-MsgProcessing"]], "chunkinfoasarray() (in module msgprocessing)": [[17, "MsgProcessing.chunkInfoAsArray"]], "chunkinfoasstring() (in module msgprocessing)": [[17, "MsgProcessing.chunkInfoAsString"]], "clearmsg() (in module msgprocessing)": [[17, "MsgProcessing.clearMsg"]], "create() (in module msgprocessing)": [[17, "MsgProcessing.create"]], "createscalararray() (in module msgprocessing)": [[17, "MsgProcessing.createScalarArray"]], "deletemsg() (in module msgprocessing)": [[17, "MsgProcessing.deleteMsg"]], "getcommandmapmsg() (in module msgprocessing)": [[17, "MsgProcessing.getCommandMapMsg"]], "getconfigmsg() (in module msgprocessing)": [[17, "MsgProcessing.getconfigMsg"]], "getmemavailmsg() (in module msgprocessing)": [[17, "MsgProcessing.getmemavailMsg"]], "getmemusedmsg() (in module msgprocessing)": [[17, "MsgProcessing.getmemusedMsg"]], "infomsg() (in module msgprocessing)": [[17, "MsgProcessing.infoMsg"]], "mplogger (in module msgprocessing)": [[17, "MsgProcessing.mpLogger"]], "reprmsg() (in module msgprocessing)": [[17, "MsgProcessing.reprMsg"]], "setmsg() (in module msgprocessing)": [[17, "MsgProcessing.setMsg"]], "strmsg() (in module msgprocessing)": [[17, "MsgProcessing.strMsg"]], "abstractregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.AbstractRegEntry"]], "arrayregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.ArrayRegEntry"]], "bitvectorregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.BitVectorRegEntry"]], "categoricalregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.CategoricalRegEntry"]], "dataframeregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.DataFrameRegEntry"]], "genregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.GenRegEntry"]], "groupbyregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.GroupByRegEntry"]], "indexregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.IndexRegEntry"]], "multityperegentry (module)": [[18, "module-MultiTypeRegEntry"]], "registryentrytype (enum in multityperegentry)": [[18, "MultiTypeRegEntry.RegistryEntryType"]], "segarrayregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.SegArrayRegEntry"]], "seriesregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.SeriesRegEntry"]], "array (multityperegentry.arrayregentry attribute)": [[18, "MultiTypeRegEntry.ArrayRegEntry.array"]], "array (multityperegentry.bitvectorregentry attribute)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.array"]], "asmap() (multityperegentry.arrayregentry method)": [[18, "MultiTypeRegEntry.ArrayRegEntry.asMap"]], "asmap() (multityperegentry.bitvectorregentry method)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.asMap"]], "asmap() (multityperegentry.categoricalregentry method)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.asMap"]], "asmap() (multityperegentry.dataframeregentry method)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.asMap"]], "asmap() (multityperegentry.groupbyregentry method)": [[18, "MultiTypeRegEntry.GroupByRegEntry.asMap"]], "asmap() (multityperegentry.indexregentry method)": [[18, "MultiTypeRegEntry.IndexRegEntry.asMap"]], "asmap() (multityperegentry.segarrayregentry method)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.asMap"]], "asmap() (multityperegentry.seriesregentry method)": [[18, "MultiTypeRegEntry.SeriesRegEntry.asMap"]], "assignabletypes (multityperegentry.abstractregentry attribute)": [[18, "MultiTypeRegEntry.AbstractRegEntry.assignableTypes"]], "categories (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.categories"]], "codes (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.codes"]], "column_names (multityperegentry.dataframeregentry attribute)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.column_names"]], "columns (multityperegentry.dataframeregentry attribute)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.columns"]], "entrytype (multityperegentry.abstractregentry attribute)": [[18, "MultiTypeRegEntry.AbstractRegEntry.entryType"]], "idx (multityperegentry.dataframeregentry attribute)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.idx"]], "idx (multityperegentry.indexregentry attribute)": [[18, "MultiTypeRegEntry.IndexRegEntry.idx"]], "idx (multityperegentry.seriesregentry attribute)": [[18, "MultiTypeRegEntry.SeriesRegEntry.idx"]], "init() (multityperegentry.abstractregentry method)": [[18, "MultiTypeRegEntry.AbstractRegEntry.init"]], "init() (multityperegentry.arrayregentry method)": [[18, "MultiTypeRegEntry.ArrayRegEntry.init"]], "init() (multityperegentry.bitvectorregentry method)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.init"]], "init() (multityperegentry.categoricalregentry method)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.init"]], "init() (multityperegentry.dataframeregentry method)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.init"]], "init() (multityperegentry.genregentry method)": [[18, "MultiTypeRegEntry.GenRegEntry.init"]], "init() (multityperegentry.groupbyregentry method)": [[18, "MultiTypeRegEntry.GroupByRegEntry.init"]], "init() (multityperegentry.indexregentry method)": [[18, "MultiTypeRegEntry.IndexRegEntry.init"]], "init() (multityperegentry.segarrayregentry method)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.init"]], "init() (multityperegentry.seriesregentry method)": [[18, "MultiTypeRegEntry.SeriesRegEntry.init"]], "keys (multityperegentry.groupbyregentry attribute)": [[18, "MultiTypeRegEntry.GroupByRegEntry.keys"]], "lengths (multityperegentry.segarrayregentry attribute)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.lengths"]], "nacode (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.naCode"]], "name (multityperegentry.abstractregentry attribute)": [[18, "MultiTypeRegEntry.AbstractRegEntry.name"]], "objtype (multityperegentry.genregentry attribute)": [[18, "MultiTypeRegEntry.GenRegEntry.objType"]], "permutation (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.permutation"]], "permutation (multityperegentry.groupbyregentry attribute)": [[18, "MultiTypeRegEntry.GroupByRegEntry.permutation"]], "reglogger (in module multityperegentry)": [[18, "MultiTypeRegEntry.regLogger"]], "reverse (multityperegentry.bitvectorregentry attribute)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.reverse"]], "segments (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.segments"]], "segments (multityperegentry.groupbyregentry attribute)": [[18, "MultiTypeRegEntry.GroupByRegEntry.segments"]], "segments (multityperegentry.segarrayregentry attribute)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.segments"]], "setname() (multityperegentry.abstractregentry method)": [[18, "MultiTypeRegEntry.AbstractRegEntry.setName"]], "todataframeregentry() (multityperegentry.genregentry method)": [[18, "MultiTypeRegEntry.GenRegEntry.toDataFrameRegEntry"]], "uki (multityperegentry.groupbyregentry attribute)": [[18, "MultiTypeRegEntry.GroupByRegEntry.uki"]], "values (multityperegentry.segarrayregentry attribute)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.values"]], "values (multityperegentry.seriesregentry attribute)": [[18, "MultiTypeRegEntry.SeriesRegEntry.values"]], "width (multityperegentry.bitvectorregentry attribute)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.width"]], "abstractsymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.AbstractSymEntry"]], "compositesymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.CompositeSymEntry"]], "gensparsesymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.GenSparseSymEntry"]], "gensymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.GenSymEntry"]], "generatorsymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.GeneratorSymEntry"]], "multitypesymentry (module)": [[19, "module-MultiTypeSymEntry"]], "segstringsymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.SegStringSymEntry"]], "sparsesymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.SparseSymEntry"]], "symentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.SymEntry"]], "symbolentrytype (enum in multitypesymentry)": [[19, "MultiTypeSymEntry.SymbolEntryType"]], "a (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.a"]], "a (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.a"]], "ad() (multitypesymentry.symentry method)": [[19, "MultiTypeSymEntry.SymEntry.aD"]], "assignabletypes (multitypesymentry.abstractsymentry attribute)": [[19, "MultiTypeSymEntry.AbstractSymEntry.assignableTypes"]], "attrib() (multitypesymentry.compositesymentry method)": [[19, "MultiTypeSymEntry.CompositeSymEntry.attrib"]], "attrib() (multitypesymentry.gensparsesymentry method)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.attrib"]], "attrib() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.attrib"]], "bytesentry (multitypesymentry.segstringsymentry attribute)": [[19, "MultiTypeSymEntry.SegStringSymEntry.bytesEntry"]], "createsymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.createSymEntry"]], "createtypedsymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.createTypedSymEntry"]], "deinit() (multitypesymentry.sparsesymentry method)": [[19, "MultiTypeSymEntry.SparseSymEntry.deinit"]], "deinit() (multitypesymentry.symentry method)": [[19, "MultiTypeSymEntry.SymEntry.deinit"]], "dimensions (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.dimensions"]], "dimensions (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.dimensions"]], "dtype (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.dtype"]], "dtype (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.dtype"]], "entrytype (multitypesymentry.abstractsymentry attribute)": [[19, "MultiTypeSymEntry.AbstractSymEntry.entryType"]], "entry__str__() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.gensparsesymentry method)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.segstringsymentry method)": [[19, "MultiTypeSymEntry.SegStringSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.sparsesymentry method)": [[19, "MultiTypeSymEntry.SparseSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.symentry method)": [[19, "MultiTypeSymEntry.SymEntry.entry__str__"]], "etype (multitypesymentry.generatorsymentry attribute)": [[19, "MultiTypeSymEntry.GeneratorSymEntry.etype"]], "etype (multitypesymentry.segstringsymentry attribute)": [[19, "MultiTypeSymEntry.SegStringSymEntry.etype"]], "etype (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.etype"]], "etype (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.etype"]], "genlogger (in module multitypesymentry)": [[19, "MultiTypeSymEntry.genLogger"]], "generator (multitypesymentry.generatorsymentry attribute)": [[19, "MultiTypeSymEntry.GeneratorSymEntry.generator"]], "getarrayspecfromentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.getArraySpecFromEntry"]], "getsizeestimate() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.getSizeEstimate"]], "getsizeestimate() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.getSizeEstimate"]], "getsizeestimate() (multitypesymentry.segstringsymentry method)": [[19, "MultiTypeSymEntry.SegStringSymEntry.getSizeEstimate"]], "init() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.init"]], "init() (multitypesymentry.compositesymentry method)": [[19, "MultiTypeSymEntry.CompositeSymEntry.init"]], "init() (multitypesymentry.gensparsesymentry method)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.init"]], "init() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.init"]], "init() (multitypesymentry.generatorsymentry method)": [[19, "MultiTypeSymEntry.GeneratorSymEntry.init"]], "init() (multitypesymentry.segstringsymentry method)": [[19, "MultiTypeSymEntry.SegStringSymEntry.init"]], "init() (multitypesymentry.sparsesymentry method)": [[19, "MultiTypeSymEntry.SparseSymEntry.init"]], "init() (multitypesymentry.symentry method)": [[19, "MultiTypeSymEntry.SymEntry.init"]], "isassignableto() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.isAssignableTo"]], "itemsize (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.itemsize"]], "itemsize (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.itemsize"]], "layoutstr (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.layoutStr"]], "layouttostr() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.layoutToStr"]], "matlayout (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.matLayout"]], "max_bits (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.max_bits"]], "name (multitypesymentry.abstractsymentry attribute)": [[19, "MultiTypeSymEntry.AbstractSymEntry.name"]], "ndim (multitypesymentry.compositesymentry attribute)": [[19, "MultiTypeSymEntry.CompositeSymEntry.ndim"]], "ndim (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.ndim"]], "ndim (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.ndim"]], "nnz (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.nnz"]], "offsetsentry (multitypesymentry.segstringsymentry attribute)": [[19, "MultiTypeSymEntry.SegStringSymEntry.offsetsEntry"]], "setname() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.setName"]], "shape (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.shape"]], "shape (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.shape"]], "size (multitypesymentry.compositesymentry attribute)": [[19, "MultiTypeSymEntry.CompositeSymEntry.size"]], "size (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.size"]], "size (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.size"]], "state (multitypesymentry.generatorsymentry attribute)": [[19, "MultiTypeSymEntry.GeneratorSymEntry.state"]], "tocompositesymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toCompositeSymEntry"]], "togensparsesymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toGenSparseSymEntry"]], "togensymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toGenSymEntry"]], "togeneratorsymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toGeneratorSymEntry"]], "tosegstringsymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toSegStringSymEntry"]], "tosparsesymentry() (multitypesymentry.gensparsesymentry method)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.toSparseSymEntry"]], "tosymentry() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.toSymEntry"]], "tosymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toSymEntry"]], "tupshape (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.tupShape"]], "tupshape (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.tupShape"]], "tupshapestring() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.tupShapeString"]], "multitypesymboltable (module)": [[20, "module-MultiTypeSymbolTable"]], "symtab (class in multitypesymboltable)": [[20, "MultiTypeSymbolTable.SymTab"]], "addentry() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.addEntry"]], "attrib() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.attrib"]], "checktable() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.checkTable"]], "clear() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.clear"]], "contains() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.contains"]], "datarepr() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.datarepr"]], "datastr() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.datastr"]], "deleteentry() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.deleteEntry"]], "dump() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.dump"]], "findall() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.findAll"]], "formatentry() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.formatEntry"]], "getentries() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.getEntries"]], "getgenericsparsearrayentry() (in module multitypesymboltable)": [[20, "MultiTypeSymbolTable.getGenericSparseArrayEntry"]], "getgenerictypedarrayentry() (in module multitypesymboltable)": [[20, "MultiTypeSymbolTable.getGenericTypedArrayEntry"]], "getsegstringentry() (in module multitypesymboltable)": [[20, "MultiTypeSymbolTable.getSegStringEntry"]], "info() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.info"]], "insert() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.insert"]], "lookup() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.lookup"]], "memused() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.memUsed"]], "mtlogger (in module multitypesymboltable)": [[20, "MultiTypeSymbolTable.mtLogger"]], "nextname() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.nextName"]], "nid (multitypesymboltable.symtab attribute)": [[20, "MultiTypeSymbolTable.SymTab.nid"]], "parsejson() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.parseJson"]], "pretty() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.pretty"]], "registry (multitypesymboltable.symtab attribute)": [[20, "MultiTypeSymbolTable.SymTab.registry"]], "serverid (multitypesymboltable.symtab attribute)": [[20, "MultiTypeSymbolTable.SymTab.serverid"]], "tab (multitypesymboltable.symtab attribute)": [[20, "MultiTypeSymbolTable.SymTab.tab"]], "this() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.this"]], "dtk (enum in numpydtype)": [[21, "NumPyDType.DTK"]], "dtype (enum in numpydtype)": [[21, "NumPyDType.DType"]], "numpydtype (module)": [[21, "module-NumPyDType"]], "bool2str() (in module numpydtype)": [[21, "NumPyDType.bool2str"]], "commondtype() (in module numpydtype)": [[21, "NumPyDType.commonDType"]], "divdtype() (in module numpydtype)": [[21, "NumPyDType.divDType"]], "dtype2str() (in module numpydtype)": [[21, "NumPyDType.dtype2str"]], "dtypesize() (in module numpydtype)": [[21, "NumPyDType.dtypeSize"]], "str2dtype() (in module numpydtype)": [[21, "NumPyDType.str2dtype"]], "type2fmt() (in module numpydtype)": [[21, "NumPyDType.type2fmt"]], "type2str() (in module numpydtype)": [[21, "NumPyDType.type2str"]], "typesize() (in module numpydtype)": [[21, "NumPyDType.typeSize"]], "whichdtype() (in module numpydtype)": [[21, "NumPyDType.whichDtype"]], "keyscomparator (record in radixsortlsd)": [[22, "RadixSortLSD.KeysComparator"]], "keysrankscomparator (record in radixsortlsd)": [[22, "RadixSortLSD.KeysRanksComparator"]], "rslsd_numtasks (in module radixsortlsd)": [[22, "RadixSortLSD.RSLSD_numTasks"]], "rslsd_vv (in module radixsortlsd)": [[22, "RadixSortLSD.RSLSD_vv"]], "radixsortlsd (module)": [[22, "module-RadixSortLSD"]], "tasks (in module radixsortlsd)": [[22, "RadixSortLSD.Tasks"]], "calcblock() (in module radixsortlsd)": [[22, "RadixSortLSD.calcBlock"]], "calcglobalindex() (in module radixsortlsd)": [[22, "RadixSortLSD.calcGlobalIndex"]], "key() (radixsortlsd.keyscomparator method)": [[22, "RadixSortLSD.KeysComparator.key"]], "key() (radixsortlsd.keysrankscomparator method)": [[22, "RadixSortLSD.KeysRanksComparator.key"]], "numtasks (in module radixsortlsd)": [[22, "RadixSortLSD.numTasks"]], "radixsortlsd() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD"]], "radixsortlsd_keys() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD_keys"]], "radixsortlsd_keys_memest() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD_keys_memEst"]], "radixsortlsd_memest() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD_memEst"]], "radixsortlsd_ranks() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD_ranks"]], "rslogger (in module radixsortlsd)": [[22, "RadixSortLSD.rsLogger"]], "vv (in module radixsortlsd)": [[22, "RadixSortLSD.vv"]], "regtab (class in registry)": [[23, "Registry.RegTab"]], "registry (module)": [[23, "module-Registry"]], "checkavailability() (registry.regtab method)": [[23, "Registry.RegTab.checkAvailability"]], "checktable() (registry.regtab method)": [[23, "Registry.RegTab.checkTable"]], "contains() (registry.regtab method)": [[23, "Registry.RegTab.contains"]], "list_registry() (registry.regtab method)": [[23, "Registry.RegTab.list_registry"]], "lookup() (registry.regtab method)": [[23, "Registry.RegTab.lookup"]], "reglogger (in module registry)": [[23, "Registry.regLogger"]], "register_array() (registry.regtab method)": [[23, "Registry.RegTab.register_array"]], "register_bitvector() (registry.regtab method)": [[23, "Registry.RegTab.register_bitvector"]], "register_categorical() (registry.regtab method)": [[23, "Registry.RegTab.register_categorical"]], "register_categorical_components() (registry.regtab method)": [[23, "Registry.RegTab.register_categorical_components"]], "register_dataframe() (registry.regtab method)": [[23, "Registry.RegTab.register_dataframe"]], "register_groupby() (registry.regtab method)": [[23, "Registry.RegTab.register_groupby"]], "register_index() (registry.regtab method)": [[23, "Registry.RegTab.register_index"]], "register_index_components() (registry.regtab method)": [[23, "Registry.RegTab.register_index_components"]], "register_segarray() (registry.regtab method)": [[23, "Registry.RegTab.register_segarray"]], "register_segarray_components() (registry.regtab method)": [[23, "Registry.RegTab.register_segarray_components"]], "register_series() (registry.regtab method)": [[23, "Registry.RegTab.register_series"]], "registered_entries (registry.regtab attribute)": [[23, "Registry.RegTab.registered_entries"]], "tab (registry.regtab attribute)": [[23, "Registry.RegTab.tab"]], "unregister_array() (registry.regtab method)": [[23, "Registry.RegTab.unregister_array"]], "unregister_bitvector() (registry.regtab method)": [[23, "Registry.RegTab.unregister_bitvector"]], "unregister_categorical() (registry.regtab method)": [[23, "Registry.RegTab.unregister_categorical"]], "unregister_categorical_components() (registry.regtab method)": [[23, "Registry.RegTab.unregister_categorical_components"]], "unregister_dataframe() (registry.regtab method)": [[23, "Registry.RegTab.unregister_dataframe"]], "unregister_groupby() (registry.regtab method)": [[23, "Registry.RegTab.unregister_groupby"]], "unregister_index() (registry.regtab method)": [[23, "Registry.RegTab.unregister_index"]], "unregister_index_components() (registry.regtab method)": [[23, "Registry.RegTab.unregister_index_components"]], "unregister_segarray() (registry.regtab method)": [[23, "Registry.RegTab.unregister_segarray"]], "unregister_segarray_components() (registry.regtab method)": [[23, "Registry.RegTab.unregister_segarray_components"]], "unregister_series() (registry.regtab method)": [[23, "Registry.RegTab.unregister_series"]], "security (module)": [[24, "module-Security"]], "generatetoken() (in module security)": [[24, "Security.generateToken"]], "getarkoudatoken() (in module security)": [[24, "Security.getArkoudaToken"]], "setarkoudatoken() (in module security)": [[24, "Security.setArkoudaToken"]], "segstringsort (module)": [[25, "module-SegStringSort"]], "stringintcomparator (record in segstringsort)": [[25, "SegStringSort.StringIntComparator"]], "calcblock() (in module segstringsort)": [[25, "SegStringSort.calcBlock"]], "calcglobalindex() (in module segstringsort)": [[25, "SegStringSort.calcGlobalIndex"]], "gatherlongstrings() (in module segstringsort)": [[25, "SegStringSort.gatherLongStrings"]], "getpivot() (in module segstringsort)": [[25, "SegStringSort.getPivot"]], "keypart() (segstringsort.stringintcomparator method)": [[25, "SegStringSort.StringIntComparator.keyPart"]], "radixsortlsd_raw() (in module segstringsort)": [[25, "SegStringSort.radixSortLSD_raw"]], "sslogger (in module segstringsort)": [[25, "SegStringSort.ssLogger"]], "twophasestringsort() (in module segstringsort)": [[25, "SegStringSort.twoPhaseStringSort"]], "segfunction (enum in segmentedcomputation)": [[26, "SegmentedComputation.SegFunction"]], "segmentedcomputation (module)": [[26, "module-SegmentedComputation"]], "computeonsegments() (in module segmentedcomputation)": [[26, "SegmentedComputation.computeOnSegments"]], "computesegmentownership() (in module segmentedcomputation)": [[26, "SegmentedComputation.computeSegmentOwnership"]], "!=() (in module segmentedstring)": [[27, "SegmentedString.!="]], "==() (in module segmentedstring)": [[27, "SegmentedString.=="]], "fixes (enum in segmentedstring)": [[27, "SegmentedString.Fixes"]], "null_strings_value (in module segmentedstring)": [[27, "SegmentedString.NULL_STRINGS_VALUE"]], "segstring (class in segmentedstring)": [[27, "SegmentedString.SegString"]], "segmentedstring (module)": [[27, "module-SegmentedString"]], "segmentedstringusehash (in module segmentedstring)": [[27, "SegmentedString.SegmentedStringUseHash"]], "arggroup() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.argGroup"]], "argsort() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.argsort"]], "assemblesegstringfromparts() (in module segmentedstring)": [[27, "SegmentedString.assembleSegStringFromParts"]], "bytestouintarr() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.bytesToUintArr"]], "capitalize() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.capitalize"]], "checkcompile() (in module segmentedstring)": [[27, "SegmentedString.checkCompile"]], "compare() (in module segmentedstring)": [[27, "SegmentedString.compare"]], "composite (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.composite"]], "concat() (in module segmentedstring)": [[27, "SegmentedString.concat"]], "ediff() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.ediff"]], "findallmatches() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.findAllMatches"]], "findmatchlocations() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.findMatchLocations"]], "findsubstringinbytes() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.findSubstringInBytes"]], "getfixes() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.getFixes"]], "getlengths() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.getLengths"]], "getsegstring() (in module segmentedstring)": [[27, "SegmentedString.getSegString"]], "in1d() (in module segmentedstring)": [[27, "SegmentedString.in1d"]], "init() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.init"]], "interpretasbytes() (in module segmentedstring)": [[27, "SegmentedString.interpretAsBytes"]], "interpretasstring() (in module segmentedstring)": [[27, "SegmentedString.interpretAsString"]], "isdecimal() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isDecimal"]], "islower() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isLower"]], "issorted() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isSorted"]], "istitle() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isTitle"]], "isupper() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isUpper"]], "isalnum() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isalnum"]], "isalpha() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isalpha"]], "isdigit() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isdigit"]], "isempty() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isempty"]], "isspace() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isspace"]], "lower() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.lower"]], "memcmp() (in module segmentedstring)": [[27, "SegmentedString.memcmp"]], "nbytes (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.nBytes"]], "name (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.name"]], "offsets (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.offsets"]], "peel() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.peel"]], "peelregex() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.peelRegex"]], "segstrfull() (in module segmentedstring)": [[27, "SegmentedString.segStrFull"]], "segstrwhere() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.segStrWhere"]], "show() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.show"]], "siphash() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.siphash"]], "size (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.size"]], "sslogger (in module segmentedstring)": [[27, "SegmentedString.ssLogger"]], "stick() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.stick"]], "stringbytestouintarr() (in module segmentedstring)": [[27, "SegmentedString.stringBytesToUintArr"]], "stringcompareliteraleq() (in module segmentedstring)": [[27, "SegmentedString.stringCompareLiteralEq"]], "stringcompareliteralneq() (in module segmentedstring)": [[27, "SegmentedString.stringCompareLiteralNeq"]], "stringisalphanumeric() (in module segmentedstring)": [[27, "SegmentedString.stringIsAlphaNumeric"]], "stringisalphabetic() (in module segmentedstring)": [[27, "SegmentedString.stringIsAlphabetic"]], "stringisdecimal() (in module segmentedstring)": [[27, "SegmentedString.stringIsDecimal"]], "stringisdigit() (in module segmentedstring)": [[27, "SegmentedString.stringIsDigit"]], "stringisempty() (in module segmentedstring)": [[27, "SegmentedString.stringIsEmpty"]], "stringislower() (in module segmentedstring)": [[27, "SegmentedString.stringIsLower"]], "stringisspace() (in module segmentedstring)": [[27, "SegmentedString.stringIsSpace"]], "stringistitle() (in module segmentedstring)": [[27, "SegmentedString.stringIsTitle"]], "stringisupper() (in module segmentedstring)": [[27, "SegmentedString.stringIsUpper"]], "stringsearch() (in module segmentedstring)": [[27, "SegmentedString.stringSearch"]], "strip() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.strip"]], "sub() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.sub"]], "substringsearch() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.substringSearch"]], "this() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.this"]], "title() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.title"]], "unsafecompileregex() (in module segmentedstring)": [[27, "SegmentedString.unsafeCompileRegex"]], "upper() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.upper"]], "values (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.values"]], "bslash (in module serverconfig)": [[28, "ServerConfig.BSLASH"]], "deployment (enum in serverconfig)": [[28, "ServerConfig.Deployment"]], "escaped_quotes (in module serverconfig)": [[28, "ServerConfig.ESCAPED_QUOTES"]], "maxarraydims (in module serverconfig)": [[28, "ServerConfig.MaxArrayDims"]], "objtype (enum in serverconfig)": [[28, "ServerConfig.ObjType"]], "q (in module serverconfig)": [[28, "ServerConfig.Q"]], "qcq (in module serverconfig)": [[28, "ServerConfig.QCQ"]], "rslsd_bitsperdigit (in module serverconfig)": [[28, "ServerConfig.RSLSD_bitsPerDigit"]], "serverconfig (module)": [[28, "module-ServerConfig"]], "serverport (in module serverconfig)": [[28, "ServerConfig.ServerPort"]], "appendtoconfigstr() (in module serverconfig)": [[28, "ServerConfig.appendToConfigStr"]], "arkoudaversion (in module serverconfig)": [[28, "ServerConfig.arkoudaVersion"]], "authenticate (in module serverconfig)": [[28, "ServerConfig.authenticate"]], "autoshutdown (in module serverconfig)": [[28, "ServerConfig.autoShutdown"]], "chplversionarkouda (in module serverconfig)": [[28, "ServerConfig.chplVersionArkouda"]], "createconfig() (in module serverconfig)": [[28, "ServerConfig.createConfig"]], "deployment (in module serverconfig)": [[28, "ServerConfig.deployment"]], "getbyteorder() (in module serverconfig)": [[28, "ServerConfig.getByteorder"]], "getchplversion() (in module serverconfig)": [[28, "ServerConfig.getChplVersion"]], "getconfig() (in module serverconfig)": [[28, "ServerConfig.getConfig"]], "getconnecthostname() (in module serverconfig)": [[28, "ServerConfig.getConnectHostname"]], "getenv() (in module serverconfig)": [[28, "ServerConfig.getEnv"]], "getenvint() (in module serverconfig)": [[28, "ServerConfig.getEnvInt"]], "getmemlimit() (in module serverconfig)": [[28, "ServerConfig.getMemLimit"]], "getmemused() (in module serverconfig)": [[28, "ServerConfig.getMemUsed"]], "getphysicalmemhere() (in module serverconfig)": [[28, "ServerConfig.getPhysicalMemHere"]], "get_hostname() (in module serverconfig)": [[28, "ServerConfig.get_hostname"]], "logchannel (in module serverconfig)": [[28, "ServerConfig.logChannel"]], "logcommands (in module serverconfig)": [[28, "ServerConfig.logCommands"]], "loglevel (in module serverconfig)": [[28, "ServerConfig.logLevel"]], "memhighwater (in module serverconfig)": [[28, "ServerConfig.memHighWater"]], "overmemlimit() (in module serverconfig)": [[28, "ServerConfig.overMemLimit"]], "perlocalememlimit (in module serverconfig)": [[28, "ServerConfig.perLocaleMemLimit"]], "regexmaxcaptures (in module serverconfig)": [[28, "ServerConfig.regexMaxCaptures"]], "saveusedmodules (in module serverconfig)": [[28, "ServerConfig.saveUsedModules"]], "sclogger (in module serverconfig)": [[28, "ServerConfig.scLogger"]], "serverconnectioninfo (in module serverconfig)": [[28, "ServerConfig.serverConnectionInfo"]], "serverhostname (in module serverconfig)": [[28, "ServerConfig.serverHostname"]], "serverinfonosplash (in module serverconfig)": [[28, "ServerConfig.serverInfoNoSplash"]], "splitmsgtotuple() (serverconfig.bytes method)": [[28, "ServerConfig.bytes.splitMsgToTuple"]], "splitmsgtotuple() (serverconfig.string method)": [[28, "ServerConfig.string.splitMsgToTuple"]], "trace (in module serverconfig)": [[28, "ServerConfig.trace"]], "usedmodulesfmt (in module serverconfig)": [[28, "ServerConfig.usedModulesFmt"]], "arkoudaserverdaemon (class in serverdaemon)": [[29, "ServerDaemon.ArkoudaServerDaemon"]], "defaultserverdaemon (class in serverdaemon)": [[29, "ServerDaemon.DefaultServerDaemon"]], "externalintegrationserverdaemon (class in serverdaemon)": [[29, "ServerDaemon.ExternalIntegrationServerDaemon"]], "metricsserverdaemon (class in serverdaemon)": [[29, "ServerDaemon.MetricsServerDaemon"]], "serverdaemon (module)": [[29, "module-ServerDaemon"]], "serverdaemontype (enum in serverdaemon)": [[29, "ServerDaemon.ServerDaemonType"]], "serverstatusdaemon (class in serverdaemon)": [[29, "ServerDaemon.ServerStatusDaemon"]], "arkdirectory (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.arkDirectory"]], "authenticateuser() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.authenticateUser"]], "connecturl (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.connectUrl"]], "context (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.context"]], "context (serverdaemon.metricsserverdaemon attribute)": [[29, "ServerDaemon.MetricsServerDaemon.context"]], "context (serverdaemon.serverstatusdaemon attribute)": [[29, "ServerDaemon.ServerStatusDaemon.context"]], "createserverconnectioninfo() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.createServerConnectionInfo"]], "deleteserverconnectioninfo() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.deleteServerConnectionInfo"]], "extractrequest() (serverdaemon.arkoudaserverdaemon method)": [[29, "ServerDaemon.ArkoudaServerDaemon.extractRequest"]], "getconnecturl() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.getConnectUrl"]], "getdaemontypes() (in module serverdaemon)": [[29, "ServerDaemon.getDaemonTypes"]], "geterrorname() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.getErrorName"]], "getserverdaemon() (in module serverdaemon)": [[29, "ServerDaemon.getServerDaemon"]], "getserverdaemons() (in module serverdaemon)": [[29, "ServerDaemon.getServerDaemons"]], "init() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.init"]], "init() (serverdaemon.metricsserverdaemon method)": [[29, "ServerDaemon.MetricsServerDaemon.init"]], "init() (serverdaemon.serverstatusdaemon method)": [[29, "ServerDaemon.ServerStatusDaemon.init"]], "initarkoudadirectory() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.initArkoudaDirectory"]], "integrationenabled() (in module serverdaemon)": [[29, "ServerDaemon.integrationEnabled"]], "metricsenabled() (in module serverdaemon)": [[29, "ServerDaemon.metricsEnabled"]], "multipleserverdaemons() (in module serverdaemon)": [[29, "ServerDaemon.multipleServerDaemons"]], "port (serverdaemon.arkoudaserverdaemon attribute)": [[29, "ServerDaemon.ArkoudaServerDaemon.port"]], "printserversplashmessage() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.printServerSplashMessage"]], "processerrormessagemetrics() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.processErrorMessageMetrics"]], "processmetrics() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.processMetrics"]], "register() (in module serverdaemon)": [[29, "ServerDaemon.register"]], "registerservercommands() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.registerServerCommands"]], "repcount (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.repCount"]], "reqcount (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.reqCount"]], "requestshutdown() (serverdaemon.arkoudaserverdaemon method)": [[29, "ServerDaemon.ArkoudaServerDaemon.requestShutdown"]], "requestshutdown() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.requestShutdown"]], "run() (serverdaemon.arkoudaserverdaemon method)": [[29, "ServerDaemon.ArkoudaServerDaemon.run"]], "run() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.run"]], "run() (serverdaemon.externalintegrationserverdaemon method)": [[29, "ServerDaemon.ExternalIntegrationServerDaemon.run"]], "run() (serverdaemon.metricsserverdaemon method)": [[29, "ServerDaemon.MetricsServerDaemon.run"]], "run() (serverdaemon.serverstatusdaemon method)": [[29, "ServerDaemon.ServerStatusDaemon.run"]], "sdlogger (in module serverdaemon)": [[29, "ServerDaemon.sdLogger"]], "sendrepmsg() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.sendRepMsg"]], "serverdaemontypes (in module serverdaemon)": [[29, "ServerDaemon.serverDaemonTypes"]], "servertoken (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.serverToken"]], "shutdown() (serverdaemon.arkoudaserverdaemon method)": [[29, "ServerDaemon.ArkoudaServerDaemon.shutdown"]], "shutdown() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.shutdown"]], "shutdown() (serverdaemon.externalintegrationserverdaemon method)": [[29, "ServerDaemon.ExternalIntegrationServerDaemon.shutdown"]], "shutdowndaemon (serverdaemon.arkoudaserverdaemon attribute)": [[29, "ServerDaemon.ArkoudaServerDaemon.shutdownDaemon"]], "socket (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.socket"]], "socket (serverdaemon.metricsserverdaemon attribute)": [[29, "ServerDaemon.MetricsServerDaemon.socket"]], "socket (serverdaemon.serverstatusdaemon attribute)": [[29, "ServerDaemon.ServerStatusDaemon.socket"]], "st (serverdaemon.arkoudaserverdaemon attribute)": [[29, "ServerDaemon.ArkoudaServerDaemon.st"]], "errorwithmsg (class in servererrorstrings)": [[30, "ServerErrorStrings.ErrorWithMsg"]], "servererrorstrings (module)": [[30, "module-ServerErrorStrings"]], "incompatibleargumentserror() (in module servererrorstrings)": [[30, "ServerErrorStrings.incompatibleArgumentsError"]], "msg (servererrorstrings.errorwithmsg attribute)": [[30, "ServerErrorStrings.ErrorWithMsg.msg"]], "notimplementederror() (in module servererrorstrings)": [[30, "ServerErrorStrings.notImplementedError"]], "unknownerror() (in module servererrorstrings)": [[30, "ServerErrorStrings.unknownError"]], "unknownsymbolerror() (in module servererrorstrings)": [[30, "ServerErrorStrings.unknownSymbolError"]], "unrecognizedtypeerror() (in module servererrorstrings)": [[30, "ServerErrorStrings.unrecognizedTypeError"]], "unsupportedtypeerror() (in module servererrorstrings)": [[30, "ServerErrorStrings.unsupportedTypeError"]], "argumenterror (class in servererrors)": [[31, "ServerErrors.ArgumentError"]], "configurationerror (class in servererrors)": [[31, "ServerErrors.ConfigurationError"]], "datasetnotfounderror (class in servererrors)": [[31, "ServerErrors.DatasetNotFoundError"]], "errorwithcontext (class in servererrors)": [[31, "ServerErrors.ErrorWithContext"]], "hdf5fileformaterror (class in servererrors)": [[31, "ServerErrors.HDF5FileFormatError"]], "ioerror (class in servererrors)": [[31, "ServerErrors.IOError"]], "mismatchedappenderror (class in servererrors)": [[31, "ServerErrors.MismatchedAppendError"]], "nothdf5fileerror (class in servererrors)": [[31, "ServerErrors.NotHDF5FileError"]], "notimplementederror (class in servererrors)": [[31, "ServerErrors.NotImplementedError"]], "outofboundserror (class in servererrors)": [[31, "ServerErrors.OutOfBoundsError"]], "overmemorylimiterror (class in servererrors)": [[31, "ServerErrors.OverMemoryLimitError"]], "segstringerror (class in servererrors)": [[31, "ServerErrors.SegStringError"]], "servererrors (module)": [[31, "module-ServerErrors"]], "unknownsymbolerror (class in servererrors)": [[31, "ServerErrors.UnknownSymbolError"]], "unsupportedoserror (class in servererrors)": [[31, "ServerErrors.UnsupportedOSError"]], "writemodeerror (class in servererrors)": [[31, "ServerErrors.WriteModeError"]], "errorclass (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.errorClass"]], "generateerrorcontext() (in module servererrors)": [[31, "ServerErrors.generateErrorContext"]], "geterrorwithcontext() (in module servererrors)": [[31, "ServerErrors.getErrorWithContext"]], "init() (servererrors.argumenterror method)": [[31, "ServerErrors.ArgumentError.init"]], "init() (servererrors.configurationerror method)": [[31, "ServerErrors.ConfigurationError.init"]], "init() (servererrors.datasetnotfounderror method)": [[31, "ServerErrors.DatasetNotFoundError.init"]], "init() (servererrors.errorwithcontext method)": [[31, "ServerErrors.ErrorWithContext.init"]], "init() (servererrors.hdf5fileformaterror method)": [[31, "ServerErrors.HDF5FileFormatError.init"]], "init() (servererrors.ioerror method)": [[31, "ServerErrors.IOError.init"]], "init() (servererrors.mismatchedappenderror method)": [[31, "ServerErrors.MismatchedAppendError.init"]], "init() (servererrors.nothdf5fileerror method)": [[31, "ServerErrors.NotHDF5FileError.init"]], "init() (servererrors.notimplementederror method)": [[31, "ServerErrors.NotImplementedError.init"]], "init() (servererrors.overmemorylimiterror method)": [[31, "ServerErrors.OverMemoryLimitError.init"]], "init() (servererrors.segstringerror method)": [[31, "ServerErrors.SegStringError.init"]], "init() (servererrors.unknownsymbolerror method)": [[31, "ServerErrors.UnknownSymbolError.init"]], "init() (servererrors.unsupportedoserror method)": [[31, "ServerErrors.UnsupportedOSError.init"]], "init() (servererrors.writemodeerror method)": [[31, "ServerErrors.WriteModeError.init"]], "linenumber (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.lineNumber"]], "modulename (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.moduleName"]], "publish() (servererrors.errorwithcontext method)": [[31, "ServerErrors.ErrorWithContext.publish"]], "publishmsg (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.publishMsg"]], "routinename (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.routineName"]], "rotl() (in module siphash)": [[32, "SipHash.ROTL"]], "siphash (module)": [[32, "module-SipHash"]], "crounds (in module siphash)": [[32, "SipHash.cROUNDS"]], "drounds (in module siphash)": [[32, "SipHash.dROUNDS"]], "defaultsiphashkey (in module siphash)": [[32, "SipHash.defaultSipHashKey"]], "shlogger (in module siphash)": [[32, "SipHash.shLogger"]], "siphash128() (in module siphash)": [[32, "SipHash.sipHash128"]], "siphash64() (in module siphash)": [[32, "SipHash.sipHash64"]], "sparsematrix (module)": [[33, "module-SparseMatrix"]], "colmajorexscan() (in module sparsematrix)": [[33, "SparseMatrix.colMajorExScan"]], "densematmatmult() (in module sparsematrix)": [[33, "SparseMatrix.denseMatMatMult"]], "fillsparsematrix() (in module sparsematrix)": [[33, "SparseMatrix.fillSparseMatrix"]], "getgrid() (in module sparsematrix)": [[33, "SparseMatrix.getGrid"]], "getlsa() (in module sparsematrix)": [[33, "SparseMatrix.getLSA"]], "getlsd() (in module sparsematrix)": [[33, "SparseMatrix.getLSD"]], "randsparsematrix() (in module sparsematrix)": [[33, "SparseMatrix.randSparseMatrix"]], "rowmajorexscan() (in module sparsematrix)": [[33, "SparseMatrix.rowMajorExScan"]], "sparsematmatmult() (in module sparsematrix)": [[33, "SparseMatrix.sparseMatMatMult"]], "sparsemattopdarray() (in module sparsematrix)": [[33, "SparseMatrix.sparseMatToPdarray"]], "layout (enum in spsmatutil)": [[34, "SpsMatUtil.Layout"]], "spsmatutil (module)": [[34, "module-SpsMatUtil"]], "accumulate() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.accumulate"]], "accumulateontostate() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.accumulateOntoState"]], "add() (spsmatutil.sparsematdat method)": [[34, "SpsMatUtil.sparseMatDat.add"]], "clone() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.clone"]], "combine() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.combine"]], "elttype (spsmatutil.merge attribute)": [[34, "SpsMatUtil.merge.eltType"]], "emptysparsedomlike() (in module spsmatutil)": [[34, "SpsMatUtil.emptySparseDomLike"]], "generate() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.generate"]], "identity() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.identity"]], "makesparsemat() (in module spsmatutil)": [[34, "SpsMatUtil.makeSparseMat"]], "merge (class in spsmatutil)": [[34, "SpsMatUtil.merge"]], "rands (in module spsmatutil)": [[34, "SpsMatUtil.rands"]], "seed (in module spsmatutil)": [[34, "SpsMatUtil.seed"]], "sparsematdat (record in spsmatutil)": [[34, "SpsMatUtil.sparseMatDat"]], "value (spsmatutil.merge attribute)": [[34, "SpsMatUtil.merge.value"]], "writesparsematrix() (in module spsmatutil)": [[34, "SpsMatUtil.writeSparseMatrix"]], "statusmsg (module)": [[35, "module-StatusMsg"]], "getmemorystatusmsg() (in module statusmsg)": [[35, "StatusMsg.getMemoryStatusMsg"]], "slogger (in module statusmsg)": [[35, "StatusMsg.sLogger"]], "dmap (enum in symarraydmap)": [[36, "SymArrayDmap.Dmap"]], "mydmap (in module symarraydmap)": [[36, "SymArrayDmap.MyDmap"]], "symarraydmap (module)": [[36, "module-SymArrayDmap"]], "makedistarray() (in module symarraydmap)": [[36, "SymArrayDmap.makeDistArray"]], "makedistdom() (in module symarraydmap)": [[36, "SymArrayDmap.makeDistDom"]], "makedistdomtype() (in module symarraydmap)": [[36, "SymArrayDmap.makeDistDomType"]], "makesparsearray() (in module symarraydmap)": [[36, "SymArrayDmap.makeSparseArray"]], "makesparsedomain() (in module symarraydmap)": [[36, "SymArrayDmap.makeSparseDomain"]], "unique (module)": [[37, "module-Unique"]], "ulogger (in module unique)": [[37, "Unique.uLogger"]], "uniquefromsorted() (in module unique)": [[37, "Unique.uniqueFromSorted"]], "uniquefromtruth() (in module unique)": [[37, "Unique.uniqueFromTruth"]], "uniquegroup() (in module unique)": [[37, "Unique.uniqueGroup"]], "uniquesort() (in module unique)": [[37, "Unique.uniqueSort"]], "uniquesortwithinverse() (in module unique)": [[37, "Unique.uniqueSortWithInverse"]], "arkouda_server (module)": [[38, "module-arkouda_server"]], "aslogger (in module arkouda_server)": [[38, "arkouda_server.asLogger"]], "main() (in module arkouda_server)": [[38, "arkouda_server.main"]], "arkoudasortcompat (module)": [[39, "module-ArkoudaSortCompat"]], "arkoudasparsematrixcompat (module)": [[40, "module-ArkoudaSparseMatrixCompat"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["index", "modules/__w/arkouda/arkouda/src/AryUtil", "modules/__w/arkouda/arkouda/src/BigIntMsg", "modules/__w/arkouda/arkouda/src/Cast", "modules/__w/arkouda/arkouda/src/CommAggregation", "modules/__w/arkouda/arkouda/src/CommAggregation/BigIntegerAggregation", "modules/__w/arkouda/arkouda/src/CommPrimitives", "modules/__w/arkouda/arkouda/src/CommandMap", "modules/__w/arkouda/arkouda/src/ExternalIntegration", "modules/__w/arkouda/arkouda/src/FileIO", "modules/__w/arkouda/arkouda/src/GenSymIO", "modules/__w/arkouda/arkouda/src/IOUtils", "modules/__w/arkouda/arkouda/src/In1d", "modules/__w/arkouda/arkouda/src/Logging", "modules/__w/arkouda/arkouda/src/MemoryMgmt", "modules/__w/arkouda/arkouda/src/Message", "modules/__w/arkouda/arkouda/src/MetricsMsg", "modules/__w/arkouda/arkouda/src/MsgProcessing", "modules/__w/arkouda/arkouda/src/MultiTypeRegEntry", "modules/__w/arkouda/arkouda/src/MultiTypeSymEntry", "modules/__w/arkouda/arkouda/src/MultiTypeSymbolTable", "modules/__w/arkouda/arkouda/src/NumPyDType", "modules/__w/arkouda/arkouda/src/RadixSortLSD", "modules/__w/arkouda/arkouda/src/Registry", "modules/__w/arkouda/arkouda/src/Security", "modules/__w/arkouda/arkouda/src/SegStringSort", "modules/__w/arkouda/arkouda/src/SegmentedComputation", "modules/__w/arkouda/arkouda/src/SegmentedString", "modules/__w/arkouda/arkouda/src/ServerConfig", "modules/__w/arkouda/arkouda/src/ServerDaemon", "modules/__w/arkouda/arkouda/src/ServerErrorStrings", "modules/__w/arkouda/arkouda/src/ServerErrors", "modules/__w/arkouda/arkouda/src/SipHash", "modules/__w/arkouda/arkouda/src/SparseMatrix", "modules/__w/arkouda/arkouda/src/SparseMatrix/SpsMatUtil", "modules/__w/arkouda/arkouda/src/StatusMsg", "modules/__w/arkouda/arkouda/src/SymArrayDmap", "modules/__w/arkouda/arkouda/src/Unique", "modules/__w/arkouda/arkouda/src/arkouda_server", "modules/__w/arkouda/arkouda/src/compat/ge-22/ArkoudaSortCompat", "modules/__w/arkouda/arkouda/src/compat/ge-22/ArkoudaSparseMatrixCompat"], "filenames": ["index.rst", "modules/__w/arkouda/arkouda/src/AryUtil.rst", "modules/__w/arkouda/arkouda/src/BigIntMsg.rst", "modules/__w/arkouda/arkouda/src/Cast.rst", "modules/__w/arkouda/arkouda/src/CommAggregation.rst", "modules/__w/arkouda/arkouda/src/CommAggregation/BigIntegerAggregation.rst", "modules/__w/arkouda/arkouda/src/CommPrimitives.rst", "modules/__w/arkouda/arkouda/src/CommandMap.rst", "modules/__w/arkouda/arkouda/src/ExternalIntegration.rst", "modules/__w/arkouda/arkouda/src/FileIO.rst", "modules/__w/arkouda/arkouda/src/GenSymIO.rst", "modules/__w/arkouda/arkouda/src/IOUtils.rst", "modules/__w/arkouda/arkouda/src/In1d.rst", "modules/__w/arkouda/arkouda/src/Logging.rst", "modules/__w/arkouda/arkouda/src/MemoryMgmt.rst", "modules/__w/arkouda/arkouda/src/Message.rst", "modules/__w/arkouda/arkouda/src/MetricsMsg.rst", "modules/__w/arkouda/arkouda/src/MsgProcessing.rst", "modules/__w/arkouda/arkouda/src/MultiTypeRegEntry.rst", "modules/__w/arkouda/arkouda/src/MultiTypeSymEntry.rst", "modules/__w/arkouda/arkouda/src/MultiTypeSymbolTable.rst", "modules/__w/arkouda/arkouda/src/NumPyDType.rst", "modules/__w/arkouda/arkouda/src/RadixSortLSD.rst", "modules/__w/arkouda/arkouda/src/Registry.rst", "modules/__w/arkouda/arkouda/src/Security.rst", "modules/__w/arkouda/arkouda/src/SegStringSort.rst", "modules/__w/arkouda/arkouda/src/SegmentedComputation.rst", "modules/__w/arkouda/arkouda/src/SegmentedString.rst", "modules/__w/arkouda/arkouda/src/ServerConfig.rst", "modules/__w/arkouda/arkouda/src/ServerDaemon.rst", "modules/__w/arkouda/arkouda/src/ServerErrorStrings.rst", "modules/__w/arkouda/arkouda/src/ServerErrors.rst", "modules/__w/arkouda/arkouda/src/SipHash.rst", "modules/__w/arkouda/arkouda/src/SparseMatrix.rst", "modules/__w/arkouda/arkouda/src/SparseMatrix/SpsMatUtil.rst", "modules/__w/arkouda/arkouda/src/StatusMsg.rst", "modules/__w/arkouda/arkouda/src/SymArrayDmap.rst", "modules/__w/arkouda/arkouda/src/Unique.rst", "modules/__w/arkouda/arkouda/src/arkouda_server.rst", "modules/__w/arkouda/arkouda/src/compat/ge-22/ArkoudaSortCompat.rst", "modules/__w/arkouda/arkouda/src/compat/ge-22/ArkoudaSparseMatrixCompat.rst"], "titles": ["chpldoc documentation", "AryUtil", "BigIntMsg", "Cast", "CommAggregation", "BigIntegerAggregation", "CommPrimitives", "CommandMap", "ExternalIntegration", "FileIO", "GenSymIO", "IOUtils", "In1d", "Logging", "MemoryMgmt", "Message", "MetricsMsg", "MsgProcessing", "MultiTypeRegEntry", "MultiTypeSymEntry", "MultiTypeSymbolTable", "NumPyDType", "RadixSortLSD", "Registry", "Security", "SegStringSort", "SegmentedComputation", "SegmentedString", "ServerConfig", "ServerDaemon", "ServerErrorStrings", "ServerErrors", "SipHash", "SparseMatrix", "SpsMatUtil", "StatusMsg", "SymArrayDmap", "Unique", "arkouda_server", "ArkoudaSortCompat", "ArkoudaSparseMatrixCompat"], "terms": {"content": [0, 1, 7], "aryutil": 0, "bigintmsg": 0, "cast": [0, 10, 19], "commaggreg": [0, 5], "bigintegeraggreg": [0, 4], "commprimit": 0, "commandmap": [0, 17, 29], "externalintegr": 0, "fileio": 0, "gensymio": 0, "ioutil": 0, "in1d": [0, 27], "log": [0, 28], "memorymgmt": 0, "messag": [0, 1, 13, 17, 20, 28, 29, 31], "metricsmsg": 0, "msgprocess": 0, "multityperegentri": 0, "multitypesymentri": 0, "multitypesymbolt": 0, "numpydtyp": [0, 15], "radixsortlsd": 0, "registri": [0, 20], "secur": 0, "segstringsort": 0, "segmentedcomput": 0, "segmentedstr": 0, "serverconfig": [0, 14, 16, 19], "serverdaemon": 0, "servererrorstr": 0, "servererror": 0, "siphash": [0, 27], "sparsematrix": [0, 34], "spsmatutil": [0, 33], "statusmsg": 0, "symarraydmap": 0, "uniqu": [0, 12], "arkouda_serv": [0, 8, 28, 29], "arkoudasortcompat": 0, "arkoudasparsematrixcompat": 0, "index": [0, 1, 9, 15, 20, 27, 28], "chapel": [0, 10, 11, 19, 21, 27, 28, 31], "modul": [0, 14, 29, 31], "search": [0, 17, 20], "page": 0, "usag": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40], "us": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40], "import": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40], "param": [1, 4, 10, 11, 14, 15, 17, 19, 21, 26, 27, 28, 30, 32, 33, 36, 37], "bitsperdigit": 1, "rslsd_bitsperdigit": [1, 28], "const": [1, 2, 3, 4, 5, 6, 8, 9, 10, 14, 16, 17, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 32, 33, 34, 35, 37, 38], "aulogg": 1, "new": [1, 2, 3, 4, 8, 9, 10, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 31, 32, 34, 35, 37, 38], "logger": [1, 2, 3, 8, 9, 10, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 32, 35, 37, 38], "loglevel": [1, 2, 3, 8, 9, 10, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 32, 35, 37, 38], "logchannel": [1, 2, 8, 9, 10, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 27, 28, 29, 32, 35, 37, 38], "var": [1, 4, 5, 7, 8, 13, 14, 15, 16, 18, 19, 20, 23, 27, 28, 29, 30, 31, 34], "printthresh": 1, "30": 1, "threshold": [1, 19, 20], "amount": [1, 28], "data": [1, 4, 10, 15, 17, 19, 20, 31, 37], "print": [1, 19, 20, 28], "arrai": [1, 9, 10, 11, 12, 15, 17, 18, 19, 20, 21, 22, 27, 28, 33, 36, 37], "larger": 1, "than": [1, 19, 20], "less": [1, 19, 20], "proc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38], "formatari": 1, "A": [1, 33], "d": [1, 17, 19, 25, 26, 27, 32, 33, 36], "string": [1, 2, 3, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35], "throw": [1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 35, 36, 37], "pass": [1, 19, 20, 27, 31], "argument": [1, 11, 12, 15, 17, 19, 20, 21, 27, 29, 30, 31, 36, 37], "name": [1, 9, 10, 15, 16, 17, 18, 19, 20, 23, 27, 28, 29, 30, 31], "printari": 1, "printownership": 1, "x": [1, 5, 27, 32, 34], "1": [1, 7, 9, 15, 16, 19, 27, 28, 29, 31, 36], "18": 1, "version": [1, 16, 27, 28], "out": [1, 8, 20, 27], "localsubdomain": 1, "issort": [1, 27], "t": [1, 10, 11, 12, 15, 17, 19, 20, 21, 22, 26, 27, 30, 32, 36], "bool": [1, 3, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 27, 28, 29, 37], "determin": [1, 9, 19, 27, 28, 31], "i": [1, 4, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 19, 20, 23, 25, 27, 28, 29, 30, 31, 32], "sort": [1, 12, 22, 27, 28, 37], "check": [1, 9, 12, 14, 19, 20, 23, 27, 28], "issortedov": 1, "slice": [1, 27], "axisidx": 1, "int": [1, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37], "along": [1, 9, 37], "given": [1, 10, 11, 15, 20, 27], "axi": 1, "within": [1, 8, 14, 28, 29], "domain": [1, 9, 12, 19, 20, 25, 27, 36, 37], "onli": [1, 4, 10, 12, 15, 17, 19, 27, 31], "indic": [1, 9, 14, 15, 17, 20, 27, 28, 29, 33], "thi": [1, 7, 10, 14, 15, 16, 19, 20, 27, 28, 29, 30], "ar": [1, 4, 9, 13, 15, 16, 17, 19, 21, 23, 27, 29, 31, 37], "validatenegativeax": 1, "ax": 1, "nd": [1, 20, 30], "modifi": 1, "an": [1, 8, 9, 11, 15, 16, 17, 19, 20, 21, 23, 27, 28, 29, 31, 36], "potenti": 1, "neg": [1, 15], "posit": [1, 15], "rang": [1, 27, 37], "number": [1, 9, 15, 16, 19, 27, 28, 31, 37], "dimens": [1, 17, 19, 20, 36], "while": 1, "confirm": 1, "valid": 1, "convert": [1, 10, 17, 20, 21, 29], "where": [1, 4, 10, 13, 15, 17, 19, 21, 27, 28, 31, 32, 33, 36], "return": [1, 7, 9, 10, 12, 14, 15, 16, 17, 19, 20, 21, 22, 27, 28, 29, 30, 31, 36, 37], "tupl": [1, 9, 15, 19, 37], "boolean": [1, 12, 14, 20, 27, 29], "whether": [1, 9, 14, 20, 27, 28, 29], "domonaxi": 1, "idx": [1, 9, 18, 27, 34], "rank": [1, 19, 36], "na": 1, "get": [1, 4, 7, 15, 16, 17, 20, 28], "select": 1, "th": 1, "set": [1, 7, 12, 13, 15, 16, 17, 18, 19, 27, 28, 29], "specifi": [1, 8, 10, 19, 20, 31, 36], "must": [1, 15, 27, 29], "have": [1, 10, 19], "same": [1, 27], "subset": [1, 21], "For": [1, 10, 12, 17, 19, 27], "exampl": [1, 17, 19, 37], "repres": [1, 9, 19, 27], "stack": 1, "1000": 1, "10x10": 1, "matric": [1, 19], "ex": 1, "10": [1, 28], "Then": 1, "25": 1, "0": [1, 4, 5, 8, 10, 16, 17, 19, 20, 22, 27, 28, 29, 32, 34], "e": [1, 27], "25th": 1, "matrix": [1, 33], "ad": [1, 19, 22, 25, 37], "ref": [1, 3, 4, 5, 6, 7, 10, 12, 15, 25, 26, 27, 32, 33, 34], "list": [1, 9, 10, 15, 17, 18, 20, 23, 27, 29, 38], "domoffaxi": 1, "over": [1, 12, 27, 28, 36], "orthogon": 1, "iter": [1, 4, 15, 16, 20], "axisslic": 1, "all": [1, 13, 14, 15, 16, 17, 19, 20, 27, 29, 37], "tag": 1, "iterkind": 1, "standalon": 1, "n": [1, 9, 10, 11, 19, 20, 27, 29, 31, 36], "subdomchunk": 1, "dom": [1, 19, 36], "chunkidx": 1, "nchunk": 1, "creat": [1, 4, 8, 10, 13, 15, 17, 19, 20, 29], "chunk": [1, 17], "input": [1, 11, 19, 27], "split": [1, 27], "0th": 1, "roughli": 1, "equal": [1, 19, 20, 27], "size": [1, 4, 11, 12, 15, 16, 17, 19, 20, 21, 22, 27, 36, 37], "take": [1, 17, 20, 21, 27], "greater": [1, 19, 20], "first": [1, 12, 15, 17, 19, 20, 27], "empti": [1, 27], "last": [1, 19, 20], "contain": [1, 10, 12, 15, 17, 19, 20, 23, 27, 37], "entir": [1, 20, 27], "reducedshap": 1, "shape": [1, 10, 19, 20, 33, 36], "make": [1, 19, 29, 36], "degener": 1, "astat": 1, "real": [1, 14, 15, 16, 17, 21, 29, 32, 34, 37], "stat": 1, "form": [1, 10, 20], "produc": 1, "statist": 1, "a_min": 1, "a_max": 1, "a_mean": 1, "a_vari": 1, "a_stddevi": 1, "filluniform": 1, "seed": [1, 34], "241": 1, "concatarrai": 1, "b": [1, 9, 15, 21, 32, 33], "bd": 1, "order": [1, 16, 33], "true": [1, 10, 13, 14, 15, 22, 27, 28, 29, 37], "concaten": 1, "2": [1, 19, 25, 27, 28, 29, 32, 33, 34, 36], "result": [1, 12, 21, 27], "offset": [1, 10, 19, 25, 27], "ind": [1, 25], "israng": 1, "isdomain": 1, "manner": 1, "base": [1, 8, 9, 19, 28, 29, 37], "local": [1, 4, 8, 9, 12, 14, 16, 17, 28, 29, 31, 33], "id": [1, 16], "can": [1, 10, 19, 20, 21, 27, 28, 31], "avoid": [1, 19], "do": [1, 16, 19, 29, 32], "commun": 1, "lockstep": 1, "contiguousindic": 1, "map": [1, 7, 9, 10, 12, 16, 17, 18, 20, 23, 36], "contigu": [1, 27], "memori": [1, 4, 14, 17, 27, 28, 31], "validatearrayssamelength": 1, "type": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 20, 21, 26, 27, 28, 29, 30, 31, 33, 34, 36], "st": [1, 2, 3, 7, 9, 10, 15, 16, 17, 18, 20, 27, 29, 35], "borrow": [1, 2, 3, 7, 9, 10, 15, 16, 17, 18, 19, 20, 27, 35], "symtab": [1, 2, 3, 7, 9, 10, 16, 17, 18, 20, 27, 29, 31, 35], "variabl": 1, "from": [1, 8, 9, 10, 11, 15, 17, 19, 20, 27, 29, 31, 33], "command": [1, 7, 8, 14, 15, 17, 28, 29, 31], "them": 1, "thei": [1, 17, 19], "exist": [1, 8, 13, 15, 16, 20], "length": [1, 18, 19, 20, 25, 27], "metadata": 1, "about": [1, 19], "arg": [1, 9, 10, 15, 17, 19, 20, 27, 29, 30], "field": [1, 15, 27], "deriv": [1, 13, 29], "symbol": [1, 15, 17, 19, 20, 23, 27, 30], "tabl": [1, 17, 19, 20, 27, 30], "hasstr": 1, "objtyp": [1, 10, 18, 28], "getbitwidth": 1, "uint": [1, 5, 10, 14, 15, 17, 19, 25, 27, 28, 29, 32], "ishomogeneoustupl": 1, "getdigit": 1, "kei": [1, 15, 18, 22, 28], "rshift": 1, "_tupl": 1, "getnumdigitsnumericarrai": 1, "mergenumericarrai": 1, "numdigit": 1, "totaldigit": 1, "bitwidth": 1, "record": [1, 4, 5, 14, 15, 16, 22, 25, 34], "lowlevellocalizingslic": 1, "meant": 1, "low": [1, 22, 25, 27], "level": [1, 12, 13, 28], "altern": [1, 27], "assign": [1, 19], "better": [1, 20], "perform": [1, 20], "fewer": 1, "alloc": [1, 14, 17, 19, 27, 28], "especi": 1, "when": [1, 4, 12, 15, 19, 28], "region": [1, 27], "being": [1, 9, 12, 28, 29, 31], "pointer": 1, "store": [1, 21, 27], "isown": 1, "fals": [1, 4, 10, 12, 14, 15, 22, 27, 28, 29, 37], "remot": [1, 4], "non": [1, 12, 29, 33], "copi": [1, 4, 5], "buffer": [1, 4], "ptr": 1, "c_ptr": [1, 4, 5, 6], "nil": 1, "we": [1, 10, 19, 21, 28], "own": [1, 13, 16, 20, 27, 29], "init": [1, 8, 13, 15, 16, 18, 19, 27, 29, 31], "deinit": [1, 4, 5, 19], "removedegenrank": 1, "remov": [1, 8, 19, 20, 27], "": [1, 3, 8, 15, 16, 19, 20, 21, 31, 37], "minu": 1, "halt": [1, 19], "condit": [1, 27], "isn": [1, 27], "met": 1, "see": [1, 14, 15, 20, 23], "also": [1, 21, 27, 37], "manipulationmsg": [1, 15], "squeezemsg": 1, "broadcastshap": 1, "sa": 1, "sb": 1, "nb": 1, "algorithm": [1, 37], "broadcast": [1, 12, 17], "pd": 1, "two": [1, 21, 27], "http": [1, 8], "api": [1, 21], "org": 1, "latest": 1, "api_specif": 1, "html": 1, "n1": 1, "n2": 1, "removeaxi": 1, "appendaxi": 1, "valu": [1, 3, 10, 12, 15, 16, 17, 18, 19, 20, 25, 26, 27, 32, 33, 34, 37], "unflatten": 1, "1d": [1, 19], "multi": 1, "dimension": [1, 28], "flatten": 1, "accumranks": 1, "indextoord": 1, "bilogg": 2, "bigintcreationmsg": 2, "cmd": [2, 7, 9, 10, 15, 16, 17, 29, 35], "msgarg": [2, 7, 9, 10, 16, 17, 35], "messagearg": [2, 7, 9, 10, 15, 16, 17, 29, 35], "msgtupl": [2, 3, 7, 9, 10, 15, 16, 17, 20, 29, 35], "biginttouintarraysmsg": 2, "getmaxbitsmsg": 2, "setmaxbitsmsg": 2, "castlogg": 3, "castgensymentrytostr": 3, "gse": [3, 19], "gensymentri": [3, 19, 20, 27], "fromtyp": 3, "enum": [3, 8, 9, 13, 14, 15, 16, 18, 19, 21, 26, 27, 28, 29, 34, 36], "errormod": 3, "strict": 3, "ignor": [3, 17], "return_valid": 3, "constant": [3, 8, 9, 13, 14, 15, 16, 18, 19, 21, 26, 27, 28, 29, 34, 36], "stringtonumericstrict": [3, 26], "rng": [3, 27], "totyp": [3, 10], "stringtonumericignor": [3, 26], "stringtonumericreturnvalid": [3, 26], "caststringtosymentri": 3, "segstr": [3, 10, 25, 27, 31, 37], "error": [3, 9, 13, 15, 20, 27, 28, 30, 31], "caststringtobigint": 3, "submodul": [4, 33], "newdstaggreg": 4, "elemtyp": 4, "useunorderedcopi": 4, "destin": 4, "aggreg": 4, "dst": [4, 5], "lh": 4, "newsrcaggreg": 4, "sourc": 4, "src": [4, 5], "rh": 4, "dstaggreg": 4, "optim": 4, "Not": 4, "parallel": [4, 12], "safe": 4, "expect": 4, "per": [4, 12, 27, 28], "task": [4, 22, 25], "basi": 4, "high": [4, 12, 22, 25, 27], "sinc": [4, 19], "aggtyp": [4, 5], "buffers": [4, 5], "dstbuffsiz": [4, 5], "mylocalespac": [4, 5], "numlocal": [4, 5, 16], "lastlocal": [4, 5], "opsuntilyield": [4, 5], "yieldfrequ": [4, 5], "lbuffer": [4, 5], "rbuffer": [4, 5], "remotebuff": [4, 5], "bufferidx": [4, 5], "postinit": [4, 5], "flush": [4, 5], "srcval": 4, "flushbuff": [4, 5], "loc": [4, 5, 16, 22, 25], "freedata": [4, 5], "dstunorderedaggreg": 4, "unord": 4, "instead": [4, 19, 27], "actual": [4, 19], "srcaggreg": 4, "work": [4, 10, 27], "srcbuffsiz": [4, 5], "dstaddr": [4, 5], "lsrcaddr": [4, 5], "lsrcval": [4, 5], "rsrcaddr": [4, 5], "rsrcval": [4, 5], "srcunorderedaggreg": 4, "cachedalloc": 4, "localit": 4, "localfre": 4, "markfre": 4, "put": [4, 8, 12], "larr": 4, "isdefaultrectangular": [4, 19, 36], "bufferidxalloc": 4, "bigint": [5, 10, 15, 19, 21], "serializeds": 5, "serializeinto": 5, "8": [5, 10, 15, 17, 19, 20, 25, 27, 28, 32], "deserializefrom": 5, "dstaggregatorbigint": 5, "c_sizeof": 5, "mp_size_t": 5, "mp_limb_t": 5, "srcaggregatorbigint": 5, "uintbuffers": 5, "getaddr": 6, "p": [6, 15], "akmsgsign": 7, "dummi": [7, 19], "function": [7, 11, 16, 17, 19, 20, 26, 27, 29, 31], "signatur": [7, 17, 29], "arkouda": [7, 8, 13, 14, 15, 28, 29, 31, 38], "server": [7, 10, 15, 16, 17, 19, 28, 29, 31], "fcf": 7, "ideal": 7, "func": 7, "would": [7, 28], "abl": [7, 19], "construct": [7, 28], "wai": 7, "gener": [7, 9, 15, 16, 17, 19, 27, 29, 30, 31, 34], "todai": 7, "f": 7, "modulemap": 7, "usedmodul": 7, "registerfunct": 7, "modnam": 7, "line": [7, 9, 13, 29, 31], "regist": [7, 8, 20, 28, 29], "bind": [7, 37], "its": [7, 19, 27], "correspond": [7, 14, 15, 16, 27, 29, 31], "match": [7, 9, 15, 17, 20, 21, 27, 28, 29, 31], "standard": [7, 17, 28, 29], "writeusedmodulesjson": 7, "mod": 7, "writeusedmodul": 7, "fmt": 7, "cfg": [7, 28, 29], "dumpcommandmap": 7, "dump": [7, 20], "combin": [7, 34], "singl": [7, 19, 32], "json": [7, 8, 10, 11, 15, 17, 19, 20, 28, 29], "encod": [7, 17], "executecommand": 7, "eilogg": 8, "curlopt_verbos": 8, "curlopt": 8, "libcurl": 8, "c": [8, 10], "requir": [8, 10, 29, 31], "configur": [8, 13, 17, 19, 29, 31, 38], "curl": 8, "core": 8, "httpchannel": 8, "object": [8, 10, 13, 15, 19, 20, 27, 29, 31, 38], "curlopt_usernam": 8, "curlopt_password": 8, "curlopt_use_ssl": 8, "curlopt_sslcert": 8, "curlopt_sslkei": 8, "curlopt_keypasswd": 8, "curlopt_sslcerttyp": 8, "curlopt_capath": 8, "curlopt_cainfo": 8, "curlopt_url": 8, "curlopt_httphead": 8, "curlopt_postfield": 8, "curlopt_customrequest": 8, "curlopt_failonerror": 8, "curlinfo_response_cod": 8, "curlopt_ssl_verifyp": 8, "systemtyp": 8, "kubernet": [8, 28, 29], "redi": 8, "consul": 8, "none": [8, 19], "extern": [8, 29], "system": [8, 16, 19, 29], "integr": [8, 29], "channeltyp": 8, "stdout": [8, 13], "file": [8, 9, 13, 28, 29, 31], "describ": 8, "channel": [8, 13, 28], "write": [8, 13, 28], "serviceendpoint": [8, 29], "arkouda_cli": 8, "metric": [8, 16, 29], "servic": 8, "endpoint": [8, 29], "client": [8, 15, 19, 28, 29, 30, 31], "socket": [8, 29], "httprequesttyp": 8, "post": 8, "patch": 8, "delet": [8, 17, 20, 29], "request": [8, 14, 15, 16, 17, 28, 29, 31], "via": [8, 29, 31], "httprequestformat": 8, "text": 8, "multipart": 8, "format": [8, 10, 11, 15, 17, 19, 20, 28, 31], "getconnecthostip": 8, "retriev": [8, 10, 19, 20, 27, 28, 29], "host": [8, 14, 31], "ip": 8, "address": 8, "process": [8, 14, 20, 28, 29, 37], "which": [8, 9, 10, 19, 21, 27, 28, 29, 31, 37], "cloud": [8, 28], "environ": [8, 28], "class": [8, 13, 15, 16, 18, 19, 20, 23, 27, 29, 30, 31, 34], "defin": [8, 13, 19, 20, 23, 27, 29], "interfac": [8, 13], "consist": [8, 19, 30], "method": [8, 13, 16, 17, 19, 20, 27, 31, 38], "payload": [8, 10, 15, 17], "filechannel": 8, "The": [8, 13, 14, 16, 17, 27, 29, 31, 38], "either": [8, 14, 28, 31], "append": [8, 9, 19, 27, 31], "overwrit": 8, "path": [8, 9], "overrid": [8, 13, 15, 16, 19, 29], "url": 8, "requesttyp": 8, "requestformat": 8, "configurechannel": 8, "generatehead": 8, "instanc": [8, 27, 29, 31], "attribut": [8, 20, 27], "httpschannel": 8, "cacert": 8, "token": [8, 15, 28, 29], "overridden": [8, 16, 29], "add": [8, 16, 19, 34], "tl": 8, "header": [8, 9], "registerwithkubernet": 8, "appnam": 8, "servicenam": 8, "serviceport": 8, "targetserviceport": 8, "deploi": [8, 28], "outsid": 8, "enabl": 8, "discoveri": 8, "applic": 8, "deregisterfromkubernet": 8, "compos": [8, 9, 15, 27], "access": [8, 31], "getkubernetesregistrationparamet": 8, "getkubernetesderegisterparamet": 8, "registerwithexternalsystem": 8, "startup": [8, 28, 29], "default": [8, 14, 16, 19, 21, 27, 28, 29], "deregisterfromexternalsystem": 8, "deregist": [8, 29], "upon": [8, 9, 29], "receipt": 8, "shutdown": [8, 29], "fiologg": 9, "filetyp": 9, "hdf5": [9, 31], "arrow": 9, "parquet": 9, "csv": 9, "unknown": [9, 19, 28], "appendfil": 9, "filepath": [9, 13], "writetofil": [9, 13], "writelinestofil": 9, "getlinefromfil": 9, "lineindex": 9, "delimitedfiletomap": 9, "delimit": [9, 15, 27, 29], "initdirectori": 9, "ensureclos": 9, "tmpf": 9, "ensur": 9, "close": [9, 29], "disregard": 9, "isglobpattern": 9, "filenam": 9, "glob": 9, "express": [9, 27], "oppos": 9, "specif": [9, 19], "generatefilenam": 9, "prefix": [9, 19, 27], "extens": 9, "targetlocaless": 9, "written": [9, 13], "provid": [9, 13, 15, 17, 20, 29, 31], "user": [9, 15, 16, 29, 31], "getmatchingfilenam": 9, "mode": [9, 31], "truncat": 9, "warn": [9, 13, 15, 27], "overwritten": 9, "getfilemetadata": 9, "magic_parquet": 9, "byte": [9, 10, 15, 20, 21, 27, 28], "par1": 9, "magic_hdf5": 9, "x89hdf": 9, "r": 9, "x1a": 9, "magic_arrow": 9, "arrow1": 9, "x00": 9, "magic_csv": 9, "getfiletypebymag": 9, "public": 9, "magic": 9, "support": [9, 19, 27, 28], "domain_intersect": 9, "d1": 9, "d2": 9, "getfirsteightbytesfromfil": 9, "getfiletyp": 9, "getfiletypemsg": 9, "lsanymsg": 9, "globexpansionmsg": 9, "gslogger": 10, "config": [10, 14, 22, 27, 28, 34, 36], "null_strings_valu": [10, 27], "array_dtyp": [10, 17], "array_nd": [10, 17], "pdarrai": [10, 19, 27, 28], "side": 10, "makearrayfrombyt": 10, "arraysegstr": 10, "segmentedcalcoffset": 10, "valuesdom": 10, "calcul": [10, 16], "find": [10, 12, 20, 27, 37], "null": [10, 27], "termin": [10, 27], "should": [10, 12, 19, 27, 28], "alreadi": [10, 20], "been": [10, 31], "uint8": [10, 21], "tondarrai": 10, "output": 10, "numpi": [10, 19, 21], "ndarrai": 10, "checkcast": 10, "util": [10, 19], "test": [10, 27], "wa": [10, 15, 27, 28, 31], "success": [10, 15], "otherwis": [10, 15, 19, 27, 28], "buildreadallmsgjson": 10, "rname": 10, "allowerror": 10, "fileerrorcount": 10, "fileerror": 10, "jsontomap": 10, "simpl": 10, "parser": 10, "allow": 10, "properli": 10, "THAT": 10, "doe": [10, 13, 15, 16, 27], "NOT": 10, "nest": 10, "formatjson": 11, "val": [11, 15, 16, 19, 28, 32, 33, 34], "jsontoarrai": 11, "deseri": [11, 15], "parsejson": [11, 20], "helper": [11, 19], "pars": [11, 15, 17, 31], "item": [11, 16, 20], "ar1": 12, "ad1": 12, "ar2": 12, "ad2": 12, "invert": [12, 27], "each": [12, 14, 15, 16, 19, 20, 27, 36, 37], "membership": [12, 27], "second": [12, 17, 27], "truth": [12, 37], "distribut": [12, 19, 22, 36], "in1dar2perlocassoc": 12, "associ": [12, 17], "so": [12, 19], "appropri": 12, "term": 12, "space": [12, 15, 27], "small": 12, "in1dsort": 12, "strategi": 12, "At": 12, "both": 12, "intersect": 12, "back": [12, 19, 29, 31], "origin": [12, 27, 31], "scale": 12, "well": [12, 27, 31], "time": [12, 27, 29, 37], "ha": [12, 19, 29, 31], "trivial": 12, "overhead": 12, "typic": 12, "larg": [12, 37], "debug": 13, "info": [13, 17, 20, 28], "critic": 13, "strongli": 13, "mean": [13, 28, 37], "consol": [13, 28], "outputhandl": 13, "variou": 13, "consoleoutputhandl": 13, "fileoutputhandl": 13, "getoutputhandl": 13, "factori": [13, 19, 27, 31], "implement": [13, 15, 27, 30, 31], "structur": 13, "sensit": 13, "analog": 13, "other": [13, 17, 19, 21, 27], "languag": 13, "python": [13, 15, 17, 19, 21, 27], "warnlevel": 13, "criticallevel": 13, "errorlevel": 13, "infolevel": 13, "printdat": 13, "try": [13, 16, 28, 29], "modulenam": [13, 31], "routinenam": [13, 31], "linenumb": [13, 31], "msg": [13, 15, 17, 30, 31, 32, 34], "generateerrormsg": 13, "generatelogmessag": 13, "generatedatetimestr": 13, "mmlogger": 14, "memmgmttyp": 14, "static": 14, "dynam": 14, "captur": [14, 27, 28], "estim": [14, 28, 37], "suffici": 14, "avail": [14, 29, 31, 36], "execut": [14, 17, 29, 31], "availablememorypct": 14, "90": [14, 28], "percentag": [14, 28], "current": [14, 28, 31], "limit": [14, 19, 28], "mgmt": 14, "logic": [14, 27, 29], "localememorystatu": 14, "total_mem": 14, "64": [14, 16, 17, 21, 32], "avail_mem": 14, "pct_avail_mem": 14, "arkouda_mem_alloc": 14, "mem_us": 14, "locale_id": 14, "locale_hostnam": [14, 16], "issupportedo": 14, "getarkoudapid": 14, "getarkoudamemalloc": 14, "getavailmemori": 14, "gettotalmemori": 14, "getlocalememorystatus": 14, "localememavail": 14, "reqmemori": 14, "ismemavail": 14, "If": [14, 15, 16, 27, 29], "exce": [14, 31], "least": [14, 22], "one": [14, 15, 19, 27], "more": [14, 19, 27], "insuffici": 14, "addit": 14, "msgtype": [15, 17], "normal": 15, "msgformat": 15, "binari": [15, 30], "encapsul": [15, 16, 29], "requestmsg": [15, 29], "state": [15, 19, 29, 34], "sent": 15, "newsymbol": 15, "sym": [15, 17, 19, 20], "abstractsymentri": [15, 19, 20], "fromrespons": 15, "respons": [15, 17, 29], "group": [15, 19, 27, 28], "multipl": [15, 19, 29], "unstack": 15, "ani": [15, 19, 27, 31], "fromscalar": 15, "scalar": 15, "serial": 15, "parameterobj": [15, 20], "paramet": [15, 19, 27, 29, 31], "note": [15, 16, 19, 27], "dure": [15, 28], "transit": [15, 19], "part": [15, 19], "onc": [15, 29], "dtype": [15, 16, 17, 19, 20, 21, 30], "setkei": 15, "setval": 15, "getdtyp": 15, "getvalu": 15, "raw": 15, "trygetscalar": 15, "toscalar": 15, "errorwithcontext": [15, 31], "cannot": [15, 31], "toscalartupl": 15, "element": [15, 17, 19, 20, 27, 31], "wrong": 15, "toscalarlist": 15, "toscalararrai": 15, "getscalarvalu": 15, "getintvalu": 15, "getpositiveintvalu": 15, "max": [15, 37], "rule": [15, 21], "getuintvalu": 15, "getuint8valu": 15, "getrealvalu": 15, "getboolvalu": 15, "getbigintvalu": 15, "getlist": 15, "gettupl": 15, "writeserializ": 15, "param_list": 15, "parsaf": 15, "addpayload": 15, "attach": 15, "writer": 15, "filewrit": 15, "identifi": 15, "keynotfound": 15, "getvalueof": 15, "parseparamet": 15, "individu": [15, 27], "compon": [15, 27], "parsemessagearg": 15, "json_str": 15, "follow": [15, 16, 21, 27, 29], "arg1": 15, "arg2": 15, "replymsg": 15, "repli": 15, "metriccategori": 16, "num_request": 16, "response_tim": 16, "avg_response_tim": 16, "total_response_tim": 16, "total_memory_us": 16, "server_info": 16, "num_error": 16, "metricscop": 16, "global": [16, 28], "metricdatatyp": 16, "mlogger": 16, "getenv": [16, 28], "metric_scop": 16, "servermetr": 16, "countert": 16, "requestmetr": 16, "avgresponsetimemetr": 16, "averagemeasurementt": 16, "responsetimemetr": 16, "measurementt": 16, "totalresponsetimemetr": 16, "totalmemoryusedmetr": 16, "usermetr": 16, "errormetr": 16, "getus": 16, "getusernam": 16, "metricvalu": 16, "realvalu": 16, "intvalu": 16, "datatyp": 16, "updat": 16, "avgmetricvalu": 16, "numvalu": 16, "inttot": 16, "realtot": 16, "keytyp": 16, "valtyp": 16, "share": [16, 18, 19, 20, 23, 27, 29], "getusermetr": 16, "incrementperuserrequestmetr": 16, "usernam": 16, "metricnam": 16, "increment": 16, "getperusernumrequestspercommandmetr": 16, "getperusernumrequestspercommandforallusersmetr": 16, "incrementnumrequestspercommand": 16, "incrementtotalnumrequest": 16, "measur": 16, "extend": 16, "averag": 16, "incom": [16, 29], "nummeasur": 16, "measurementtot": 16, "getnummeasur": 16, "getmeasurementtot": 16, "sum": 16, "design": 16, "invok": [16, 29, 38], "intern": [16, 19], "avg": 16, "run": [16, 28, 29, 38], "total": [16, 17, 20, 27], "divid": 16, "count": [16, 27, 37], "decrement": 16, "exportallmetr": 16, "getuserrequestmetr": 16, "getalluserrequestmetr": 16, "getservermetr": 16, "getnumrequestmetr": 16, "getnumerrormetr": 16, "getperusernumrequestmetr": 16, "getresponsetimemetr": 16, "getavgresponsetimemetr": 16, "gettotalresponsetimemetr": 16, "gettotalmemoryusedmetr": 16, "getmaxlocalememori": 16, "getsystemmetr": 16, "getserverinfo": 16, "categori": [16, 18], "scope": [16, 29], "timestamp": 16, "datetim": [16, 28], "now": [16, 19], "arraymetr": 16, "localeinfo": 16, "hostnam": [16, 28], "number_of_processing_unit": 16, "physical_memori": 16, "max_number_of_task": 16, "serverinfo": 16, "server_port": 16, "number_of_local": 16, "localemetr": 16, "locale_num": 16, "locale_nam": 16, "mplogger": 17, "respond": 17, "act": 17, "createscalararrai": 17, "deletemsg": 17, "reqmsg": 17, "clearmsg": 17, "clear": [17, 20], "unregist": [17, 20], "infomsg": 17, "referenc": 17, "entri": [17, 19, 20, 27, 31], "getconfigmsg": 17, "queri": 17, "getmemusedmsg": 17, "getmemavailmsg": 17, "availbl": 17, "getcommandmapmsg": 17, "here": [17, 19, 22], "similar": [17, 20, 27], "strmsg": 17, "__str__": 17, "str": [17, 37], "reprmsg": 17, "__repr__": 17, "repr": 17, "setmsg": 17, "undefinedsymbolerror": 17, "chunkinfoasstr": 17, "how": [17, 28], "across": 17, "100x40": 17, "2d": 17, "4": [17, 28, 32], "could": [17, 37], "50": 17, "20": [17, 28], "start": [17, 27], "chunkinfoasarrai": 17, "reglogg": [18, 23], "registryentrytyp": 18, "abstractregentri": [18, 23], "genregentri": 18, "arrayregentri": [18, 23], "dataframeregentri": [18, 23], "groupbyregentri": [18, 23], "categoricalregentri": [18, 23], "segarrayregentri": [18, 23], "indexregentri": [18, 23], "seriesregentri": [18, 23], "bitvectorregentri": [18, 23], "entrytyp": [18, 19], "assignabletyp": [18, 19], "setnam": [18, 19], "todataframeregentri": 18, "array_nam": 18, "asmap": 18, "width": [18, 28], "revers": 18, "segment": [18, 26, 27], "column_nam": 18, "column": 18, "permut": [18, 22, 27], "uki": 18, "code": [18, 31], "nacod": 18, "genlogg": 19, "symbolentrytyp": 19, "typedarraysymentri": 19, "primitivetypedarraysymentri": 19, "complextypedarraysymentri": 19, "segstringsymentri": [19, 20, 27], "compositesymentri": 19, "gensparsesymentri": [19, 20], "sparsesymentri": 19, "generatorsymentri": 19, "anythingsymentri": 19, "unknownsymentri": 19, "build": [19, 27], "our": [19, 29], "hierarchi": 19, "littl": 19, "concret": 19, "root": 19, "symbolt": 19, "symentri": [19, 20, 27], "inherit": 19, "ancestor": 19, "ultim": 19, "everyth": 19, "coercibl": 19, "subclass": 19, "maintain": 19, "isassignableto": 19, "help": 19, "coerc": 19, "anoth": [19, 27], "getsizeestim": 19, "hook": 19, "overmemlimit": [19, 28], "procedur": [19, 37], "entry__str__": 19, "thresh": [19, 20], "suffix": [19, 27], "baseformat": 19, "up": [19, 20], "entireti": [19, 20], "3": [19, 20, 27, 28, 29], "prepend": [19, 27, 31], "front": [19, 31], "tail": 19, "tosymentri": 19, "etyp": [19, 21, 36], "talk": 19, "instanti": 19, "singular": 19, "segarrai": [19, 28], "consid": 19, "items": [19, 22], "ndim": [19, 20], "len": [19, 24, 27], "fail": 19, "attrib": [19, 20], "differ": [19, 27, 31], "v": 19, "visibl": 19, "tupshap": 19, "live": 19, "stai": 19, "makedistarrai": [19, 36], "whose": 19, "makedist": 19, "vari": [19, 29], "accessor": 19, "max_bit": 19, "mydmap": [19, 36], "dmap": [19, 36], "defaultrectangular": [19, 36], "verbos": [19, 20], "flag": [19, 28], "6": [19, 28], "pre": 19, "pend": 19, "createsymentri": 19, "These": 19, "relat": [19, 28], "dataset": [19, 31], "createtypedsymentri": 19, "mem": 19, "offsetsentri": 19, "bytesentri": 19, "offsetssymentri": 19, "bytessymentri": 19, "nnz": [19, 34], "layoutstr": 19, "tosparsesymentri": 19, "layout": [19, 33, 34, 36], "sparsegensymentri": 19, "layouttostr": 19, "l": [19, 33], "assum": 19, "matlayout": [19, 36], "spars": [19, 33, 37], "csc": [19, 33, 34], "csr": [19, 33, 34], "makesparsearrai": [19, 36], "elttyp": [19, 33, 34, 36, 37], "parentdom": [19, 34], "noprefix": 19, "nosuffix": 19, "randomstream": [19, 34], "togensymentri": 19, "abstrcatsymentri": 19, "tocompositesymentri": 19, "tosegstringsymentri": 19, "togensparsesymentri": 19, "togeneratorsymentri": 19, "getarrayspecfromentri": 19, "temporari": 19, "shim": 19, "eas": 19, "attempt": [19, 20, 31], "valus": 19, "descend": 19, "retrun": 19, "synonym": 19, "tupshapestr": 19, "mtlogger": 20, "regtab": [20, 23], "track": 20, "tab": [20, 23], "serverid": 20, "id_": 20, "generatetoken": [20, 24], "_": [20, 25], "nid": 20, "nextnam": 20, "give": 20, "insert": 20, "creation": 20, "addentri": 20, "newli": 20, "deleteentri": 20, "symtabl": 20, "occur": [20, 27], "lookup": [20, 23, 27], "found": [20, 30], "checktabl": [20, 23], "calling_func": [20, 23], "except": [20, 23], "pretti": 20, "memus": [20, 29], "__allsymbols__": 20, "formmat": 20, "__registeredsymbols__": 20, "registr": [20, 28], "statu": [20, 29], "getentri": 20, "infolist": 20, "formatentri": 20, "abstractentri": 20, "dictionari": 20, "datastr": 20, "datarepr": 20, "signfi": 20, "signifi": 20, "findal": 20, "pattern": [20, 27], "regex": [20, 27, 28], "getgenerictypedarrayentri": 20, "conveni": [20, 27], "convers": 20, "you": [20, 37], "call": [20, 27, 29], "report": [20, 31], "getsegstringentri": 20, "abstractysymentri": 20, "getgenericsparsearrayentri": 20, "uint16": 21, "uint32": 21, "uint64": 21, "int8": 21, "int16": 21, "int32": 21, "int64": [21, 27], "float32": 21, "float64": 21, "complex64": 21, "complex128": 21, "undef": 21, "In": 21, "need": [21, 27, 37], "like": 21, "etc": 21, "whichdtyp": 21, "dtypes": 21, "dt": 21, "types": 21, "str2dtype": 21, "dstr": 21, "turn": 21, "pythonland": 21, "dtype2str": 21, "type2str": 21, "type2fmt": 21, "bool2str": 21, "commondtyp": 21, "oper": [21, 27, 30, 31], "between": [21, 27], "promot": 21, "divdtyp": 21, "divis": 21, "dtk": 21, "integ": 21, "float": 21, "complex": 21, "radix": [22, 28], "signific": 22, "digit": [22, 27, 28], "rslsd_vv": 22, "vv": 22, "rslsd_numtask": 22, "maxtaskpar": 22, "numtask": 22, "rslogger": 22, "keyscompar": 22, "keycompar": 22, "k": 22, "keysrankscompar": 22, "kr": 22, "calcblock": [22, 25], "calcglobalindex": [22, 25], "bucket": [22, 25], "checksort": [22, 27], "radixsortlsd_rank": 22, "block": [22, 27, 29], "vector": [22, 27], "radixsortlsd_kei": 22, "radixsortlsd_memest": 22, "radixsortlsd_keys_memest": 22, "registered_entri": 23, "register_arrai": 23, "register_segarray_compon": 23, "sre": 23, "register_segarrai": 23, "register_datafram": 23, "dfre": 23, "register_groupbi": 23, "gbre": 23, "register_categorical_compon": 23, "cre": 23, "register_categor": 23, "register_index_compon": 23, "ir": 23, "register_index": 23, "register_seri": 23, "register_bitvector": 23, "bre": 23, "unregister_arrai": 23, "unregister_segarray_compon": 23, "unregister_segarrai": 23, "unregister_datafram": 23, "unregister_groupbi": 23, "unregister_categorical_compon": 23, "unregister_categor": 23, "unregister_index_compon": 23, "unregister_index": 23, "unregister_seri": 23, "unregister_bitvector": 23, "checkavail": 23, "list_registri": 23, "32": 24, "getarkoudatoken": 24, "tokenspath": 24, "setarkoudatoken": 24, "sslogger": [25, 27], "stringintcompar": 25, "keypartcompar": 25, "keypart": 25, "a0": 25, "twophasestringsort": 25, "ss": [25, 27], "getpivot": 25, "gatherlongstr": 25, "longind": 25, "radixsortlsd_raw": 25, "pivot": 25, "computesegmentownership": 26, "vd": 26, "segfunct": [26, 27], "siphash128": [26, 27, 32], "stringcompareliteraleq": [26, 27], "stringcompareliteralneq": [26, 27], "stringsearch": [26, 27], "stringislow": [26, 27], "stringisupp": [26, 27], "stringistitl": [26, 27], "stringisalphanumer": [26, 27], "stringisalphabet": [26, 27], "stringisdigit": [26, 27], "stringisdecim": [26, 27], "stringisempti": [26, 27], "stringisspac": [26, 27], "computeonseg": [26, 27], "rettyp": 26, "strarg": 26, "segmentedstringusehash": 27, "usehash": 27, "fix": [27, 28], "getsegstr": 27, "assemblesegstringfrompart": 27, "ephemer": 27, "refer": 27, "persist": 27, "bundl": 27, "those": 27, "relev": 27, "composit": 27, "bytearrai": 27, "complet": [27, 31], "join": 27, "zero": [27, 33], "nbyte": 27, "includ": [27, 29, 31], "corresond": 27, "separ": [27, 29], "entrynam": 27, "directli": 27, "show": 27, "stride": 27, "stridekind": 27, "iv": 27, "gather": [27, 29], "compress": 27, "appli": 27, "hash": [27, 32], "arggroup": 27, "becaus": 27, "equival": 27, "fall": 27, "getlength": 27, "lower": 27, "uppercas": 27, "charact": 27, "replac": 27, "lowercas": 27, "substr": 27, "upper": 27, "titl": 27, "remain": 27, "isdecim": 27, "decim": 27, "capit": 27, "islow": 27, "isupp": 27, "istitl": 27, "titlecas": 27, "isalnum": 27, "alphanumer": 27, "isalpha": 27, "alphabet": 27, "isdigit": 27, "isempti": 27, "isspac": 27, "whitespac": 27, "bytestouintarr": 27, "max_byt": 27, "findsubstringinbyt": 27, "findmatchloc": 27, "groupnum": 27, "postit": 27, "positon": 27, "findallmatch": 27, "nummatchesentri": 27, "startsentri": 27, "lensentri": 27, "indicesentri": 27, "returnmatchorig": 27, "sysmentri": 27, "postion": 27, "portion": 27, "option": [27, 29], "sub": 27, "replstr": 27, "initcount": 27, "returnnumsub": 27, "substitut": 27, "repl": 27, "nonzero": 27, "most": 27, "susbstitut": 27, "segstrwher": 27, "otherstr": 27, "newlen": 27, "strip": 27, "char": 27, "lead": 27, "trail": 27, "substringsearch": 27, "regular": 27, "engin": 27, "re2": 27, "lookahead": 27, "lookbehind": 27, "peelregex": 27, "includedelimit": 27, "keepparti": 27, "left": 27, "peel": 27, "off": 27, "partit": 27, "experiment": 27, "guarante": 27, "delimt": 27, "sought": 27, "skip": 27, "end": [27, 31], "By": 27, "begin": 27, "leftoffset": 27, "leftval": 27, "rightoffset": 27, "rightval": 27, "stick": 27, "delim": 27, "right": 27, "ediff": 27, "argsort": 27, "getfix": 27, "kind": [27, 30], "proper": 27, "memcmp": 27, "xind": 27, "y": 27, "yind": 27, "lss": 27, "rss": 27, "inequ": 27, "teststr": 27, "against": 27, "compar": [27, 29], "wise": 27, "comparison": 27, "target": 27, "polar": 27, "checkcompil": 27, "regexp": 27, "compil": [27, 28, 29], "without": 27, "unsafecompileregex": 27, "myregex": 27, "stringbytestouintarr": 27, "mainstr": 27, "concat": 27, "s1": 27, "v1": 27, "s2": 27, "v2": 27, "segstrful": 27, "arrsiz": 27, "fillvalu": 27, "interpretasstr": 27, "interpret": 27, "reduc": 27, "after": 27, "interpretasbyt": 27, "model": 27, "deploy": 28, "arrayview": 28, "categor": 28, "groupbi": 28, "5": 28, "datafram": 28, "7": 28, "timedelta": 28, "ipv4": 28, "9": 28, "bitvector": 28, "seri": 28, "11": 28, "12": 28, "multiindex": 28, "13": 28, "maxarraydim": 28, "maximum": 28, "bare": 28, "metal": 28, "hpc": 28, "trace": 28, "logcommand": 28, "serverport": 28, "5555": 28, "port": [28, 29], "zeromq": 28, "perlocalememlimit": 28, "physic": 28, "16": [28, 32], "bit": 28, "lsd": 28, "op": [28, 30], "arkoudavers": 28, "pleas": 28, "serverconnectioninfo": [28, 29], "arkouda_server_connection_info": 28, "autoshutdown": 28, "shut": 28, "down": 28, "automat": 28, "disconnect": 28, "serverinfonosplash": 28, "inform": 28, "serverhostnam": 28, "get_hostnam": 28, "am": 28, "getconnecthostnam": 28, "getchplvers": 28, "built": [28, 31], "chplversionarkouda": 28, "authent": 28, "akrouda": 28, "regexmaxcaptur": 28, "saveusedmodul": 28, "usedmodulesfmt": 28, "sclogger": 28, "llevel": 28, "lchannel": 28, "createconfig": 28, "getconfig": 28, "getphysicalmemher": 28, "much": 28, "runtim": 28, "chpl_comm_regmemheapinfo": 28, "heap": 28, "getbyteord": 28, "byteord": 28, "endian": 28, "getmemus": 28, "getmemlimit": 28, "memmax": 28, "memhighwat": 28, "additionalamount": 28, "go": 28, "splitmsgtotupl": 28, "numchunk": 28, "sep": 28, "getenvint": 28, "q": 28, "qcq": 28, "bslash": 28, "escaped_quot": 28, "appendtoconfigstr": 28, "serverdaemontyp": 29, "sdlogger": 29, "getdaemontyp": 29, "comma": 29, "daemontyp": 29, "metricsen": 29, "dedic": 29, "integrationen": 29, "multipleserverdaemon": 29, "app": 29, "pod": 29, "arkoudaserverdaemon": [29, 38], "shutdowndaemon": 29, "requestshutdown": 29, "prompt": 29, "initi": 29, "trigger": 29, "chang": 29, "caus": 29, "exit": 29, "daemon": 29, "loop": 29, "extractrequest": 29, "arkoduaseverdaemon": 29, "defaultserverdaemon": 29, "serv": [29, 38], "driver": [29, 38], "servertoken": 29, "arkdirectori": 29, "connecturl": 29, "reqcount": 29, "repcount": 29, "context": [29, 31], "zmq": 29, "getconnecturl": 29, "printserversplashmessag": 29, "createserverconnectioninfo": 29, "deleteserverconnectioninfo": 29, "serverconnetionfil": 29, "sendrepmsg": 29, "send": 29, "authenticateus": 29, "submit": 29, "did": 29, "errorwithmsg": [29, 30], "thrown": [29, 31], "stop": 29, "listen": 29, "thread": 29, "registerservercommand": 29, "There": 29, "adher": 29, "special": 29, "servermodul": 29, "initarkoudadirectori": 29, "processmetr": 29, "elapsedtim": 29, "processerrormessagemetr": 29, "errormsg": 29, "geterrornam": 29, "err": 29, "metricsserverdaemon": 29, "lessen": 29, "possibl": 29, "externalintegrationserverdaemon": 29, "arkoudaserverdeamon": 29, "parent": 29, "serverstatusdaemon": 29, "chanc": 29, "getserverdaemon": 29, "notimplementederror": [30, 31], "pname": 30, "ldtype": 30, "rdtype": 30, "efunc": 30, "dt1": 30, "dt2": 30, "dt3": 30, "algorthm": 30, "unrecognizedtypeerror": 30, "stype": 30, "unrecogn": 30, "unknownsymbolerror": [30, 31], "sname": 30, "unknownerror": 30, "incompatibleargumentserror": 30, "reason": 30, "incompat": 30, "unsupportedtypeerror": 30, "outofboundserror": 31, "fuller": 31, "errorclass": 31, "publishmsg": 31, "accept": 31, "detail": 31, "rich": 31, "publish": 31, "understand": 31, "develop": 31, "datasetnotfounderror": 31, "writemodeerror": 31, "save": 31, "brand": 31, "lack": 31, "nothdf5fileerror": 31, "hdff": 31, "hdf5fileformaterror": 31, "mismatchedappenderror": 31, "made": 31, "wrote": 31, "segstringerror": 31, "segstring_offset_nam": 31, "segstring_value_nam": 31, "argumenterror": 31, "problem": 31, "unsupportedoserror": 31, "o": 31, "ioerror": 31, "io": 31, "overmemorylimiterror": 31, "project": 31, "invoc": 31, "free": 31, "configurationerror": 31, "generateerrorcontext": 31, "geterrorwithcontext": 31, "routin": 31, "cround": 32, "dround": 32, "defaultsiphashkei": 32, "shlogger": 32, "rotl": 32, "siphash64": 32, "comput": 32, "fillsparsematrix": 33, "spsmat": 33, "getgrid": 33, "chpl_isnondistributedarrai": 33, "getlsd": 33, "getlsa": 33, "rowblockidx": 33, "colblockidx": 33, "sparsemattopdarrai": 33, "row": 33, "col": 33, "fill": 33, "major": 33, "rowmajorexscan": 33, "nnzpercolblock": 33, "grid": 33, "pdom": 33, "colmajorexscan": 33, "nnzperrowblock": 33, "sparsematmatmult": 33, "spsdata": [33, 34], "densematmatmult": 33, "randsparsematrix": 33, "densiti": 33, "sparsematfromarrai": 33, "rand": 34, "els": 34, "sparsematdat": 34, "emptysparsedomlik": 34, "mat": 34, "writesparsematrix": 34, "arr": 34, "makesparsemat": 34, "merg": 34, "reducescanop": 34, "ident": 34, "accumul": 34, "accumulateontost": 34, "clone": 34, "slogger": 35, "getmemorystatusmsg": 35, "blockdist": 36, "defaultdmap": 36, "makedistdom": 36, "accord": 36, "desir": 36, "initexpr": 36, "makedistdomtyp": 36, "makesparsedomain": 36, "m": 36, "dens": 37, "histogram": 37, "assoc": 37, "got": 37, "realli": 37, "factor": 37, "sparsiti": 37, "somehow": 37, "min": 37, "ulogg": 37, "uniquesort": 37, "needcount": 37, "uniquevalarrai": 37, "uniquevalcountsarrai": 37, "appear": 37, "uniquesortwithinvers": 37, "needindic": 37, "uniquefromsort": 37, "uniquegroup": 37, "returninvers": 37, "uniquefromtruth": 37, "perm": 37, "aslogg": 38, "main": 38}, "objects": {"": [[39, 0, 0, "-", "ArkoudaSortCompat"], [40, 0, 0, "-", "ArkoudaSparseMatrixCompat"], [1, 0, 0, "-", "AryUtil"], [2, 0, 0, "-", "BigIntMsg"], [5, 0, 0, "-", "BigIntegerAggregation"], [3, 0, 0, "-", "Cast"], [4, 0, 0, "-", "CommAggregation"], [6, 0, 0, "-", "CommPrimitives"], [7, 0, 0, "-", "CommandMap"], [8, 0, 0, "-", "ExternalIntegration"], [9, 0, 0, "-", "FileIO"], [10, 0, 0, "-", "GenSymIO"], [11, 0, 0, "-", "IOUtils"], [12, 0, 0, "-", "In1d"], [13, 0, 0, "-", "Logging"], [14, 0, 0, "-", "MemoryMgmt"], [15, 0, 0, "-", "Message"], [16, 0, 0, "-", "MetricsMsg"], [17, 0, 0, "-", "MsgProcessing"], [18, 0, 0, "-", "MultiTypeRegEntry"], [19, 0, 0, "-", "MultiTypeSymEntry"], [20, 0, 0, "-", "MultiTypeSymbolTable"], [21, 0, 0, "-", "NumPyDType"], [22, 0, 0, "-", "RadixSortLSD"], [23, 0, 0, "-", "Registry"], [24, 0, 0, "-", "Security"], [25, 0, 0, "-", "SegStringSort"], [26, 0, 0, "-", "SegmentedComputation"], [27, 0, 0, "-", "SegmentedString"], [28, 0, 0, "-", "ServerConfig"], [29, 0, 0, "-", "ServerDaemon"], [30, 0, 0, "-", "ServerErrorStrings"], [31, 0, 0, "-", "ServerErrors"], [32, 0, 0, "-", "SipHash"], [33, 0, 0, "-", "SparseMatrix"], [34, 0, 0, "-", "SpsMatUtil"], [35, 0, 0, "-", "StatusMsg"], [36, 0, 0, "-", "SymArrayDmap"], [37, 0, 0, "-", "Unique"], [38, 0, 0, "-", "arkouda_server"]], "AryUtil": [[1, 1, 1, "", "aStats"], [1, 1, 1, "", "appendAxis"], [1, 2, 1, "", "auLogger"], [1, 3, 1, "", "axisSlices"], [1, 2, 1, "", "bitsPerDigit"], [1, 1, 1, "", "broadcastShape"], [1, 1, 1, "", "concatArrays"], [1, 1, 1, "", "contiguousIndices"], [1, 1, 1, "", "domOffAxis"], [1, 1, 1, "", "domOnAxis"], [1, 1, 1, "", "fillUniform"], [1, 1, 1, "", "flatten"], [1, 1, 1, "", "formatAry"], [1, 1, 1, "", "getBitWidth"], [1, 1, 1, "", "getDigit"], [1, 1, 1, "", "getNumDigitsNumericArrays"], [1, 1, 1, "", "isSorted"], [1, 1, 1, "", "isSortedOver"], [1, 4, 1, "", "lowLevelLocalizingSlice"], [1, 1, 1, "", "mergeNumericArrays"], [1, 3, 1, "", "offset"], [1, 4, 1, "", "orderer"], [1, 1, 1, "", "printAry"], [1, 1, 1, "", "printOwnership"], [1, 2, 1, "", "printThresh"], [1, 1, 1, "", "reducedShape"], [1, 1, 1, "", "removeAxis"], [1, 1, 1, "", "removeDegenRanks"], [1, 1, 1, "", "subDomChunk"], [1, 1, 1, "", "unflatten"], [1, 1, 1, "", "validateArraysSameLength"], [1, 1, 1, "", "validateNegativeAxes"]], "AryUtil.lowLevelLocalizingSlice": [[1, 5, 1, "", "deinit"], [1, 5, 1, "", "init"], [1, 6, 1, "", "isOwned"], [1, 6, 1, "", "ptr"], [1, 6, 1, "", "t"]], "AryUtil.orderer": [[1, 6, 1, "", "accumRankSizes"], [1, 5, 1, "", "indexToOrder"], [1, 5, 1, "", "init"], [1, 6, 1, "", "rank"]], "BigIntMsg": [[2, 2, 1, "", "biLogger"], [2, 1, 1, "", "bigIntCreationMsg"], [2, 1, 1, "", "bigintToUintArraysMsg"], [2, 1, 1, "", "getMaxBitsMsg"], [2, 1, 1, "", "setMaxBitsMsg"]], "BigIntegerAggregation": [[5, 4, 1, "", "DstAggregatorBigint"], [5, 4, 1, "", "SrcAggregatorBigint"]], "BigIntegerAggregation.DstAggregatorBigint": [[5, 6, 1, "", "aggType"], [5, 6, 1, "", "bufferIdxs"], [5, 6, 1, "", "bufferSize"], [5, 5, 1, "", "copy"], [5, 5, 1, "", "deinit"], [5, 5, 1, "", "flush"], [5, 5, 1, "", "flushBuffer"], [5, 6, 1, "", "lBuffers"], [5, 6, 1, "", "lastLocale"], [5, 6, 1, "", "myLocaleSpace"], [5, 6, 1, "", "opsUntilYield"], [5, 5, 1, "", "postinit"], [5, 6, 1, "", "rBuffers"]], "BigIntegerAggregation.SrcAggregatorBigint": [[5, 6, 1, "", "aggType"], [5, 6, 1, "", "bufferIdxs"], [5, 6, 1, "", "bufferSize"], [5, 5, 1, "", "copy"], [5, 5, 1, "", "deinit"], [5, 6, 1, "", "dstAddrs"], [5, 5, 1, "", "flush"], [5, 5, 1, "", "flushBuffer"], [5, 6, 1, "", "lSrcAddrs"], [5, 6, 1, "", "lSrcVals"], [5, 6, 1, "", "lastLocale"], [5, 6, 1, "", "myLocaleSpace"], [5, 6, 1, "", "opsUntilYield"], [5, 5, 1, "", "postinit"], [5, 6, 1, "", "rSrcAddrs"], [5, 6, 1, "", "rSrcVals"], [5, 6, 1, "", "uintBufferSize"]], "BigIntegerAggregation.bigint": [[5, 5, 1, "", "deserializeFrom"], [5, 5, 1, "", "serializeInto"], [5, 5, 1, "", "serializedSize"]], "Cast": [[3, 7, 1, "", "ErrorMode"], [3, 1, 1, "", "castGenSymEntryToString"], [3, 2, 1, "", "castLogger"], [3, 1, 1, "", "castStringToBigInt"], [3, 1, 1, "", "castStringToSymEntry"], [3, 1, 1, "", "stringToNumericIgnore"], [3, 1, 1, "", "stringToNumericReturnValidity"], [3, 1, 1, "", "stringToNumericStrict"]], "Cast.ErrorMode": [[3, 8, 1, "", "ignore"], [3, 8, 1, "", "return_validity"], [3, 8, 1, "", "strict"]], "CommAggregation": [[4, 4, 1, "", "DstAggregator"], [4, 4, 1, "", "DstUnorderedAggregator"], [4, 4, 1, "", "SrcAggregator"], [4, 4, 1, "", "SrcUnorderedAggregator"], [4, 1, 1, "", "bufferIdxAlloc"], [4, 1, 1, "", "newDstAggregator"], [4, 1, 1, "", "newSrcAggregator"], [4, 4, 1, "", "remoteBuffer"]], "CommAggregation.DstAggregator": [[4, 6, 1, "", "aggType"], [4, 6, 1, "", "bufferIdxs"], [4, 6, 1, "", "bufferSize"], [4, 5, 1, "", "copy"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "elemType"], [4, 5, 1, "", "flush"], [4, 5, 1, "", "flushBuffer"], [4, 6, 1, "", "lBuffers"], [4, 6, 1, "", "lastLocale"], [4, 6, 1, "", "myLocaleSpace"], [4, 6, 1, "", "opsUntilYield"], [4, 5, 1, "", "postinit"], [4, 6, 1, "", "rBuffers"]], "CommAggregation.DstUnorderedAggregator": [[4, 5, 1, "", "copy"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "elemType"], [4, 5, 1, "", "flush"]], "CommAggregation.SrcAggregator": [[4, 6, 1, "", "aggType"], [4, 6, 1, "", "bufferIdxs"], [4, 6, 1, "", "bufferSize"], [4, 5, 1, "", "copy"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "dstAddrs"], [4, 6, 1, "", "elemType"], [4, 5, 1, "", "flush"], [4, 5, 1, "", "flushBuffer"], [4, 6, 1, "", "lSrcAddrs"], [4, 6, 1, "", "lSrcVals"], [4, 6, 1, "", "lastLocale"], [4, 6, 1, "", "myLocaleSpace"], [4, 6, 1, "", "opsUntilYield"], [4, 5, 1, "", "postinit"], [4, 6, 1, "", "rSrcAddrs"], [4, 6, 1, "", "rSrcVals"]], "CommAggregation.SrcUnorderedAggregator": [[4, 5, 1, "", "copy"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "elemType"], [4, 5, 1, "", "flush"]], "CommAggregation.remoteBuffer": [[4, 5, 1, "", "GET"], [4, 5, 1, "", "PUT"], [4, 5, 1, "", "cachedAlloc"], [4, 6, 1, "", "data"], [4, 5, 1, "", "deinit"], [4, 6, 1, "", "elemType"], [4, 6, 1, "", "loc"], [4, 5, 1, "", "localFree"], [4, 9, 1, "", "localIter"], [4, 5, 1, "", "markFreed"], [4, 6, 1, "", "size"]], "CommPrimitives": [[6, 1, 1, "", "getAddr"]], "CommandMap": [[7, 1, 1, "", "akMsgSign"], [7, 2, 1, "", "commandMap"], [7, 1, 1, "", "dumpCommandMap"], [7, 1, 1, "", "executeCommand"], [7, 2, 1, "", "moduleMap"], [7, 1, 1, "", "registerFunction"], [7, 2, 1, "", "usedModules"], [7, 1, 1, "", "writeUsedModules"], [7, 1, 1, "", "writeUsedModulesJson"]], "ExternalIntegration": [[8, 2, 1, "", "CURLINFO_RESPONSE_CODE"], [8, 2, 1, "", "CURLOPT_CAINFO"], [8, 2, 1, "", "CURLOPT_CAPATH"], [8, 2, 1, "", "CURLOPT_CUSTOMREQUEST"], [8, 2, 1, "", "CURLOPT_FAILONERROR"], [8, 2, 1, "", "CURLOPT_HTTPHEADER"], [8, 2, 1, "", "CURLOPT_KEYPASSWD"], [8, 2, 1, "", "CURLOPT_PASSWORD"], [8, 2, 1, "", "CURLOPT_POSTFIELDS"], [8, 2, 1, "", "CURLOPT_SSLCERT"], [8, 2, 1, "", "CURLOPT_SSLCERTTYPE"], [8, 2, 1, "", "CURLOPT_SSLKEY"], [8, 2, 1, "", "CURLOPT_SSL_VERIFYPEER"], [8, 2, 1, "", "CURLOPT_URL"], [8, 2, 1, "", "CURLOPT_USERNAME"], [8, 2, 1, "", "CURLOPT_USE_SSL"], [8, 2, 1, "", "CURLOPT_VERBOSE"], [8, 10, 1, "", "Channel"], [8, 7, 1, "", "ChannelType"], [8, 10, 1, "", "FileChannel"], [8, 10, 1, "", "HttpChannel"], [8, 7, 1, "", "HttpRequestFormat"], [8, 7, 1, "", "HttpRequestType"], [8, 10, 1, "", "HttpsChannel"], [8, 7, 1, "", "ServiceEndpoint"], [8, 7, 1, "", "SystemType"], [8, 1, 1, "", "deregisterFromExternalSystem"], [8, 1, 1, "", "deregisterFromKubernetes"], [8, 2, 1, "", "eiLogger"], [8, 1, 1, "", "getConnectHostIp"], [8, 1, 1, "", "getKubernetesDeregisterParameters"], [8, 1, 1, "", "getKubernetesRegistrationParameters"], [8, 1, 1, "", "registerWithExternalSystem"], [8, 1, 1, "", "registerWithKubernetes"]], "ExternalIntegration.Channel": [[8, 5, 1, "", "write"]], "ExternalIntegration.ChannelType": [[8, 8, 1, "", "FILE"], [8, 8, 1, "", "HTTP"], [8, 8, 1, "", "STDOUT"]], "ExternalIntegration.FileChannel": [[8, 6, 1, "", "append"], [8, 5, 1, "", "init"], [8, 6, 1, "", "path"], [8, 5, 1, "", "write"]], "ExternalIntegration.HttpChannel": [[8, 5, 1, "", "configureChannel"], [8, 5, 1, "", "generateHeader"], [8, 5, 1, "", "init"], [8, 6, 1, "", "requestFormat"], [8, 6, 1, "", "requestType"], [8, 6, 1, "", "url"], [8, 5, 1, "", "write"]], "ExternalIntegration.HttpRequestFormat": [[8, 8, 1, "", "JSON"], [8, 8, 1, "", "MULTIPART"], [8, 8, 1, "", "TEXT"]], "ExternalIntegration.HttpRequestType": [[8, 8, 1, "", "DELETE"], [8, 8, 1, "", "PATCH"], [8, 8, 1, "", "POST"], [8, 8, 1, "", "PUT"]], "ExternalIntegration.HttpsChannel": [[8, 6, 1, "", "caCert"], [8, 5, 1, "", "configureChannel"], [8, 5, 1, "", "generateHeader"], [8, 5, 1, "", "init"], [8, 6, 1, "", "token"]], "ExternalIntegration.ServiceEndpoint": [[8, 8, 1, "", "ARKOUDA_CLIENT"], [8, 8, 1, "", "METRICS"]], "ExternalIntegration.SystemType": [[8, 8, 1, "", "CONSUL"], [8, 8, 1, "", "KUBERNETES"], [8, 8, 1, "", "NONE"], [8, 8, 1, "", "REDIS"]], "FileIO": [[9, 7, 1, "", "FileType"], [9, 2, 1, "", "MAGIC_ARROW"], [9, 2, 1, "", "MAGIC_CSV"], [9, 2, 1, "", "MAGIC_HDF5"], [9, 2, 1, "", "MAGIC_PARQUET"], [9, 1, 1, "", "appendFile"], [9, 1, 1, "", "delimitedFileToMap"], [9, 1, 1, "", "domain_intersection"], [9, 1, 1, "", "ensureClose"], [9, 2, 1, "", "fioLogger"], [9, 1, 1, "", "generateFilename"], [9, 1, 1, "", "generateFilenames"], [9, 1, 1, "", "getFileMetadata"], [9, 1, 1, "", "getFileType"], [9, 1, 1, "", "getFileTypeByMagic"], [9, 1, 1, "", "getFileTypeMsg"], [9, 1, 1, "", "getFirstEightBytesFromFile"], [9, 1, 1, "", "getLineFromFile"], [9, 1, 1, "", "getMatchingFilenames"], [9, 1, 1, "", "globExpansionMsg"], [9, 1, 1, "", "initDirectory"], [9, 1, 1, "", "isGlobPattern"], [9, 1, 1, "", "lsAnyMsg"], [9, 1, 1, "", "writeLinesToFile"], [9, 1, 1, "", "writeToFile"]], "FileIO.FileType": [[9, 8, 1, "", "ARROW"], [9, 8, 1, "", "CSV"], [9, 8, 1, "", "HDF5"], [9, 8, 1, "", "PARQUET"], [9, 8, 1, "", "UNKNOWN"]], "GenSymIO": [[10, 2, 1, "", "NULL_STRINGS_VALUE"], [10, 1, 1, "", "array"], [10, 1, 1, "", "arraySegString"], [10, 1, 1, "", "buildReadAllMsgJson"], [10, 1, 1, "", "checkCast"], [10, 2, 1, "", "gsLogger"], [10, 1, 1, "", "jsonToMap"], [10, 1, 1, "", "makeArrayFromBytes"], [10, 1, 1, "", "segmentedCalcOffsets"], [10, 1, 1, "", "tondarray"]], "IOUtils": [[11, 1, 1, "", "formatJson"], [11, 1, 1, "", "jsonToArray"], [11, 1, 1, "", "parseJson"]], "In1d": [[12, 1, 1, "", "in1d"], [12, 1, 1, "", "in1dAr2PerLocAssoc"], [12, 1, 1, "", "in1dSort"]], "Logging": [[13, 10, 1, "", "ConsoleOutputHandler"], [13, 10, 1, "", "FileOutputHandler"], [13, 7, 1, "", "LogChannel"], [13, 7, 1, "", "LogLevel"], [13, 10, 1, "", "Logger"], [13, 10, 1, "", "OutputHandler"], [13, 1, 1, "", "getOutputHandler"]], "Logging.ConsoleOutputHandler": [[13, 5, 1, "", "write"]], "Logging.FileOutputHandler": [[13, 6, 1, "", "filePath"], [13, 5, 1, "", "init"], [13, 5, 1, "", "write"], [13, 5, 1, "", "writeToFile"]], "Logging.LogChannel": [[13, 8, 1, "", "CONSOLE"], [13, 8, 1, "", "FILE"]], "Logging.LogLevel": [[13, 8, 1, "", "CRITICAL"], [13, 8, 1, "", "DEBUG"], [13, 8, 1, "", "ERROR"], [13, 8, 1, "", "INFO"], [13, 8, 1, "", "WARN"]], "Logging.Logger": [[13, 5, 1, "", "critical"], [13, 6, 1, "", "criticalLevels"], [13, 5, 1, "", "debug"], [13, 5, 1, "", "error"], [13, 6, 1, "", "errorLevels"], [13, 5, 1, "", "generateDateTimeString"], [13, 5, 1, "", "generateErrorMsg"], [13, 5, 1, "", "generateLogMessage"], [13, 5, 1, "", "info"], [13, 6, 1, "", "infoLevels"], [13, 5, 1, "", "init"], [13, 6, 1, "", "level"], [13, 6, 1, "", "outputHandler"], [13, 6, 1, "", "printDate"], [13, 5, 1, "", "warn"], [13, 6, 1, "", "warnLevels"]], "Logging.OutputHandler": [[13, 5, 1, "", "write"]], "MemoryMgmt": [[14, 4, 1, "", "LocaleMemoryStatus"], [14, 7, 1, "", "MemMgmtType"], [14, 2, 1, "", "availableMemoryPct"], [14, 1, 1, "", "getArkoudaMemAlloc"], [14, 1, 1, "", "getArkoudaPid"], [14, 1, 1, "", "getAvailMemory"], [14, 1, 1, "", "getLocaleMemoryStatuses"], [14, 1, 1, "", "getTotalMemory"], [14, 1, 1, "", "isMemAvailable"], [14, 1, 1, "", "isSupportedOS"], [14, 1, 1, "", "localeMemAvailable"], [14, 2, 1, "", "memMgmtType"], [14, 2, 1, "", "mmLogger"]], "MemoryMgmt.LocaleMemoryStatus": [[14, 6, 1, "", "arkouda_mem_alloc"], [14, 6, 1, "", "avail_mem"], [14, 6, 1, "", "locale_hostname"], [14, 6, 1, "", "locale_id"], [14, 6, 1, "", "mem_used"], [14, 6, 1, "", "pct_avail_mem"], [14, 6, 1, "", "total_mem"]], "MemoryMgmt.MemMgmtType": [[14, 8, 1, "", "DYNAMIC"], [14, 8, 1, "", "STATIC"]], "Message": [[15, 10, 1, "", "MessageArgs"], [15, 7, 1, "", "MsgFormat"], [15, 4, 1, "", "MsgTuple"], [15, 7, 1, "", "MsgType"], [15, 4, 1, "", "ParameterObj"], [15, 4, 1, "", "RequestMsg"], [15, 1, 1, "", "deserialize"], [15, 1, 1, "", "parseMessageArgs"], [15, 1, 1, "", "parseParameter"], [15, 1, 1, "", "serialize"]], "Message.MessageArgs": [[15, 5, 1, "", "addPayload"], [15, 5, 1, "", "contains"], [15, 5, 1, "", "get"], [15, 5, 1, "", "getValueOf"], [15, 5, 1, "", "init"], [15, 6, 1, "", "param_list"], [15, 6, 1, "", "payload"], [15, 5, 1, "", "serialize"], [15, 6, 1, "", "size"], [15, 9, 1, "", "these"], [15, 5, 1, "", "this"]], "Message.MsgFormat": [[15, 8, 1, "", "BINARY"], [15, 8, 1, "", "STRING"]], "Message.MsgTuple": [[15, 5, 1, "", "error"], [15, 5, 1, "", "fromResponses"], [15, 5, 1, "", "fromScalar"], [15, 5, 1, "", "init"], [15, 6, 1, "", "msg"], [15, 6, 1, "", "msgFormat"], [15, 6, 1, "", "msgType"], [15, 5, 1, "", "newSymbol"], [15, 6, 1, "", "payload"], [15, 5, 1, "", "serialize"], [15, 5, 1, "", "success"], [15, 6, 1, "", "user"]], "Message.MsgType": [[15, 8, 1, "", "ERROR"], [15, 8, 1, "", "NORMAL"], [15, 8, 1, "", "WARNING"]], "Message.ParameterObj": [[15, 6, 1, "", "dtype"], [15, 5, 1, "", "getBigIntValue"], [15, 5, 1, "", "getBoolValue"], [15, 5, 1, "", "getDType"], [15, 5, 1, "", "getIntValue"], [15, 5, 1, "", "getList"], [15, 5, 1, "", "getPositiveIntValue"], [15, 5, 1, "", "getRealValue"], [15, 5, 1, "", "getScalarValue"], [15, 5, 1, "", "getTuple"], [15, 5, 1, "", "getUInt8Value"], [15, 5, 1, "", "getUIntValue"], [15, 5, 1, "", "getValue"], [15, 5, 1, "", "init"], [15, 6, 1, "", "key"], [15, 5, 1, "", "setKey"], [15, 5, 1, "", "setVal"], [15, 5, 1, "", "toScalar"], [15, 5, 1, "", "toScalarArray"], [15, 5, 1, "", "toScalarList"], [15, 5, 1, "", "toScalarTuple"], [15, 5, 1, "", "tryGetScalar"], [15, 6, 1, "", "val"]], "Message.RequestMsg": [[15, 6, 1, "", "args"], [15, 6, 1, "", "cmd"], [15, 6, 1, "", "format"], [15, 6, 1, "", "size"], [15, 6, 1, "", "token"], [15, 6, 1, "", "user"]], "MetricsMsg": [[16, 10, 1, "", "ArrayMetric"], [16, 10, 1, "", "AverageMeasurementTable"], [16, 10, 1, "", "AvgMetricValue"], [16, 10, 1, "", "CounterTable"], [16, 10, 1, "", "LocaleInfo"], [16, 10, 1, "", "LocaleMetric"], [16, 10, 1, "", "MeasurementTable"], [16, 10, 1, "", "Metric"], [16, 7, 1, "", "MetricCategory"], [16, 7, 1, "", "MetricDataType"], [16, 7, 1, "", "MetricScope"], [16, 10, 1, "", "MetricValue"], [16, 10, 1, "", "ServerInfo"], [16, 4, 1, "", "User"], [16, 10, 1, "", "UserMetric"], [16, 10, 1, "", "UserMetrics"], [16, 10, 1, "", "Users"], [16, 2, 1, "", "avgResponseTimeMetrics"], [16, 2, 1, "", "errorMetrics"], [16, 1, 1, "", "exportAllMetrics"], [16, 1, 1, "", "getAllUserRequestMetrics"], [16, 1, 1, "", "getAvgResponseTimeMetrics"], [16, 1, 1, "", "getMaxLocaleMemory"], [16, 1, 1, "", "getNumErrorMetrics"], [16, 1, 1, "", "getNumRequestMetrics"], [16, 1, 1, "", "getPerUserNumRequestMetrics"], [16, 1, 1, "", "getResponseTimeMetrics"], [16, 1, 1, "", "getServerInfo"], [16, 1, 1, "", "getServerMetrics"], [16, 1, 1, "", "getSystemMetrics"], [16, 1, 1, "", "getTotalMemoryUsedMetrics"], [16, 1, 1, "", "getTotalResponseTimeMetrics"], [16, 1, 1, "", "getUserRequestMetrics"], [16, 2, 1, "", "mLogger"], [16, 2, 1, "", "metricScope"], [16, 1, 1, "", "metricsMsg"], [16, 2, 1, "", "requestMetrics"], [16, 2, 1, "", "responseTimeMetrics"], [16, 2, 1, "", "serverMetrics"], [16, 2, 1, "", "totalMemoryUsedMetrics"], [16, 2, 1, "", "totalResponseTimeMetrics"], [16, 2, 1, "", "userMetrics"], [16, 2, 1, "", "users"]], "MetricsMsg.ArrayMetric": [[16, 6, 1, "", "cmd"], [16, 6, 1, "", "dType"], [16, 5, 1, "", "init"], [16, 6, 1, "", "size"]], "MetricsMsg.AverageMeasurementTable": [[16, 5, 1, "", "add"], [16, 5, 1, "", "getMeasurementTotal"], [16, 5, 1, "", "getNumMeasurements"], [16, 6, 1, "", "measurementTotals"], [16, 6, 1, "", "numMeasurements"]], "MetricsMsg.AvgMetricValue": [[16, 6, 1, "", "intTotal"], [16, 6, 1, "", "numValues"], [16, 6, 1, "", "realTotal"], [16, 5, 1, "", "update"]], "MetricsMsg.CounterTable": [[16, 6, 1, "", "counts"], [16, 5, 1, "", "decrement"], [16, 5, 1, "", "get"], [16, 5, 1, "", "increment"], [16, 9, 1, "", "items"], [16, 5, 1, "", "set"], [16, 5, 1, "", "size"], [16, 5, 1, "", "total"]], "MetricsMsg.LocaleInfo": [[16, 6, 1, "", "hostname"], [16, 6, 1, "", "id"], [16, 6, 1, "", "max_number_of_tasks"], [16, 6, 1, "", "name"], [16, 6, 1, "", "number_of_processing_units"], [16, 6, 1, "", "physical_memory"]], "MetricsMsg.LocaleMetric": [[16, 5, 1, "", "init"], [16, 6, 1, "", "locale_hostname"], [16, 6, 1, "", "locale_name"], [16, 6, 1, "", "locale_num"]], "MetricsMsg.MeasurementTable": [[16, 5, 1, "", "add"], [16, 5, 1, "", "get"], [16, 9, 1, "", "items"], [16, 6, 1, "", "measurements"], [16, 5, 1, "", "set"], [16, 5, 1, "", "size"]], "MetricsMsg.Metric": [[16, 6, 1, "", "category"], [16, 5, 1, "", "init"], [16, 6, 1, "", "name"], [16, 6, 1, "", "scope"], [16, 6, 1, "", "timestamp"], [16, 6, 1, "", "value"]], "MetricsMsg.MetricCategory": [[16, 8, 1, "", "ALL"], [16, 8, 1, "", "AVG_RESPONSE_TIME"], [16, 8, 1, "", "NUM_ERRORS"], [16, 8, 1, "", "NUM_REQUESTS"], [16, 8, 1, "", "RESPONSE_TIME"], [16, 8, 1, "", "SERVER"], [16, 8, 1, "", "SERVER_INFO"], [16, 8, 1, "", "SYSTEM"], [16, 8, 1, "", "TOTAL_MEMORY_USED"], [16, 8, 1, "", "TOTAL_RESPONSE_TIME"]], "MetricsMsg.MetricDataType": [[16, 8, 1, "", "INT"], [16, 8, 1, "", "REAL"]], "MetricsMsg.MetricScope": [[16, 8, 1, "", "GLOBAL"], [16, 8, 1, "", "LOCALE"], [16, 8, 1, "", "REQUEST"], [16, 8, 1, "", "USER"]], "MetricsMsg.MetricValue": [[16, 6, 1, "", "dataType"], [16, 5, 1, "", "init"], [16, 6, 1, "", "intValue"], [16, 6, 1, "", "realValue"], [16, 5, 1, "", "update"]], "MetricsMsg.ServerInfo": [[16, 6, 1, "", "hostname"], [16, 5, 1, "", "init"], [16, 6, 1, "", "locales"], [16, 6, 1, "", "number_of_locales"], [16, 6, 1, "", "server_port"], [16, 6, 1, "", "version"]], "MetricsMsg.User": [[16, 6, 1, "", "name"]], "MetricsMsg.UserMetric": [[16, 5, 1, "", "init"], [16, 6, 1, "", "user"]], "MetricsMsg.UserMetrics": [[16, 5, 1, "", "getPerUserNumRequestsPerCommandForAllUsersMetrics"], [16, 5, 1, "", "getPerUserNumRequestsPerCommandMetrics"], [16, 5, 1, "", "getUserMetrics"], [16, 5, 1, "", "incrementNumRequestsPerCommand"], [16, 5, 1, "", "incrementPerUserRequestMetrics"], [16, 5, 1, "", "incrementTotalNumRequests"], [16, 6, 1, "", "metrics"], [16, 6, 1, "", "users"]], "MetricsMsg.Users": [[16, 5, 1, "", "getUser"], [16, 5, 1, "", "getUserNames"], [16, 5, 1, "", "getUsers"], [16, 6, 1, "", "users"]], "MsgProcessing": [[17, 1, 1, "", "chunkInfoAsArray"], [17, 1, 1, "", "chunkInfoAsString"], [17, 1, 1, "", "clearMsg"], [17, 1, 1, "", "create"], [17, 1, 1, "", "createScalarArray"], [17, 1, 1, "", "deleteMsg"], [17, 1, 1, "", "getCommandMapMsg"], [17, 1, 1, "", "getconfigMsg"], [17, 1, 1, "", "getmemavailMsg"], [17, 1, 1, "", "getmemusedMsg"], [17, 1, 1, "", "infoMsg"], [17, 2, 1, "", "mpLogger"], [17, 1, 1, "", "reprMsg"], [17, 1, 1, "", "setMsg"], [17, 1, 1, "", "strMsg"]], "MultiTypeRegEntry": [[18, 10, 1, "", "AbstractRegEntry"], [18, 10, 1, "", "ArrayRegEntry"], [18, 10, 1, "", "BitVectorRegEntry"], [18, 10, 1, "", "CategoricalRegEntry"], [18, 10, 1, "", "DataFrameRegEntry"], [18, 10, 1, "", "GenRegEntry"], [18, 10, 1, "", "GroupByRegEntry"], [18, 10, 1, "", "IndexRegEntry"], [18, 7, 1, "", "RegistryEntryType"], [18, 10, 1, "", "SegArrayRegEntry"], [18, 10, 1, "", "SeriesRegEntry"], [18, 2, 1, "", "regLogger"]], "MultiTypeRegEntry.AbstractRegEntry": [[18, 6, 1, "", "assignableTypes"], [18, 6, 1, "", "entryType"], [18, 5, 1, "", "init"], [18, 6, 1, "", "name"], [18, 5, 1, "", "setName"]], "MultiTypeRegEntry.ArrayRegEntry": [[18, 6, 1, "", "array"], [18, 5, 1, "", "asMap"], [18, 5, 1, "", "init"]], "MultiTypeRegEntry.BitVectorRegEntry": [[18, 6, 1, "", "array"], [18, 5, 1, "", "asMap"], [18, 5, 1, "", "init"], [18, 6, 1, "", "reverse"], [18, 6, 1, "", "width"]], "MultiTypeRegEntry.CategoricalRegEntry": [[18, 5, 1, "", "asMap"], [18, 6, 1, "", "categories"], [18, 6, 1, "", "codes"], [18, 5, 1, "", "init"], [18, 6, 1, "", "naCode"], [18, 6, 1, "", "permutation"], [18, 6, 1, "", "segments"]], "MultiTypeRegEntry.DataFrameRegEntry": [[18, 5, 1, "", "asMap"], [18, 6, 1, "", "column_names"], [18, 6, 1, "", "columns"], [18, 6, 1, "", "idx"], [18, 5, 1, "", "init"]], "MultiTypeRegEntry.GenRegEntry": [[18, 5, 1, "", "init"], [18, 6, 1, "", "objType"], [18, 5, 1, "", "toDataFrameRegEntry"]], "MultiTypeRegEntry.GroupByRegEntry": [[18, 5, 1, "", "asMap"], [18, 5, 1, "", "init"], [18, 6, 1, "", "keys"], [18, 6, 1, "", "permutation"], [18, 6, 1, "", "segments"], [18, 6, 1, "", "uki"]], "MultiTypeRegEntry.IndexRegEntry": [[18, 5, 1, "", "asMap"], [18, 6, 1, "", "idx"], [18, 5, 1, "", "init"]], "MultiTypeRegEntry.RegistryEntryType": [[18, 8, 1, "", "AbstractRegEntry"], [18, 8, 1, "", "ArrayRegEntry"], [18, 8, 1, "", "BitVectorRegEntry"], [18, 8, 1, "", "CategoricalRegEntry"], [18, 8, 1, "", "DataFrameRegEntry"], [18, 8, 1, "", "GenRegEntry"], [18, 8, 1, "", "GroupByRegEntry"], [18, 8, 1, "", "IndexRegEntry"], [18, 8, 1, "", "SegArrayRegEntry"], [18, 8, 1, "", "SeriesRegEntry"]], "MultiTypeRegEntry.SegArrayRegEntry": [[18, 5, 1, "", "asMap"], [18, 5, 1, "", "init"], [18, 6, 1, "", "lengths"], [18, 6, 1, "", "segments"], [18, 6, 1, "", "values"]], "MultiTypeRegEntry.SeriesRegEntry": [[18, 5, 1, "", "asMap"], [18, 6, 1, "", "idx"], [18, 5, 1, "", "init"], [18, 6, 1, "", "values"]], "MultiTypeSymEntry": [[19, 10, 1, "", "AbstractSymEntry"], [19, 10, 1, "", "CompositeSymEntry"], [19, 10, 1, "", "GenSparseSymEntry"], [19, 10, 1, "", "GenSymEntry"], [19, 10, 1, "", "GeneratorSymEntry"], [19, 10, 1, "", "SegStringSymEntry"], [19, 10, 1, "", "SparseSymEntry"], [19, 10, 1, "", "SymEntry"], [19, 7, 1, "", "SymbolEntryType"], [19, 1, 1, "", "createSymEntry"], [19, 1, 1, "", "createTypedSymEntry"], [19, 2, 1, "", "genLogger"], [19, 1, 1, "", "getArraySpecFromEntry"], [19, 1, 1, "", "layoutToStr"], [19, 1, 1, "", "toCompositeSymEntry"], [19, 1, 1, "", "toGenSparseSymEntry"], [19, 1, 1, "", "toGenSymEntry"], [19, 1, 1, "", "toGeneratorSymEntry"], [19, 1, 1, "", "toSegStringSymEntry"], [19, 1, 1, "", "toSymEntry"], [19, 1, 1, "", "tupShapeString"]], "MultiTypeSymEntry.AbstractSymEntry": [[19, 6, 1, "", "assignableTypes"], [19, 6, 1, "", "entryType"], [19, 5, 1, "", "entry__str__"], [19, 5, 1, "", "getSizeEstimate"], [19, 5, 1, "", "init"], [19, 5, 1, "", "isAssignableTo"], [19, 6, 1, "", "name"], [19, 5, 1, "", "setName"]], "MultiTypeSymEntry.CompositeSymEntry": [[19, 5, 1, "", "attrib"], [19, 5, 1, "", "init"], [19, 6, 1, "", "ndim"], [19, 6, 1, "", "size"]], "MultiTypeSymEntry.GenSparseSymEntry": [[19, 5, 1, "", "attrib"], [19, 6, 1, "", "dtype"], [19, 5, 1, "", "entry__str__"], [19, 5, 1, "", "init"], [19, 6, 1, "", "itemsize"], [19, 6, 1, "", "layoutStr"], [19, 6, 1, "", "ndim"], [19, 6, 1, "", "nnz"], [19, 6, 1, "", "shape"], [19, 6, 1, "", "size"], [19, 5, 1, "", "toSparseSymEntry"]], "MultiTypeSymEntry.GenSymEntry": [[19, 5, 1, "", "attrib"], [19, 6, 1, "", "dtype"], [19, 5, 1, "", "entry__str__"], [19, 5, 1, "", "getSizeEstimate"], [19, 5, 1, "", "init"], [19, 6, 1, "", "itemsize"], [19, 6, 1, "", "ndim"], [19, 6, 1, "", "shape"], [19, 6, 1, "", "size"], [19, 5, 1, "", "toSymEntry"]], "MultiTypeSymEntry.GeneratorSymEntry": [[19, 6, 1, "", "etype"], [19, 6, 1, "", "generator"], [19, 5, 1, "", "init"], [19, 6, 1, "", "state"]], "MultiTypeSymEntry.SegStringSymEntry": [[19, 6, 1, "", "bytesEntry"], [19, 5, 1, "", "entry__str__"], [19, 6, 1, "", "etype"], [19, 5, 1, "", "getSizeEstimate"], [19, 5, 1, "", "init"], [19, 6, 1, "", "offsetsEntry"]], "MultiTypeSymEntry.SparseSymEntry": [[19, 6, 1, "", "a"], [19, 5, 1, "", "deinit"], [19, 6, 1, "", "dimensions"], [19, 5, 1, "", "entry__str__"], [19, 6, 1, "", "etype"], [19, 5, 1, "", "init"], [19, 6, 1, "", "matLayout"], [19, 6, 1, "", "tupShape"]], "MultiTypeSymEntry.SymEntry": [[19, 6, 1, "", "a"], [19, 5, 1, "", "aD"], [19, 5, 1, "", "deinit"], [19, 6, 1, "", "dimensions"], [19, 5, 1, "", "entry__str__"], [19, 6, 1, "", "etype"], [19, 5, 1, "", "init"], [19, 6, 1, "", "max_bits"], [19, 6, 1, "", "tupShape"]], "MultiTypeSymEntry.SymbolEntryType": [[19, 8, 1, "", "AbstractSymEntry"], [19, 8, 1, "", "AnythingSymEntry"], [19, 8, 1, "", "ComplexTypedArraySymEntry"], [19, 8, 1, "", "CompositeSymEntry"], [19, 8, 1, "", "GenSparseSymEntry"], [19, 8, 1, "", "GenSymEntry"], [19, 8, 1, "", "GeneratorSymEntry"], [19, 8, 1, "", "None"], [19, 8, 1, "", "PrimitiveTypedArraySymEntry"], [19, 8, 1, "", "SegStringSymEntry"], [19, 8, 1, "", "SparseSymEntry"], [19, 8, 1, "", "TypedArraySymEntry"], [19, 8, 1, "", "UnknownSymEntry"]], "MultiTypeSymbolTable": [[20, 10, 1, "", "SymTab"], [20, 1, 1, "", "getGenericSparseArrayEntry"], [20, 1, 1, "", "getGenericTypedArrayEntry"], [20, 1, 1, "", "getSegStringEntry"], [20, 2, 1, "", "mtLogger"]], "MultiTypeSymbolTable.SymTab": [[20, 5, 1, "", "addEntry"], [20, 5, 1, "", "attrib"], [20, 5, 1, "", "checkTable"], [20, 5, 1, "", "clear"], [20, 5, 1, "", "contains"], [20, 5, 1, "", "datarepr"], [20, 5, 1, "", "datastr"], [20, 5, 1, "", "deleteEntry"], [20, 5, 1, "", "dump"], [20, 5, 1, "", "findAll"], [20, 5, 1, "", "formatEntry"], [20, 5, 1, "", "getEntries"], [20, 5, 1, "", "info"], [20, 5, 1, "", "insert"], [20, 5, 1, "", "lookup"], [20, 5, 1, "", "memUsed"], [20, 5, 1, "", "nextName"], [20, 6, 1, "", "nid"], [20, 5, 1, "", "parseJson"], [20, 5, 1, "", "pretty"], [20, 6, 1, "", "registry"], [20, 6, 1, "", "serverid"], [20, 6, 1, "", "tab"], [20, 5, 1, "", "this"]], "NumPyDType": [[21, 7, 1, "", "DTK"], [21, 7, 1, "", "DType"], [21, 1, 1, "", "bool2str"], [21, 1, 1, "", "commonDType"], [21, 1, 1, "", "divDType"], [21, 1, 1, "", "dtype2str"], [21, 1, 1, "", "dtypeSize"], [21, 1, 1, "", "str2dtype"], [21, 1, 1, "", "type2fmt"], [21, 1, 1, "", "type2str"], [21, 1, 1, "", "typeSize"], [21, 1, 1, "", "whichDtype"]], "NumPyDType.DTK": [[21, 8, 1, "", "Bool"], [21, 8, 1, "", "Complex"], [21, 8, 1, "", "Float"], [21, 8, 1, "", "Integer"], [21, 8, 1, "", "Other"]], "NumPyDType.DType": [[21, 8, 1, "", "BigInt"], [21, 8, 1, "", "Bool"], [21, 8, 1, "", "Complex128"], [21, 8, 1, "", "Complex64"], [21, 8, 1, "", "Float32"], [21, 8, 1, "", "Float64"], [21, 8, 1, "", "Int16"], [21, 8, 1, "", "Int32"], [21, 8, 1, "", "Int64"], [21, 8, 1, "", "Int8"], [21, 8, 1, "", "Strings"], [21, 8, 1, "", "UInt16"], [21, 8, 1, "", "UInt32"], [21, 8, 1, "", "UInt64"], [21, 8, 1, "", "UInt8"], [21, 8, 1, "", "UNDEF"]], "RadixSortLSD": [[22, 4, 1, "", "KeysComparator"], [22, 4, 1, "", "KeysRanksComparator"], [22, 2, 1, "", "RSLSD_numTasks"], [22, 2, 1, "", "RSLSD_vv"], [22, 2, 1, "", "Tasks"], [22, 1, 1, "", "calcBlock"], [22, 1, 1, "", "calcGlobalIndex"], [22, 2, 1, "", "numTasks"], [22, 1, 1, "", "radixSortLSD"], [22, 1, 1, "", "radixSortLSD_keys"], [22, 1, 1, "", "radixSortLSD_keys_memEst"], [22, 1, 1, "", "radixSortLSD_memEst"], [22, 1, 1, "", "radixSortLSD_ranks"], [22, 2, 1, "", "rsLogger"], [22, 2, 1, "", "vv"]], "RadixSortLSD.KeysComparator": [[22, 5, 1, "", "key"]], "RadixSortLSD.KeysRanksComparator": [[22, 5, 1, "", "key"]], "Registry": [[23, 10, 1, "", "RegTab"], [23, 2, 1, "", "regLogger"]], "Registry.RegTab": [[23, 5, 1, "", "checkAvailability"], [23, 5, 1, "", "checkTable"], [23, 5, 1, "", "contains"], [23, 5, 1, "", "list_registry"], [23, 5, 1, "", "lookup"], [23, 5, 1, "", "register_array"], [23, 5, 1, "", "register_bitvector"], [23, 5, 1, "", "register_categorical"], [23, 5, 1, "", "register_categorical_components"], [23, 5, 1, "", "register_dataframe"], [23, 5, 1, "", "register_groupby"], [23, 5, 1, "", "register_index"], [23, 5, 1, "", "register_index_components"], [23, 5, 1, "", "register_segarray"], [23, 5, 1, "", "register_segarray_components"], [23, 5, 1, "", "register_series"], [23, 6, 1, "", "registered_entries"], [23, 6, 1, "", "tab"], [23, 5, 1, "", "unregister_array"], [23, 5, 1, "", "unregister_bitvector"], [23, 5, 1, "", "unregister_categorical"], [23, 5, 1, "", "unregister_categorical_components"], [23, 5, 1, "", "unregister_dataframe"], [23, 5, 1, "", "unregister_groupby"], [23, 5, 1, "", "unregister_index"], [23, 5, 1, "", "unregister_index_components"], [23, 5, 1, "", "unregister_segarray"], [23, 5, 1, "", "unregister_segarray_components"], [23, 5, 1, "", "unregister_series"]], "Security": [[24, 1, 1, "", "generateToken"], [24, 1, 1, "", "getArkoudaToken"], [24, 1, 1, "", "setArkoudaToken"]], "SegStringSort": [[25, 4, 1, "", "StringIntComparator"], [25, 1, 1, "", "calcBlock"], [25, 1, 1, "", "calcGlobalIndex"], [25, 1, 1, "", "gatherLongStrings"], [25, 1, 1, "", "getPivot"], [25, 1, 1, "", "radixSortLSD_raw"], [25, 2, 1, "", "ssLogger"], [25, 1, 1, "", "twoPhaseStringSort"]], "SegStringSort.StringIntComparator": [[25, 5, 1, "", "keyPart"]], "SegmentedComputation": [[26, 7, 1, "", "SegFunction"], [26, 1, 1, "", "computeOnSegments"], [26, 1, 1, "", "computeSegmentOwnership"]], "SegmentedComputation.SegFunction": [[26, 8, 1, "", "SipHash128"], [26, 8, 1, "", "StringCompareLiteralEq"], [26, 8, 1, "", "StringCompareLiteralNeq"], [26, 8, 1, "", "StringIsAlphaNumeric"], [26, 8, 1, "", "StringIsAlphabetic"], [26, 8, 1, "", "StringIsDecimal"], [26, 8, 1, "", "StringIsDigit"], [26, 8, 1, "", "StringIsEmpty"], [26, 8, 1, "", "StringIsLower"], [26, 8, 1, "", "StringIsSpace"], [26, 8, 1, "", "StringIsTitle"], [26, 8, 1, "", "StringIsUpper"], [26, 8, 1, "", "StringSearch"], [26, 8, 1, "", "StringToNumericIgnore"], [26, 8, 1, "", "StringToNumericReturnValidity"], [26, 8, 1, "", "StringToNumericStrict"]], "SegmentedString": [[27, 1, 1, "", "!="], [27, 1, 1, "", "=="], [27, 7, 1, "", "Fixes"], [27, 2, 1, "", "NULL_STRINGS_VALUE"], [27, 10, 1, "", "SegString"], [27, 2, 1, "", "SegmentedStringUseHash"], [27, 1, 1, "", "assembleSegStringFromParts"], [27, 1, 1, "", "checkCompile"], [27, 1, 1, "", "compare"], [27, 1, 1, "", "concat"], [27, 1, 1, "", "getSegString"], [27, 1, 1, "", "in1d"], [27, 1, 1, "", "interpretAsBytes"], [27, 1, 1, "", "interpretAsString"], [27, 1, 1, "", "memcmp"], [27, 1, 1, "", "segStrFull"], [27, 2, 1, "", "ssLogger"], [27, 1, 1, "", "stringBytesToUintArr"], [27, 1, 1, "", "stringCompareLiteralEq"], [27, 1, 1, "", "stringCompareLiteralNeq"], [27, 1, 1, "", "stringIsAlphaNumeric"], [27, 1, 1, "", "stringIsAlphabetic"], [27, 1, 1, "", "stringIsDecimal"], [27, 1, 1, "", "stringIsDigit"], [27, 1, 1, "", "stringIsEmpty"], [27, 1, 1, "", "stringIsLower"], [27, 1, 1, "", "stringIsSpace"], [27, 1, 1, "", "stringIsTitle"], [27, 1, 1, "", "stringIsUpper"], [27, 1, 1, "", "stringSearch"], [27, 1, 1, "", "unsafeCompileRegex"]], "SegmentedString.Fixes": [[27, 8, 1, "", "prefixes"], [27, 8, 1, "", "suffixes"]], "SegmentedString.SegString": [[27, 5, 1, "", "argGroup"], [27, 5, 1, "", "argsort"], [27, 5, 1, "", "bytesToUintArr"], [27, 5, 1, "", "capitalize"], [27, 6, 1, "", "composite"], [27, 5, 1, "", "ediff"], [27, 5, 1, "", "findAllMatches"], [27, 5, 1, "", "findMatchLocations"], [27, 5, 1, "", "findSubstringInBytes"], [27, 5, 1, "", "getFixes"], [27, 5, 1, "", "getLengths"], [27, 5, 1, "", "init"], [27, 5, 1, "", "isDecimal"], [27, 5, 1, "", "isLower"], [27, 5, 1, "", "isSorted"], [27, 5, 1, "", "isTitle"], [27, 5, 1, "", "isUpper"], [27, 5, 1, "", "isalnum"], [27, 5, 1, "", "isalpha"], [27, 5, 1, "", "isdigit"], [27, 5, 1, "", "isempty"], [27, 5, 1, "", "isspace"], [27, 5, 1, "", "lower"], [27, 6, 1, "", "nBytes"], [27, 6, 1, "", "name"], [27, 6, 1, "", "offsets"], [27, 5, 1, "", "peel"], [27, 5, 1, "", "peelRegex"], [27, 5, 1, "", "segStrWhere"], [27, 5, 1, "", "show"], [27, 5, 1, "", "siphash"], [27, 6, 1, "", "size"], [27, 5, 1, "", "stick"], [27, 5, 1, "", "strip"], [27, 5, 1, "", "sub"], [27, 5, 1, "", "substringSearch"], [27, 5, 1, "", "this"], [27, 5, 1, "", "title"], [27, 5, 1, "", "upper"], [27, 6, 1, "", "values"]], "ServerConfig": [[28, 2, 1, "", "BSLASH"], [28, 7, 1, "", "Deployment"], [28, 2, 1, "", "ESCAPED_QUOTES"], [28, 2, 1, "", "MaxArrayDims"], [28, 7, 1, "", "ObjType"], [28, 2, 1, "", "Q"], [28, 2, 1, "", "QCQ"], [28, 2, 1, "", "RSLSD_bitsPerDigit"], [28, 2, 1, "", "ServerPort"], [28, 1, 1, "", "appendToConfigStr"], [28, 2, 1, "", "arkoudaVersion"], [28, 2, 1, "", "authenticate"], [28, 2, 1, "", "autoShutdown"], [28, 2, 1, "", "chplVersionArkouda"], [28, 1, 1, "", "createConfig"], [28, 2, 1, "", "deployment"], [28, 1, 1, "", "getByteorder"], [28, 1, 1, "", "getChplVersion"], [28, 1, 1, "", "getConfig"], [28, 1, 1, "", "getConnectHostname"], [28, 1, 1, "", "getEnv"], [28, 1, 1, "", "getEnvInt"], [28, 1, 1, "", "getMemLimit"], [28, 1, 1, "", "getMemUsed"], [28, 1, 1, "", "getPhysicalMemHere"], [28, 1, 1, "", "get_hostname"], [28, 2, 1, "", "logChannel"], [28, 2, 1, "", "logCommands"], [28, 2, 1, "", "logLevel"], [28, 2, 1, "", "memHighWater"], [28, 1, 1, "", "overMemLimit"], [28, 2, 1, "", "perLocaleMemLimit"], [28, 2, 1, "", "regexMaxCaptures"], [28, 2, 1, "", "saveUsedModules"], [28, 2, 1, "", "scLogger"], [28, 2, 1, "", "serverConnectionInfo"], [28, 2, 1, "", "serverHostname"], [28, 2, 1, "", "serverInfoNoSplash"], [28, 2, 1, "", "trace"], [28, 2, 1, "", "usedModulesFmt"]], "ServerConfig.Deployment": [[28, 8, 1, "", "KUBERNETES"], [28, 8, 1, "", "STANDARD"]], "ServerConfig.ObjType": [[28, 8, 1, "", "ARRAYVIEW"], [28, 8, 1, "", "BITVECTOR"], [28, 8, 1, "", "CATEGORICAL"], [28, 8, 1, "", "DATAFRAME"], [28, 8, 1, "", "DATETIME"], [28, 8, 1, "", "GROUPBY"], [28, 8, 1, "", "INDEX"], [28, 8, 1, "", "IPV4"], [28, 8, 1, "", "MULTIINDEX"], [28, 8, 1, "", "PDARRAY"], [28, 8, 1, "", "SEGARRAY"], [28, 8, 1, "", "SERIES"], [28, 8, 1, "", "STRINGS"], [28, 8, 1, "", "TIMEDELTA"], [28, 8, 1, "", "UNKNOWN"]], "ServerConfig.bytes": [[28, 5, 1, "", "splitMsgToTuple"]], "ServerConfig.string": [[28, 5, 1, "", "splitMsgToTuple"]], "ServerDaemon": [[29, 10, 1, "", "ArkoudaServerDaemon"], [29, 10, 1, "", "DefaultServerDaemon"], [29, 10, 1, "", "ExternalIntegrationServerDaemon"], [29, 10, 1, "", "MetricsServerDaemon"], [29, 7, 1, "", "ServerDaemonType"], [29, 10, 1, "", "ServerStatusDaemon"], [29, 1, 1, "", "getDaemonTypes"], [29, 1, 1, "", "getServerDaemon"], [29, 1, 1, "", "getServerDaemons"], [29, 1, 1, "", "integrationEnabled"], [29, 1, 1, "", "metricsEnabled"], [29, 1, 1, "", "multipleServerDaemons"], [29, 1, 1, "", "register"], [29, 2, 1, "", "sdLogger"], [29, 2, 1, "", "serverDaemonTypes"]], "ServerDaemon.ArkoudaServerDaemon": [[29, 5, 1, "", "extractRequest"], [29, 6, 1, "", "port"], [29, 5, 1, "", "requestShutdown"], [29, 5, 1, "", "run"], [29, 5, 1, "", "shutdown"], [29, 6, 1, "", "shutdownDaemon"], [29, 6, 1, "", "st"]], "ServerDaemon.DefaultServerDaemon": [[29, 6, 1, "", "arkDirectory"], [29, 5, 1, "", "authenticateUser"], [29, 6, 1, "", "connectUrl"], [29, 6, 1, "", "context"], [29, 5, 1, "", "createServerConnectionInfo"], [29, 5, 1, "", "deleteServerConnectionInfo"], [29, 5, 1, "", "getConnectUrl"], [29, 5, 1, "", "getErrorName"], [29, 5, 1, "", "init"], [29, 5, 1, "", "initArkoudaDirectory"], [29, 5, 1, "", "printServerSplashMessage"], [29, 5, 1, "", "processErrorMessageMetrics"], [29, 5, 1, "", "processMetrics"], [29, 5, 1, "", "registerServerCommands"], [29, 6, 1, "", "repCount"], [29, 6, 1, "", "reqCount"], [29, 5, 1, "", "requestShutdown"], [29, 5, 1, "", "run"], [29, 5, 1, "", "sendRepMsg"], [29, 6, 1, "", "serverToken"], [29, 5, 1, "", "shutdown"], [29, 6, 1, "", "socket"]], "ServerDaemon.ExternalIntegrationServerDaemon": [[29, 5, 1, "", "run"], [29, 5, 1, "", "shutdown"]], "ServerDaemon.MetricsServerDaemon": [[29, 6, 1, "", "context"], [29, 5, 1, "", "init"], [29, 5, 1, "", "run"], [29, 6, 1, "", "socket"]], "ServerDaemon.ServerDaemonType": [[29, 8, 1, "", "DEFAULT"], [29, 8, 1, "", "INTEGRATION"], [29, 8, 1, "", "METRICS"], [29, 8, 1, "", "STATUS"]], "ServerDaemon.ServerStatusDaemon": [[29, 6, 1, "", "context"], [29, 5, 1, "", "init"], [29, 5, 1, "", "run"], [29, 6, 1, "", "socket"]], "ServerErrorStrings": [[30, 10, 1, "", "ErrorWithMsg"], [30, 1, 1, "", "incompatibleArgumentsError"], [30, 1, 1, "", "notImplementedError"], [30, 1, 1, "", "unknownError"], [30, 1, 1, "", "unknownSymbolError"], [30, 1, 1, "", "unrecognizedTypeError"], [30, 1, 1, "", "unsupportedTypeError"]], "ServerErrorStrings.ErrorWithMsg": [[30, 6, 1, "", "msg"]], "ServerErrors": [[31, 10, 1, "", "ArgumentError"], [31, 10, 1, "", "ConfigurationError"], [31, 10, 1, "", "DatasetNotFoundError"], [31, 10, 1, "", "ErrorWithContext"], [31, 10, 1, "", "HDF5FileFormatError"], [31, 10, 1, "", "IOError"], [31, 10, 1, "", "MismatchedAppendError"], [31, 10, 1, "", "NotHDF5FileError"], [31, 10, 1, "", "NotImplementedError"], [31, 10, 1, "", "OutOfBoundsError"], [31, 10, 1, "", "OverMemoryLimitError"], [31, 10, 1, "", "SegStringError"], [31, 10, 1, "", "UnknownSymbolError"], [31, 10, 1, "", "UnsupportedOSError"], [31, 10, 1, "", "WriteModeError"], [31, 1, 1, "", "generateErrorContext"], [31, 1, 1, "", "getErrorWithContext"]], "ServerErrors.ArgumentError": [[31, 5, 1, "", "init"]], "ServerErrors.ConfigurationError": [[31, 5, 1, "", "init"]], "ServerErrors.DatasetNotFoundError": [[31, 5, 1, "", "init"]], "ServerErrors.ErrorWithContext": [[31, 6, 1, "", "errorClass"], [31, 5, 1, "", "init"], [31, 6, 1, "", "lineNumber"], [31, 6, 1, "", "moduleName"], [31, 5, 1, "", "publish"], [31, 6, 1, "", "publishMsg"], [31, 6, 1, "", "routineName"]], "ServerErrors.HDF5FileFormatError": [[31, 5, 1, "", "init"]], "ServerErrors.IOError": [[31, 5, 1, "", "init"]], "ServerErrors.MismatchedAppendError": [[31, 5, 1, "", "init"]], "ServerErrors.NotHDF5FileError": [[31, 5, 1, "", "init"]], "ServerErrors.NotImplementedError": [[31, 5, 1, "", "init"]], "ServerErrors.OverMemoryLimitError": [[31, 5, 1, "", "init"]], "ServerErrors.SegStringError": [[31, 5, 1, "", "init"]], "ServerErrors.UnknownSymbolError": [[31, 5, 1, "", "init"]], "ServerErrors.UnsupportedOSError": [[31, 5, 1, "", "init"]], "ServerErrors.WriteModeError": [[31, 5, 1, "", "init"]], "SipHash": [[32, 1, 1, "", "ROTL"], [32, 2, 1, "", "cROUNDS"], [32, 2, 1, "", "dROUNDS"], [32, 2, 1, "", "defaultSipHashKey"], [32, 2, 1, "", "shLogger"], [32, 1, 1, "", "sipHash128"], [32, 1, 1, "", "sipHash64"]], "SparseMatrix": [[33, 1, 1, "", "colMajorExScan"], [33, 1, 1, "", "denseMatMatMult"], [33, 1, 1, "", "fillSparseMatrix"], [33, 1, 1, "", "getGrid"], [33, 1, 1, "", "getLSA"], [33, 1, 1, "", "getLSD"], [33, 1, 1, "", "randSparseMatrix"], [33, 1, 1, "", "rowMajorExScan"], [33, 1, 1, "", "sparseMatFromArrays"], [33, 1, 1, "", "sparseMatMatMult"], [33, 1, 1, "", "sparseMatToPdarray"]], "SpsMatUtil": [[34, 7, 1, "", "Layout"], [34, 1, 1, "", "emptySparseDomLike"], [34, 1, 1, "", "makeSparseMat"], [34, 10, 1, "", "merge"], [34, 2, 1, "", "rands"], [34, 2, 1, "", "seed"], [34, 4, 1, "", "sparseMatDat"], [34, 1, 1, "", "writeSparseMatrix"]], "SpsMatUtil.Layout": [[34, 8, 1, "", "CSC"], [34, 8, 1, "", "CSR"]], "SpsMatUtil.merge": [[34, 5, 1, "", "accumulate"], [34, 5, 1, "", "accumulateOntoState"], [34, 5, 1, "", "clone"], [34, 5, 1, "", "combine"], [34, 6, 1, "", "eltType"], [34, 5, 1, "", "generate"], [34, 5, 1, "", "identity"], [34, 6, 1, "", "value"]], "SpsMatUtil.sparseMatDat": [[34, 5, 1, "", "add"]], "StatusMsg": [[35, 1, 1, "", "getMemoryStatusMsg"], [35, 2, 1, "", "sLogger"]], "SymArrayDmap": [[36, 7, 1, "", "Dmap"], [36, 2, 1, "", "MyDmap"], [36, 1, 1, "", "makeDistArray"], [36, 1, 1, "", "makeDistDom"], [36, 1, 1, "", "makeDistDomType"], [36, 1, 1, "", "makeSparseArray"], [36, 1, 1, "", "makeSparseDomain"]], "SymArrayDmap.Dmap": [[36, 8, 1, "", "blockDist"], [36, 8, 1, "", "defaultRectangular"]], "Unique": [[37, 2, 1, "", "uLogger"], [37, 1, 1, "", "uniqueFromSorted"], [37, 1, 1, "", "uniqueFromTruth"], [37, 1, 1, "", "uniqueGroup"], [37, 1, 1, "", "uniqueSort"], [37, 1, 1, "", "uniqueSortWithInverse"]], "arkouda_server": [[38, 2, 1, "", "asLogger"], [38, 1, 1, "", "main"]]}, "objtypes": {"0": "chpl:module", "1": "chpl:function", "2": "chpl:data", "3": "chpl:iterfunction", "4": "chpl:record", "5": "chpl:method", "6": "chpl:attribute", "7": "chpl:enum", "8": "chpl:enumconstant", "9": "chpl:itermethod", "10": "chpl:class"}, "objnames": {"0": ["chpl", "module", " module"], "1": ["chpl", "function", " function"], "2": ["chpl", "data", " data"], "3": ["chpl", "iterfunction", " iterfunction"], "4": ["chpl", "record", " record"], "5": ["chpl", "method", " method"], "6": ["chpl", "attribute", " attribute"], "7": ["chpl", "enum", " enum"], "8": ["chpl", "enumconstant", " enumconstant"], "9": ["chpl", "itermethod", " itermethod"], "10": ["chpl", "class", " class"]}, "titleterms": {"chpldoc": 0, "document": 0, "indic": 0, "tabl": 0, "aryutil": 1, "bigintmsg": 2, "cast": 3, "commaggreg": 4, "bigintegeraggreg": 5, "commprimit": 6, "commandmap": 7, "externalintegr": 8, "fileio": 9, "gensymio": 10, "ioutil": 11, "in1d": 12, "log": 13, "memorymgmt": 14, "messag": 15, "metricsmsg": 16, "msgprocess": 17, "multityperegentri": 18, "multitypesymentri": 19, "multitypesymbolt": 20, "numpydtyp": 21, "radixsortlsd": 22, "registri": 23, "secur": 24, "segstringsort": 25, "segmentedcomput": 26, "segmentedstr": 27, "serverconfig": 28, "serverdaemon": 29, "servererrorstr": 30, "servererror": 31, "siphash": 32, "sparsematrix": 33, "spsmatutil": 34, "statusmsg": 35, "symarraydmap": 36, "uniqu": 37, "arkouda_serv": 38, "arkoudasortcompat": 39, "arkoudasparsematrixcompat": 40}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx": 60}, "alltitles": {"chpldoc documentation": [[0, "chpldoc-documentation"]], "Indices and tables": [[0, "indices-and-tables"]], "AryUtil": [[1, "aryutil"]], "BigIntMsg": [[2, "bigintmsg"]], "Cast": [[3, "cast"]], "CommAggregation": [[4, "commaggregation"]], "BigIntegerAggregation": [[5, "bigintegeraggregation"]], "CommPrimitives": [[6, "commprimitives"]], "CommandMap": [[7, "commandmap"]], "ExternalIntegration": [[8, "externalintegration"]], "FileIO": [[9, "fileio"]], "GenSymIO": [[10, "gensymio"]], "IOUtils": [[11, "ioutils"]], "In1d": [[12, "in1d"]], "Logging": [[13, "logging"]], "MemoryMgmt": [[14, "memorymgmt"]], "Message": [[15, "message"]], "MetricsMsg": [[16, "metricsmsg"]], "MsgProcessing": [[17, "msgprocessing"]], "MultiTypeRegEntry": [[18, "multityperegentry"]], "MultiTypeSymEntry": [[19, "multitypesymentry"]], "MultiTypeSymbolTable": [[20, "multitypesymboltable"]], "NumPyDType": [[21, "numpydtype"]], "RadixSortLSD": [[22, "radixsortlsd"]], "Registry": [[23, "registry"]], "Security": [[24, "security"]], "SegStringSort": [[25, "segstringsort"]], "SegmentedComputation": [[26, "segmentedcomputation"]], "SegmentedString": [[27, "segmentedstring"]], "ServerConfig": [[28, "serverconfig"]], "ServerDaemon": [[29, "serverdaemon"]], "ServerErrorStrings": [[30, "servererrorstrings"]], "ServerErrors": [[31, "servererrors"]], "SipHash": [[32, "siphash"]], "SparseMatrix": [[33, "sparsematrix"]], "SpsMatUtil": [[34, "spsmatutil"]], "StatusMsg": [[35, "statusmsg"]], "SymArrayDmap": [[36, "symarraydmap"]], "Unique": [[37, "unique"]], "arkouda_server": [[38, "arkouda-server"]], "ArkoudaSortCompat": [[39, "arkoudasortcompat"]], "ArkoudaSparseMatrixCompat": [[40, "arkoudasparsematrixcompat"]]}, "indexentries": {"aryutil (module)": [[1, "module-AryUtil"]], "astats() (in module aryutil)": [[1, "AryUtil.aStats"]], "accumranksizes (aryutil.orderer attribute)": [[1, "AryUtil.orderer.accumRankSizes"]], "appendaxis() (in module aryutil)": [[1, "AryUtil.appendAxis"]], "aulogger (in module aryutil)": [[1, "AryUtil.auLogger"]], "axisslices() (in module aryutil)": [[1, "AryUtil.axisSlices"]], "bitsperdigit (in module aryutil)": [[1, "AryUtil.bitsPerDigit"]], "broadcastshape() (in module aryutil)": [[1, "AryUtil.broadcastShape"]], "concatarrays() (in module aryutil)": [[1, "AryUtil.concatArrays"]], "contiguousindices() (in module aryutil)": [[1, "AryUtil.contiguousIndices"]], "deinit() (aryutil.lowlevellocalizingslice method)": [[1, "AryUtil.lowLevelLocalizingSlice.deinit"]], "domoffaxis() (in module aryutil)": [[1, "AryUtil.domOffAxis"]], "domonaxis() (in module aryutil)": [[1, "AryUtil.domOnAxis"]], "filluniform() (in module aryutil)": [[1, "AryUtil.fillUniform"]], "flatten() (in module aryutil)": [[1, "AryUtil.flatten"]], "formatary() (in module aryutil)": [[1, "AryUtil.formatAry"]], "getbitwidth() (in module aryutil)": [[1, "AryUtil.getBitWidth"]], "getdigit() (in module aryutil)": [[1, "AryUtil.getDigit"]], "getnumdigitsnumericarrays() (in module aryutil)": [[1, "AryUtil.getNumDigitsNumericArrays"]], "indextoorder() (aryutil.orderer method)": [[1, "AryUtil.orderer.indexToOrder"]], "init() (aryutil.lowlevellocalizingslice method)": [[1, "AryUtil.lowLevelLocalizingSlice.init"]], "init() (aryutil.orderer method)": [[1, "AryUtil.orderer.init"]], "isowned (aryutil.lowlevellocalizingslice attribute)": [[1, "AryUtil.lowLevelLocalizingSlice.isOwned"]], "issorted() (in module aryutil)": [[1, "AryUtil.isSorted"]], "issortedover() (in module aryutil)": [[1, "AryUtil.isSortedOver"]], "lowlevellocalizingslice (record in aryutil)": [[1, "AryUtil.lowLevelLocalizingSlice"]], "mergenumericarrays() (in module aryutil)": [[1, "AryUtil.mergeNumericArrays"]], "offset() (in module aryutil)": [[1, "AryUtil.offset"]], "orderer (record in aryutil)": [[1, "AryUtil.orderer"]], "printary() (in module aryutil)": [[1, "AryUtil.printAry"]], "printownership() (in module aryutil)": [[1, "AryUtil.printOwnership"]], "printthresh (in module aryutil)": [[1, "AryUtil.printThresh"]], "ptr (aryutil.lowlevellocalizingslice attribute)": [[1, "AryUtil.lowLevelLocalizingSlice.ptr"]], "rank (aryutil.orderer attribute)": [[1, "AryUtil.orderer.rank"]], "reducedshape() (in module aryutil)": [[1, "AryUtil.reducedShape"]], "removeaxis() (in module aryutil)": [[1, "AryUtil.removeAxis"]], "removedegenranks() (in module aryutil)": [[1, "AryUtil.removeDegenRanks"]], "subdomchunk() (in module aryutil)": [[1, "AryUtil.subDomChunk"]], "t (aryutil.lowlevellocalizingslice attribute)": [[1, "AryUtil.lowLevelLocalizingSlice.t"]], "unflatten() (in module aryutil)": [[1, "AryUtil.unflatten"]], "validatearrayssamelength() (in module aryutil)": [[1, "AryUtil.validateArraysSameLength"]], "validatenegativeaxes() (in module aryutil)": [[1, "AryUtil.validateNegativeAxes"]], "bigintmsg (module)": [[2, "module-BigIntMsg"]], "bilogger (in module bigintmsg)": [[2, "BigIntMsg.biLogger"]], "bigintcreationmsg() (in module bigintmsg)": [[2, "BigIntMsg.bigIntCreationMsg"]], "biginttouintarraysmsg() (in module bigintmsg)": [[2, "BigIntMsg.bigintToUintArraysMsg"]], "getmaxbitsmsg() (in module bigintmsg)": [[2, "BigIntMsg.getMaxBitsMsg"]], "setmaxbitsmsg() (in module bigintmsg)": [[2, "BigIntMsg.setMaxBitsMsg"]], "cast (module)": [[3, "module-Cast"]], "errormode (enum in cast)": [[3, "Cast.ErrorMode"]], "castgensymentrytostring() (in module cast)": [[3, "Cast.castGenSymEntryToString"]], "castlogger (in module cast)": [[3, "Cast.castLogger"]], "caststringtobigint() (in module cast)": [[3, "Cast.castStringToBigInt"]], "caststringtosymentry() (in module cast)": [[3, "Cast.castStringToSymEntry"]], "stringtonumericignore() (in module cast)": [[3, "Cast.stringToNumericIgnore"]], "stringtonumericreturnvalidity() (in module cast)": [[3, "Cast.stringToNumericReturnValidity"]], "stringtonumericstrict() (in module cast)": [[3, "Cast.stringToNumericStrict"]], "commaggregation (module)": [[4, "module-CommAggregation"]], "dstaggregator (record in commaggregation)": [[4, "CommAggregation.DstAggregator"]], "dstunorderedaggregator (record in commaggregation)": [[4, "CommAggregation.DstUnorderedAggregator"]], "get() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.GET"]], "put() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.PUT"]], "srcaggregator (record in commaggregation)": [[4, "CommAggregation.SrcAggregator"]], "srcunorderedaggregator (record in commaggregation)": [[4, "CommAggregation.SrcUnorderedAggregator"]], "aggtype (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.aggType"]], "aggtype (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.aggType"]], "bufferidxalloc() (in module commaggregation)": [[4, "CommAggregation.bufferIdxAlloc"]], "bufferidxs (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.bufferIdxs"]], "bufferidxs (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.bufferIdxs"]], "buffersize (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.bufferSize"]], "buffersize (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.bufferSize"]], "cachedalloc() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.cachedAlloc"]], "copy() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.copy"]], "copy() (commaggregation.dstunorderedaggregator method)": [[4, "CommAggregation.DstUnorderedAggregator.copy"]], "copy() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.copy"]], "copy() (commaggregation.srcunorderedaggregator method)": [[4, "CommAggregation.SrcUnorderedAggregator.copy"]], "data (commaggregation.remotebuffer attribute)": [[4, "CommAggregation.remoteBuffer.data"]], "deinit() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.deinit"]], "deinit() (commaggregation.dstunorderedaggregator method)": [[4, "CommAggregation.DstUnorderedAggregator.deinit"]], "deinit() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.deinit"]], "deinit() (commaggregation.srcunorderedaggregator method)": [[4, "CommAggregation.SrcUnorderedAggregator.deinit"]], "deinit() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.deinit"]], "dstaddrs (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.dstAddrs"]], "elemtype (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.elemType"]], "elemtype (commaggregation.dstunorderedaggregator attribute)": [[4, "CommAggregation.DstUnorderedAggregator.elemType"]], "elemtype (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.elemType"]], "elemtype (commaggregation.srcunorderedaggregator attribute)": [[4, "CommAggregation.SrcUnorderedAggregator.elemType"]], "elemtype (commaggregation.remotebuffer attribute)": [[4, "CommAggregation.remoteBuffer.elemType"]], "flush() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.flush"]], "flush() (commaggregation.dstunorderedaggregator method)": [[4, "CommAggregation.DstUnorderedAggregator.flush"]], "flush() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.flush"]], "flush() (commaggregation.srcunorderedaggregator method)": [[4, "CommAggregation.SrcUnorderedAggregator.flush"]], "flushbuffer() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.flushBuffer"]], "flushbuffer() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.flushBuffer"]], "lbuffers (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.lBuffers"]], "lsrcaddrs (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.lSrcAddrs"]], "lsrcvals (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.lSrcVals"]], "lastlocale (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.lastLocale"]], "lastlocale (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.lastLocale"]], "loc (commaggregation.remotebuffer attribute)": [[4, "CommAggregation.remoteBuffer.loc"]], "localfree() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.localFree"]], "localiter() (commaggregation.remotebuffer iterator)": [[4, "CommAggregation.remoteBuffer.localIter"]], "markfreed() (commaggregation.remotebuffer method)": [[4, "CommAggregation.remoteBuffer.markFreed"]], "mylocalespace (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.myLocaleSpace"]], "mylocalespace (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.myLocaleSpace"]], "newdstaggregator() (in module commaggregation)": [[4, "CommAggregation.newDstAggregator"]], "newsrcaggregator() (in module commaggregation)": [[4, "CommAggregation.newSrcAggregator"]], "opsuntilyield (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.opsUntilYield"]], "opsuntilyield (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.opsUntilYield"]], "postinit() (commaggregation.dstaggregator method)": [[4, "CommAggregation.DstAggregator.postinit"]], "postinit() (commaggregation.srcaggregator method)": [[4, "CommAggregation.SrcAggregator.postinit"]], "rbuffers (commaggregation.dstaggregator attribute)": [[4, "CommAggregation.DstAggregator.rBuffers"]], "rsrcaddrs (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.rSrcAddrs"]], "rsrcvals (commaggregation.srcaggregator attribute)": [[4, "CommAggregation.SrcAggregator.rSrcVals"]], "remotebuffer (record in commaggregation)": [[4, "CommAggregation.remoteBuffer"]], "size (commaggregation.remotebuffer attribute)": [[4, "CommAggregation.remoteBuffer.size"]], "bigintegeraggregation (module)": [[5, "module-BigIntegerAggregation"]], "dstaggregatorbigint (record in bigintegeraggregation)": [[5, "BigIntegerAggregation.DstAggregatorBigint"]], "srcaggregatorbigint (record in bigintegeraggregation)": [[5, "BigIntegerAggregation.SrcAggregatorBigint"]], "aggtype (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.aggType"]], "aggtype (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.aggType"]], "bufferidxs (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.bufferIdxs"]], "bufferidxs (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.bufferIdxs"]], "buffersize (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.bufferSize"]], "buffersize (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.bufferSize"]], "copy() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.copy"]], "copy() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.copy"]], "deinit() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.deinit"]], "deinit() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.deinit"]], "deserializefrom() (bigintegeraggregation.bigint method)": [[5, "BigIntegerAggregation.bigint.deserializeFrom"]], "dstaddrs (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.dstAddrs"]], "flush() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.flush"]], "flush() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.flush"]], "flushbuffer() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.flushBuffer"]], "flushbuffer() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.flushBuffer"]], "lbuffers (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.lBuffers"]], "lsrcaddrs (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.lSrcAddrs"]], "lsrcvals (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.lSrcVals"]], "lastlocale (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.lastLocale"]], "lastlocale (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.lastLocale"]], "mylocalespace (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.myLocaleSpace"]], "mylocalespace (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.myLocaleSpace"]], "opsuntilyield (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.opsUntilYield"]], "opsuntilyield (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.opsUntilYield"]], "postinit() (bigintegeraggregation.dstaggregatorbigint method)": [[5, "BigIntegerAggregation.DstAggregatorBigint.postinit"]], "postinit() (bigintegeraggregation.srcaggregatorbigint method)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.postinit"]], "rbuffers (bigintegeraggregation.dstaggregatorbigint attribute)": [[5, "BigIntegerAggregation.DstAggregatorBigint.rBuffers"]], "rsrcaddrs (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.rSrcAddrs"]], "rsrcvals (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.rSrcVals"]], "serializeinto() (bigintegeraggregation.bigint method)": [[5, "BigIntegerAggregation.bigint.serializeInto"]], "serializedsize() (bigintegeraggregation.bigint method)": [[5, "BigIntegerAggregation.bigint.serializedSize"]], "uintbuffersize (bigintegeraggregation.srcaggregatorbigint attribute)": [[5, "BigIntegerAggregation.SrcAggregatorBigint.uintBufferSize"]], "commprimitives (module)": [[6, "module-CommPrimitives"]], "getaddr() (in module commprimitives)": [[6, "CommPrimitives.getAddr"]], "commandmap (module)": [[7, "module-CommandMap"]], "akmsgsign() (in module commandmap)": [[7, "CommandMap.akMsgSign"]], "commandmap (in module commandmap)": [[7, "CommandMap.commandMap"]], "dumpcommandmap() (in module commandmap)": [[7, "CommandMap.dumpCommandMap"]], "executecommand() (in module commandmap)": [[7, "CommandMap.executeCommand"]], "modulemap (in module commandmap)": [[7, "CommandMap.moduleMap"]], "registerfunction() (in module commandmap)": [[7, "CommandMap.registerFunction"]], "usedmodules (in module commandmap)": [[7, "CommandMap.usedModules"]], "writeusedmodules() (in module commandmap)": [[7, "CommandMap.writeUsedModules"]], "writeusedmodulesjson() (in module commandmap)": [[7, "CommandMap.writeUsedModulesJson"]], "curlinfo_response_code (in module externalintegration)": [[8, "ExternalIntegration.CURLINFO_RESPONSE_CODE"]], "curlopt_cainfo (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_CAINFO"]], "curlopt_capath (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_CAPATH"]], "curlopt_customrequest (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_CUSTOMREQUEST"]], "curlopt_failonerror (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_FAILONERROR"]], "curlopt_httpheader (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_HTTPHEADER"]], "curlopt_keypasswd (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_KEYPASSWD"]], "curlopt_password (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_PASSWORD"]], "curlopt_postfields (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_POSTFIELDS"]], "curlopt_sslcert (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_SSLCERT"]], "curlopt_sslcerttype (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_SSLCERTTYPE"]], "curlopt_sslkey (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_SSLKEY"]], "curlopt_ssl_verifypeer (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_SSL_VERIFYPEER"]], "curlopt_url (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_URL"]], "curlopt_username (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_USERNAME"]], "curlopt_use_ssl (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_USE_SSL"]], "curlopt_verbose (in module externalintegration)": [[8, "ExternalIntegration.CURLOPT_VERBOSE"]], "channel (class in externalintegration)": [[8, "ExternalIntegration.Channel"]], "channeltype (enum in externalintegration)": [[8, "ExternalIntegration.ChannelType"]], "externalintegration (module)": [[8, "module-ExternalIntegration"]], "filechannel (class in externalintegration)": [[8, "ExternalIntegration.FileChannel"]], "httpchannel (class in externalintegration)": [[8, "ExternalIntegration.HttpChannel"]], "httprequestformat (enum in externalintegration)": [[8, "ExternalIntegration.HttpRequestFormat"]], "httprequesttype (enum in externalintegration)": [[8, "ExternalIntegration.HttpRequestType"]], "httpschannel (class in externalintegration)": [[8, "ExternalIntegration.HttpsChannel"]], "serviceendpoint (enum in externalintegration)": [[8, "ExternalIntegration.ServiceEndpoint"]], "systemtype (enum in externalintegration)": [[8, "ExternalIntegration.SystemType"]], "append (externalintegration.filechannel attribute)": [[8, "ExternalIntegration.FileChannel.append"]], "cacert (externalintegration.httpschannel attribute)": [[8, "ExternalIntegration.HttpsChannel.caCert"]], "configurechannel() (externalintegration.httpchannel method)": [[8, "ExternalIntegration.HttpChannel.configureChannel"]], "configurechannel() (externalintegration.httpschannel method)": [[8, "ExternalIntegration.HttpsChannel.configureChannel"]], "deregisterfromexternalsystem() (in module externalintegration)": [[8, "ExternalIntegration.deregisterFromExternalSystem"]], "deregisterfromkubernetes() (in module externalintegration)": [[8, "ExternalIntegration.deregisterFromKubernetes"]], "eilogger (in module externalintegration)": [[8, "ExternalIntegration.eiLogger"]], "generateheader() (externalintegration.httpchannel method)": [[8, "ExternalIntegration.HttpChannel.generateHeader"]], "generateheader() (externalintegration.httpschannel method)": [[8, "ExternalIntegration.HttpsChannel.generateHeader"]], "getconnecthostip() (in module externalintegration)": [[8, "ExternalIntegration.getConnectHostIp"]], "getkubernetesderegisterparameters() (in module externalintegration)": [[8, "ExternalIntegration.getKubernetesDeregisterParameters"]], "getkubernetesregistrationparameters() (in module externalintegration)": [[8, "ExternalIntegration.getKubernetesRegistrationParameters"]], "init() (externalintegration.filechannel method)": [[8, "ExternalIntegration.FileChannel.init"]], "init() (externalintegration.httpchannel method)": [[8, "ExternalIntegration.HttpChannel.init"]], "init() (externalintegration.httpschannel method)": [[8, "ExternalIntegration.HttpsChannel.init"]], "path (externalintegration.filechannel attribute)": [[8, "ExternalIntegration.FileChannel.path"]], "registerwithexternalsystem() (in module externalintegration)": [[8, "ExternalIntegration.registerWithExternalSystem"]], "registerwithkubernetes() (in module externalintegration)": [[8, "ExternalIntegration.registerWithKubernetes"]], "requestformat (externalintegration.httpchannel attribute)": [[8, "ExternalIntegration.HttpChannel.requestFormat"]], "requesttype (externalintegration.httpchannel attribute)": [[8, "ExternalIntegration.HttpChannel.requestType"]], "token (externalintegration.httpschannel attribute)": [[8, "ExternalIntegration.HttpsChannel.token"]], "url (externalintegration.httpchannel attribute)": [[8, "ExternalIntegration.HttpChannel.url"]], "write() (externalintegration.channel method)": [[8, "ExternalIntegration.Channel.write"]], "write() (externalintegration.filechannel method)": [[8, "ExternalIntegration.FileChannel.write"]], "write() (externalintegration.httpchannel method)": [[8, "ExternalIntegration.HttpChannel.write"]], "fileio (module)": [[9, "module-FileIO"]], "filetype (enum in fileio)": [[9, "FileIO.FileType"]], "magic_arrow (in module fileio)": [[9, "FileIO.MAGIC_ARROW"]], "magic_csv (in module fileio)": [[9, "FileIO.MAGIC_CSV"]], "magic_hdf5 (in module fileio)": [[9, "FileIO.MAGIC_HDF5"]], "magic_parquet (in module fileio)": [[9, "FileIO.MAGIC_PARQUET"]], "appendfile() (in module fileio)": [[9, "FileIO.appendFile"]], "delimitedfiletomap() (in module fileio)": [[9, "FileIO.delimitedFileToMap"]], "domain_intersection() (in module fileio)": [[9, "FileIO.domain_intersection"]], "ensureclose() (in module fileio)": [[9, "FileIO.ensureClose"]], "fiologger (in module fileio)": [[9, "FileIO.fioLogger"]], "generatefilename() (in module fileio)": [[9, "FileIO.generateFilename"]], "generatefilenames() (in module fileio)": [[9, "FileIO.generateFilenames"]], "getfilemetadata() (in module fileio)": [[9, "FileIO.getFileMetadata"]], "getfiletype() (in module fileio)": [[9, "FileIO.getFileType"]], "getfiletypebymagic() (in module fileio)": [[9, "FileIO.getFileTypeByMagic"]], "getfiletypemsg() (in module fileio)": [[9, "FileIO.getFileTypeMsg"]], "getfirsteightbytesfromfile() (in module fileio)": [[9, "FileIO.getFirstEightBytesFromFile"]], "getlinefromfile() (in module fileio)": [[9, "FileIO.getLineFromFile"]], "getmatchingfilenames() (in module fileio)": [[9, "FileIO.getMatchingFilenames"]], "globexpansionmsg() (in module fileio)": [[9, "FileIO.globExpansionMsg"]], "initdirectory() (in module fileio)": [[9, "FileIO.initDirectory"]], "isglobpattern() (in module fileio)": [[9, "FileIO.isGlobPattern"]], "lsanymsg() (in module fileio)": [[9, "FileIO.lsAnyMsg"]], "writelinestofile() (in module fileio)": [[9, "FileIO.writeLinesToFile"]], "writetofile() (in module fileio)": [[9, "FileIO.writeToFile"]], "gensymio (module)": [[10, "module-GenSymIO"]], "null_strings_value (in module gensymio)": [[10, "GenSymIO.NULL_STRINGS_VALUE"]], "array() (in module gensymio)": [[10, "GenSymIO.array"]], "arraysegstring() (in module gensymio)": [[10, "GenSymIO.arraySegString"]], "buildreadallmsgjson() (in module gensymio)": [[10, "GenSymIO.buildReadAllMsgJson"]], "checkcast() (in module gensymio)": [[10, "GenSymIO.checkCast"]], "gslogger (in module gensymio)": [[10, "GenSymIO.gsLogger"]], "jsontomap() (in module gensymio)": [[10, "GenSymIO.jsonToMap"]], "makearrayfrombytes() (in module gensymio)": [[10, "GenSymIO.makeArrayFromBytes"]], "segmentedcalcoffsets() (in module gensymio)": [[10, "GenSymIO.segmentedCalcOffsets"]], "tondarray() (in module gensymio)": [[10, "GenSymIO.tondarray"]], "ioutils (module)": [[11, "module-IOUtils"]], "formatjson() (in module ioutils)": [[11, "IOUtils.formatJson"]], "jsontoarray() (in module ioutils)": [[11, "IOUtils.jsonToArray"]], "parsejson() (in module ioutils)": [[11, "IOUtils.parseJson"]], "in1d (module)": [[12, "module-In1d"]], "in1d() (in module in1d)": [[12, "In1d.in1d"]], "in1dar2perlocassoc() (in module in1d)": [[12, "In1d.in1dAr2PerLocAssoc"]], "in1dsort() (in module in1d)": [[12, "In1d.in1dSort"]], "consoleoutputhandler (class in logging)": [[13, "Logging.ConsoleOutputHandler"]], "fileoutputhandler (class in logging)": [[13, "Logging.FileOutputHandler"]], "logchannel (enum in logging)": [[13, "Logging.LogChannel"]], "loglevel (enum in logging)": [[13, "Logging.LogLevel"]], "logger (class in logging)": [[13, "Logging.Logger"]], "logging (module)": [[13, "module-Logging"]], "outputhandler (class in logging)": [[13, "Logging.OutputHandler"]], "critical() (logging.logger method)": [[13, "Logging.Logger.critical"]], "criticallevels (logging.logger attribute)": [[13, "Logging.Logger.criticalLevels"]], "debug() (logging.logger method)": [[13, "Logging.Logger.debug"]], "error() (logging.logger method)": [[13, "Logging.Logger.error"]], "errorlevels (logging.logger attribute)": [[13, "Logging.Logger.errorLevels"]], "filepath (logging.fileoutputhandler attribute)": [[13, "Logging.FileOutputHandler.filePath"]], "generatedatetimestring() (logging.logger method)": [[13, "Logging.Logger.generateDateTimeString"]], "generateerrormsg() (logging.logger method)": [[13, "Logging.Logger.generateErrorMsg"]], "generatelogmessage() (logging.logger method)": [[13, "Logging.Logger.generateLogMessage"]], "getoutputhandler() (in module logging)": [[13, "Logging.getOutputHandler"]], "info() (logging.logger method)": [[13, "Logging.Logger.info"]], "infolevels (logging.logger attribute)": [[13, "Logging.Logger.infoLevels"]], "init() (logging.fileoutputhandler method)": [[13, "Logging.FileOutputHandler.init"]], "init() (logging.logger method)": [[13, "Logging.Logger.init"]], "level (logging.logger attribute)": [[13, "Logging.Logger.level"]], "outputhandler (logging.logger attribute)": [[13, "Logging.Logger.outputHandler"]], "printdate (logging.logger attribute)": [[13, "Logging.Logger.printDate"]], "warn() (logging.logger method)": [[13, "Logging.Logger.warn"]], "warnlevels (logging.logger attribute)": [[13, "Logging.Logger.warnLevels"]], "write() (logging.consoleoutputhandler method)": [[13, "Logging.ConsoleOutputHandler.write"]], "write() (logging.fileoutputhandler method)": [[13, "Logging.FileOutputHandler.write"]], "write() (logging.outputhandler method)": [[13, "Logging.OutputHandler.write"]], "writetofile() (logging.fileoutputhandler method)": [[13, "Logging.FileOutputHandler.writeToFile"]], "localememorystatus (record in memorymgmt)": [[14, "MemoryMgmt.LocaleMemoryStatus"]], "memmgmttype (enum in memorymgmt)": [[14, "MemoryMgmt.MemMgmtType"]], "memorymgmt (module)": [[14, "module-MemoryMgmt"]], "arkouda_mem_alloc (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.arkouda_mem_alloc"]], "avail_mem (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.avail_mem"]], "availablememorypct (in module memorymgmt)": [[14, "MemoryMgmt.availableMemoryPct"]], "getarkoudamemalloc() (in module memorymgmt)": [[14, "MemoryMgmt.getArkoudaMemAlloc"]], "getarkoudapid() (in module memorymgmt)": [[14, "MemoryMgmt.getArkoudaPid"]], "getavailmemory() (in module memorymgmt)": [[14, "MemoryMgmt.getAvailMemory"]], "getlocalememorystatuses() (in module memorymgmt)": [[14, "MemoryMgmt.getLocaleMemoryStatuses"]], "gettotalmemory() (in module memorymgmt)": [[14, "MemoryMgmt.getTotalMemory"]], "ismemavailable() (in module memorymgmt)": [[14, "MemoryMgmt.isMemAvailable"]], "issupportedos() (in module memorymgmt)": [[14, "MemoryMgmt.isSupportedOS"]], "localememavailable() (in module memorymgmt)": [[14, "MemoryMgmt.localeMemAvailable"]], "locale_hostname (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.locale_hostname"]], "locale_id (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.locale_id"]], "memmgmttype (in module memorymgmt)": [[14, "MemoryMgmt.memMgmtType"]], "mem_used (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.mem_used"]], "mmlogger (in module memorymgmt)": [[14, "MemoryMgmt.mmLogger"]], "pct_avail_mem (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.pct_avail_mem"]], "total_mem (memorymgmt.localememorystatus attribute)": [[14, "MemoryMgmt.LocaleMemoryStatus.total_mem"]], "message (module)": [[15, "module-Message"]], "messageargs (class in message)": [[15, "Message.MessageArgs"]], "msgformat (enum in message)": [[15, "Message.MsgFormat"]], "msgtuple (record in message)": [[15, "Message.MsgTuple"]], "msgtype (enum in message)": [[15, "Message.MsgType"]], "parameterobj (record in message)": [[15, "Message.ParameterObj"]], "requestmsg (record in message)": [[15, "Message.RequestMsg"]], "addpayload() (message.messageargs method)": [[15, "Message.MessageArgs.addPayload"]], "args (message.requestmsg attribute)": [[15, "Message.RequestMsg.args"]], "cmd (message.requestmsg attribute)": [[15, "Message.RequestMsg.cmd"]], "contains() (message.messageargs method)": [[15, "Message.MessageArgs.contains"]], "deserialize() (in module message)": [[15, "Message.deserialize"]], "dtype (message.parameterobj attribute)": [[15, "Message.ParameterObj.dtype"]], "error() (message.msgtuple method)": [[15, "Message.MsgTuple.error"]], "format (message.requestmsg attribute)": [[15, "Message.RequestMsg.format"]], "fromresponses() (message.msgtuple method)": [[15, "Message.MsgTuple.fromResponses"]], "fromscalar() (message.msgtuple method)": [[15, "Message.MsgTuple.fromScalar"]], "get() (message.messageargs method)": [[15, "Message.MessageArgs.get"]], "getbigintvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getBigIntValue"]], "getboolvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getBoolValue"]], "getdtype() (message.parameterobj method)": [[15, "Message.ParameterObj.getDType"]], "getintvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getIntValue"]], "getlist() (message.parameterobj method)": [[15, "Message.ParameterObj.getList"]], "getpositiveintvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getPositiveIntValue"]], "getrealvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getRealValue"]], "getscalarvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getScalarValue"]], "gettuple() (message.parameterobj method)": [[15, "Message.ParameterObj.getTuple"]], "getuint8value() (message.parameterobj method)": [[15, "Message.ParameterObj.getUInt8Value"]], "getuintvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getUIntValue"]], "getvalue() (message.parameterobj method)": [[15, "Message.ParameterObj.getValue"]], "getvalueof() (message.messageargs method)": [[15, "Message.MessageArgs.getValueOf"]], "init() (message.messageargs method)": [[15, "Message.MessageArgs.init"]], "init() (message.msgtuple method)": [[15, "Message.MsgTuple.init"]], "init() (message.parameterobj method)": [[15, "Message.ParameterObj.init"]], "key (message.parameterobj attribute)": [[15, "Message.ParameterObj.key"]], "msg (message.msgtuple attribute)": [[15, "Message.MsgTuple.msg"]], "msgformat (message.msgtuple attribute)": [[15, "Message.MsgTuple.msgFormat"]], "msgtype (message.msgtuple attribute)": [[15, "Message.MsgTuple.msgType"]], "newsymbol() (message.msgtuple method)": [[15, "Message.MsgTuple.newSymbol"]], "param_list (message.messageargs attribute)": [[15, "Message.MessageArgs.param_list"]], "parsemessageargs() (in module message)": [[15, "Message.parseMessageArgs"]], "parseparameter() (in module message)": [[15, "Message.parseParameter"]], "payload (message.messageargs attribute)": [[15, "Message.MessageArgs.payload"]], "payload (message.msgtuple attribute)": [[15, "Message.MsgTuple.payload"]], "payload() (message.msgtuple method)": [[15, "Message.MsgTuple.payload"]], "serialize() (message.messageargs method)": [[15, "Message.MessageArgs.serialize"]], "serialize() (message.msgtuple method)": [[15, "Message.MsgTuple.serialize"]], "serialize() (in module message)": [[15, "Message.serialize"]], "setkey() (message.parameterobj method)": [[15, "Message.ParameterObj.setKey"]], "setval() (message.parameterobj method)": [[15, "Message.ParameterObj.setVal"]], "size (message.messageargs attribute)": [[15, "Message.MessageArgs.size"]], "size (message.requestmsg attribute)": [[15, "Message.RequestMsg.size"]], "success() (message.msgtuple method)": [[15, "Message.MsgTuple.success"]], "these() (message.messageargs iterator)": [[15, "Message.MessageArgs.these"]], "this() (message.messageargs method)": [[15, "Message.MessageArgs.this"]], "toscalar() (message.parameterobj method)": [[15, "Message.ParameterObj.toScalar"]], "toscalararray() (message.parameterobj method)": [[15, "Message.ParameterObj.toScalarArray"]], "toscalarlist() (message.parameterobj method)": [[15, "Message.ParameterObj.toScalarList"]], "toscalartuple() (message.parameterobj method)": [[15, "Message.ParameterObj.toScalarTuple"]], "token (message.requestmsg attribute)": [[15, "Message.RequestMsg.token"]], "trygetscalar() (message.parameterobj method)": [[15, "Message.ParameterObj.tryGetScalar"]], "user (message.msgtuple attribute)": [[15, "Message.MsgTuple.user"]], "user (message.requestmsg attribute)": [[15, "Message.RequestMsg.user"]], "val (message.parameterobj attribute)": [[15, "Message.ParameterObj.val"]], "arraymetric (class in metricsmsg)": [[16, "MetricsMsg.ArrayMetric"]], "averagemeasurementtable (class in metricsmsg)": [[16, "MetricsMsg.AverageMeasurementTable"]], "avgmetricvalue (class in metricsmsg)": [[16, "MetricsMsg.AvgMetricValue"]], "countertable (class in metricsmsg)": [[16, "MetricsMsg.CounterTable"]], "localeinfo (class in metricsmsg)": [[16, "MetricsMsg.LocaleInfo"]], "localemetric (class in metricsmsg)": [[16, "MetricsMsg.LocaleMetric"]], "measurementtable (class in metricsmsg)": [[16, "MetricsMsg.MeasurementTable"]], "metric (class in metricsmsg)": [[16, "MetricsMsg.Metric"]], "metriccategory (enum in metricsmsg)": [[16, "MetricsMsg.MetricCategory"]], "metricdatatype (enum in metricsmsg)": [[16, "MetricsMsg.MetricDataType"]], "metricscope (enum in metricsmsg)": [[16, "MetricsMsg.MetricScope"]], "metricvalue (class in metricsmsg)": [[16, "MetricsMsg.MetricValue"]], "metricsmsg (module)": [[16, "module-MetricsMsg"]], "serverinfo (class in metricsmsg)": [[16, "MetricsMsg.ServerInfo"]], "user (record in metricsmsg)": [[16, "MetricsMsg.User"]], "usermetric (class in metricsmsg)": [[16, "MetricsMsg.UserMetric"]], "usermetrics (class in metricsmsg)": [[16, "MetricsMsg.UserMetrics"]], "users (class in metricsmsg)": [[16, "MetricsMsg.Users"]], "add() (metricsmsg.averagemeasurementtable method)": [[16, "MetricsMsg.AverageMeasurementTable.add"]], "add() (metricsmsg.measurementtable method)": [[16, "MetricsMsg.MeasurementTable.add"]], "avgresponsetimemetrics (in module metricsmsg)": [[16, "MetricsMsg.avgResponseTimeMetrics"]], "category (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.category"]], "cmd (metricsmsg.arraymetric attribute)": [[16, "MetricsMsg.ArrayMetric.cmd"]], "counts (metricsmsg.countertable attribute)": [[16, "MetricsMsg.CounterTable.counts"]], "dtype (metricsmsg.arraymetric attribute)": [[16, "MetricsMsg.ArrayMetric.dType"]], "datatype (metricsmsg.metricvalue attribute)": [[16, "MetricsMsg.MetricValue.dataType"]], "decrement() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.decrement"]], "errormetrics (in module metricsmsg)": [[16, "MetricsMsg.errorMetrics"]], "exportallmetrics() (in module metricsmsg)": [[16, "MetricsMsg.exportAllMetrics"]], "get() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.get"]], "get() (metricsmsg.measurementtable method)": [[16, "MetricsMsg.MeasurementTable.get"]], "getalluserrequestmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getAllUserRequestMetrics"]], "getavgresponsetimemetrics() (in module metricsmsg)": [[16, "MetricsMsg.getAvgResponseTimeMetrics"]], "getmaxlocalememory() (in module metricsmsg)": [[16, "MetricsMsg.getMaxLocaleMemory"]], "getmeasurementtotal() (metricsmsg.averagemeasurementtable method)": [[16, "MetricsMsg.AverageMeasurementTable.getMeasurementTotal"]], "getnumerrormetrics() (in module metricsmsg)": [[16, "MetricsMsg.getNumErrorMetrics"]], "getnummeasurements() (metricsmsg.averagemeasurementtable method)": [[16, "MetricsMsg.AverageMeasurementTable.getNumMeasurements"]], "getnumrequestmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getNumRequestMetrics"]], "getperusernumrequestmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getPerUserNumRequestMetrics"]], "getperusernumrequestspercommandforallusersmetrics() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.getPerUserNumRequestsPerCommandForAllUsersMetrics"]], "getperusernumrequestspercommandmetrics() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.getPerUserNumRequestsPerCommandMetrics"]], "getresponsetimemetrics() (in module metricsmsg)": [[16, "MetricsMsg.getResponseTimeMetrics"]], "getserverinfo() (in module metricsmsg)": [[16, "MetricsMsg.getServerInfo"]], "getservermetrics() (in module metricsmsg)": [[16, "MetricsMsg.getServerMetrics"]], "getsystemmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getSystemMetrics"]], "gettotalmemoryusedmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getTotalMemoryUsedMetrics"]], "gettotalresponsetimemetrics() (in module metricsmsg)": [[16, "MetricsMsg.getTotalResponseTimeMetrics"]], "getuser() (metricsmsg.users method)": [[16, "MetricsMsg.Users.getUser"]], "getusermetrics() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.getUserMetrics"]], "getusernames() (metricsmsg.users method)": [[16, "MetricsMsg.Users.getUserNames"]], "getuserrequestmetrics() (in module metricsmsg)": [[16, "MetricsMsg.getUserRequestMetrics"]], "getusers() (metricsmsg.users method)": [[16, "MetricsMsg.Users.getUsers"]], "hostname (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.hostname"]], "hostname (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.hostname"]], "id (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.id"]], "increment() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.increment"]], "incrementnumrequestspercommand() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.incrementNumRequestsPerCommand"]], "incrementperuserrequestmetrics() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.incrementPerUserRequestMetrics"]], "incrementtotalnumrequests() (metricsmsg.usermetrics method)": [[16, "MetricsMsg.UserMetrics.incrementTotalNumRequests"]], "init() (metricsmsg.arraymetric method)": [[16, "MetricsMsg.ArrayMetric.init"]], "init() (metricsmsg.localemetric method)": [[16, "MetricsMsg.LocaleMetric.init"]], "init() (metricsmsg.metric method)": [[16, "MetricsMsg.Metric.init"]], "init() (metricsmsg.metricvalue method)": [[16, "MetricsMsg.MetricValue.init"]], "init() (metricsmsg.serverinfo method)": [[16, "MetricsMsg.ServerInfo.init"]], "init() (metricsmsg.usermetric method)": [[16, "MetricsMsg.UserMetric.init"]], "inttotal (metricsmsg.avgmetricvalue attribute)": [[16, "MetricsMsg.AvgMetricValue.intTotal"]], "intvalue (metricsmsg.metricvalue attribute)": [[16, "MetricsMsg.MetricValue.intValue"]], "items() (metricsmsg.countertable iterator)": [[16, "MetricsMsg.CounterTable.items"]], "items() (metricsmsg.measurementtable iterator)": [[16, "MetricsMsg.MeasurementTable.items"]], "locale_hostname (metricsmsg.localemetric attribute)": [[16, "MetricsMsg.LocaleMetric.locale_hostname"]], "locale_name (metricsmsg.localemetric attribute)": [[16, "MetricsMsg.LocaleMetric.locale_name"]], "locale_num (metricsmsg.localemetric attribute)": [[16, "MetricsMsg.LocaleMetric.locale_num"]], "locales (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.locales"]], "mlogger (in module metricsmsg)": [[16, "MetricsMsg.mLogger"]], "max_number_of_tasks (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.max_number_of_tasks"]], "measurementtotals (metricsmsg.averagemeasurementtable attribute)": [[16, "MetricsMsg.AverageMeasurementTable.measurementTotals"]], "measurements (metricsmsg.measurementtable attribute)": [[16, "MetricsMsg.MeasurementTable.measurements"]], "metricscope (in module metricsmsg)": [[16, "MetricsMsg.metricScope"]], "metrics (metricsmsg.usermetrics attribute)": [[16, "MetricsMsg.UserMetrics.metrics"]], "metricsmsg() (in module metricsmsg)": [[16, "MetricsMsg.metricsMsg"]], "name (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.name"]], "name (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.name"]], "name (metricsmsg.user attribute)": [[16, "MetricsMsg.User.name"]], "nummeasurements (metricsmsg.averagemeasurementtable attribute)": [[16, "MetricsMsg.AverageMeasurementTable.numMeasurements"]], "numvalues (metricsmsg.avgmetricvalue attribute)": [[16, "MetricsMsg.AvgMetricValue.numValues"]], "number_of_locales (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.number_of_locales"]], "number_of_processing_units (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.number_of_processing_units"]], "physical_memory (metricsmsg.localeinfo attribute)": [[16, "MetricsMsg.LocaleInfo.physical_memory"]], "realtotal (metricsmsg.avgmetricvalue attribute)": [[16, "MetricsMsg.AvgMetricValue.realTotal"]], "realvalue (metricsmsg.metricvalue attribute)": [[16, "MetricsMsg.MetricValue.realValue"]], "requestmetrics (in module metricsmsg)": [[16, "MetricsMsg.requestMetrics"]], "responsetimemetrics (in module metricsmsg)": [[16, "MetricsMsg.responseTimeMetrics"]], "scope (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.scope"]], "servermetrics (in module metricsmsg)": [[16, "MetricsMsg.serverMetrics"]], "server_port (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.server_port"]], "set() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.set"]], "set() (metricsmsg.measurementtable method)": [[16, "MetricsMsg.MeasurementTable.set"]], "size (metricsmsg.arraymetric attribute)": [[16, "MetricsMsg.ArrayMetric.size"]], "size() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.size"]], "size() (metricsmsg.measurementtable method)": [[16, "MetricsMsg.MeasurementTable.size"]], "timestamp (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.timestamp"]], "total() (metricsmsg.countertable method)": [[16, "MetricsMsg.CounterTable.total"]], "totalmemoryusedmetrics (in module metricsmsg)": [[16, "MetricsMsg.totalMemoryUsedMetrics"]], "totalresponsetimemetrics (in module metricsmsg)": [[16, "MetricsMsg.totalResponseTimeMetrics"]], "update() (metricsmsg.avgmetricvalue method)": [[16, "MetricsMsg.AvgMetricValue.update"]], "update() (metricsmsg.metricvalue method)": [[16, "MetricsMsg.MetricValue.update"]], "user (metricsmsg.usermetric attribute)": [[16, "MetricsMsg.UserMetric.user"]], "usermetrics (in module metricsmsg)": [[16, "MetricsMsg.userMetrics"]], "users (metricsmsg.usermetrics attribute)": [[16, "MetricsMsg.UserMetrics.users"]], "users (metricsmsg.users attribute)": [[16, "MetricsMsg.Users.users"]], "users (in module metricsmsg)": [[16, "MetricsMsg.users"]], "value (metricsmsg.metric attribute)": [[16, "MetricsMsg.Metric.value"]], "version (metricsmsg.serverinfo attribute)": [[16, "MetricsMsg.ServerInfo.version"]], "msgprocessing (module)": [[17, "module-MsgProcessing"]], "chunkinfoasarray() (in module msgprocessing)": [[17, "MsgProcessing.chunkInfoAsArray"]], "chunkinfoasstring() (in module msgprocessing)": [[17, "MsgProcessing.chunkInfoAsString"]], "clearmsg() (in module msgprocessing)": [[17, "MsgProcessing.clearMsg"]], "create() (in module msgprocessing)": [[17, "MsgProcessing.create"]], "createscalararray() (in module msgprocessing)": [[17, "MsgProcessing.createScalarArray"]], "deletemsg() (in module msgprocessing)": [[17, "MsgProcessing.deleteMsg"]], "getcommandmapmsg() (in module msgprocessing)": [[17, "MsgProcessing.getCommandMapMsg"]], "getconfigmsg() (in module msgprocessing)": [[17, "MsgProcessing.getconfigMsg"]], "getmemavailmsg() (in module msgprocessing)": [[17, "MsgProcessing.getmemavailMsg"]], "getmemusedmsg() (in module msgprocessing)": [[17, "MsgProcessing.getmemusedMsg"]], "infomsg() (in module msgprocessing)": [[17, "MsgProcessing.infoMsg"]], "mplogger (in module msgprocessing)": [[17, "MsgProcessing.mpLogger"]], "reprmsg() (in module msgprocessing)": [[17, "MsgProcessing.reprMsg"]], "setmsg() (in module msgprocessing)": [[17, "MsgProcessing.setMsg"]], "strmsg() (in module msgprocessing)": [[17, "MsgProcessing.strMsg"]], "abstractregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.AbstractRegEntry"]], "arrayregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.ArrayRegEntry"]], "bitvectorregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.BitVectorRegEntry"]], "categoricalregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.CategoricalRegEntry"]], "dataframeregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.DataFrameRegEntry"]], "genregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.GenRegEntry"]], "groupbyregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.GroupByRegEntry"]], "indexregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.IndexRegEntry"]], "multityperegentry (module)": [[18, "module-MultiTypeRegEntry"]], "registryentrytype (enum in multityperegentry)": [[18, "MultiTypeRegEntry.RegistryEntryType"]], "segarrayregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.SegArrayRegEntry"]], "seriesregentry (class in multityperegentry)": [[18, "MultiTypeRegEntry.SeriesRegEntry"]], "array (multityperegentry.arrayregentry attribute)": [[18, "MultiTypeRegEntry.ArrayRegEntry.array"]], "array (multityperegentry.bitvectorregentry attribute)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.array"]], "asmap() (multityperegentry.arrayregentry method)": [[18, "MultiTypeRegEntry.ArrayRegEntry.asMap"]], "asmap() (multityperegentry.bitvectorregentry method)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.asMap"]], "asmap() (multityperegentry.categoricalregentry method)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.asMap"]], "asmap() (multityperegentry.dataframeregentry method)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.asMap"]], "asmap() (multityperegentry.groupbyregentry method)": [[18, "MultiTypeRegEntry.GroupByRegEntry.asMap"]], "asmap() (multityperegentry.indexregentry method)": [[18, "MultiTypeRegEntry.IndexRegEntry.asMap"]], "asmap() (multityperegentry.segarrayregentry method)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.asMap"]], "asmap() (multityperegentry.seriesregentry method)": [[18, "MultiTypeRegEntry.SeriesRegEntry.asMap"]], "assignabletypes (multityperegentry.abstractregentry attribute)": [[18, "MultiTypeRegEntry.AbstractRegEntry.assignableTypes"]], "categories (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.categories"]], "codes (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.codes"]], "column_names (multityperegentry.dataframeregentry attribute)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.column_names"]], "columns (multityperegentry.dataframeregentry attribute)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.columns"]], "entrytype (multityperegentry.abstractregentry attribute)": [[18, "MultiTypeRegEntry.AbstractRegEntry.entryType"]], "idx (multityperegentry.dataframeregentry attribute)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.idx"]], "idx (multityperegentry.indexregentry attribute)": [[18, "MultiTypeRegEntry.IndexRegEntry.idx"]], "idx (multityperegentry.seriesregentry attribute)": [[18, "MultiTypeRegEntry.SeriesRegEntry.idx"]], "init() (multityperegentry.abstractregentry method)": [[18, "MultiTypeRegEntry.AbstractRegEntry.init"]], "init() (multityperegentry.arrayregentry method)": [[18, "MultiTypeRegEntry.ArrayRegEntry.init"]], "init() (multityperegentry.bitvectorregentry method)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.init"]], "init() (multityperegentry.categoricalregentry method)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.init"]], "init() (multityperegentry.dataframeregentry method)": [[18, "MultiTypeRegEntry.DataFrameRegEntry.init"]], "init() (multityperegentry.genregentry method)": [[18, "MultiTypeRegEntry.GenRegEntry.init"]], "init() (multityperegentry.groupbyregentry method)": [[18, "MultiTypeRegEntry.GroupByRegEntry.init"]], "init() (multityperegentry.indexregentry method)": [[18, "MultiTypeRegEntry.IndexRegEntry.init"]], "init() (multityperegentry.segarrayregentry method)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.init"]], "init() (multityperegentry.seriesregentry method)": [[18, "MultiTypeRegEntry.SeriesRegEntry.init"]], "keys (multityperegentry.groupbyregentry attribute)": [[18, "MultiTypeRegEntry.GroupByRegEntry.keys"]], "lengths (multityperegentry.segarrayregentry attribute)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.lengths"]], "nacode (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.naCode"]], "name (multityperegentry.abstractregentry attribute)": [[18, "MultiTypeRegEntry.AbstractRegEntry.name"]], "objtype (multityperegentry.genregentry attribute)": [[18, "MultiTypeRegEntry.GenRegEntry.objType"]], "permutation (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.permutation"]], "permutation (multityperegentry.groupbyregentry attribute)": [[18, "MultiTypeRegEntry.GroupByRegEntry.permutation"]], "reglogger (in module multityperegentry)": [[18, "MultiTypeRegEntry.regLogger"]], "reverse (multityperegentry.bitvectorregentry attribute)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.reverse"]], "segments (multityperegentry.categoricalregentry attribute)": [[18, "MultiTypeRegEntry.CategoricalRegEntry.segments"]], "segments (multityperegentry.groupbyregentry attribute)": [[18, "MultiTypeRegEntry.GroupByRegEntry.segments"]], "segments (multityperegentry.segarrayregentry attribute)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.segments"]], "setname() (multityperegentry.abstractregentry method)": [[18, "MultiTypeRegEntry.AbstractRegEntry.setName"]], "todataframeregentry() (multityperegentry.genregentry method)": [[18, "MultiTypeRegEntry.GenRegEntry.toDataFrameRegEntry"]], "uki (multityperegentry.groupbyregentry attribute)": [[18, "MultiTypeRegEntry.GroupByRegEntry.uki"]], "values (multityperegentry.segarrayregentry attribute)": [[18, "MultiTypeRegEntry.SegArrayRegEntry.values"]], "values (multityperegentry.seriesregentry attribute)": [[18, "MultiTypeRegEntry.SeriesRegEntry.values"]], "width (multityperegentry.bitvectorregentry attribute)": [[18, "MultiTypeRegEntry.BitVectorRegEntry.width"]], "abstractsymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.AbstractSymEntry"]], "compositesymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.CompositeSymEntry"]], "gensparsesymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.GenSparseSymEntry"]], "gensymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.GenSymEntry"]], "generatorsymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.GeneratorSymEntry"]], "multitypesymentry (module)": [[19, "module-MultiTypeSymEntry"]], "segstringsymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.SegStringSymEntry"]], "sparsesymentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.SparseSymEntry"]], "symentry (class in multitypesymentry)": [[19, "MultiTypeSymEntry.SymEntry"]], "symbolentrytype (enum in multitypesymentry)": [[19, "MultiTypeSymEntry.SymbolEntryType"]], "a (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.a"]], "a (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.a"]], "ad() (multitypesymentry.symentry method)": [[19, "MultiTypeSymEntry.SymEntry.aD"]], "assignabletypes (multitypesymentry.abstractsymentry attribute)": [[19, "MultiTypeSymEntry.AbstractSymEntry.assignableTypes"]], "attrib() (multitypesymentry.compositesymentry method)": [[19, "MultiTypeSymEntry.CompositeSymEntry.attrib"]], "attrib() (multitypesymentry.gensparsesymentry method)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.attrib"]], "attrib() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.attrib"]], "bytesentry (multitypesymentry.segstringsymentry attribute)": [[19, "MultiTypeSymEntry.SegStringSymEntry.bytesEntry"]], "createsymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.createSymEntry"]], "createtypedsymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.createTypedSymEntry"]], "deinit() (multitypesymentry.sparsesymentry method)": [[19, "MultiTypeSymEntry.SparseSymEntry.deinit"]], "deinit() (multitypesymentry.symentry method)": [[19, "MultiTypeSymEntry.SymEntry.deinit"]], "dimensions (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.dimensions"]], "dimensions (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.dimensions"]], "dtype (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.dtype"]], "dtype (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.dtype"]], "entrytype (multitypesymentry.abstractsymentry attribute)": [[19, "MultiTypeSymEntry.AbstractSymEntry.entryType"]], "entry__str__() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.gensparsesymentry method)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.segstringsymentry method)": [[19, "MultiTypeSymEntry.SegStringSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.sparsesymentry method)": [[19, "MultiTypeSymEntry.SparseSymEntry.entry__str__"]], "entry__str__() (multitypesymentry.symentry method)": [[19, "MultiTypeSymEntry.SymEntry.entry__str__"]], "etype (multitypesymentry.generatorsymentry attribute)": [[19, "MultiTypeSymEntry.GeneratorSymEntry.etype"]], "etype (multitypesymentry.segstringsymentry attribute)": [[19, "MultiTypeSymEntry.SegStringSymEntry.etype"]], "etype (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.etype"]], "etype (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.etype"]], "genlogger (in module multitypesymentry)": [[19, "MultiTypeSymEntry.genLogger"]], "generator (multitypesymentry.generatorsymentry attribute)": [[19, "MultiTypeSymEntry.GeneratorSymEntry.generator"]], "getarrayspecfromentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.getArraySpecFromEntry"]], "getsizeestimate() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.getSizeEstimate"]], "getsizeestimate() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.getSizeEstimate"]], "getsizeestimate() (multitypesymentry.segstringsymentry method)": [[19, "MultiTypeSymEntry.SegStringSymEntry.getSizeEstimate"]], "init() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.init"]], "init() (multitypesymentry.compositesymentry method)": [[19, "MultiTypeSymEntry.CompositeSymEntry.init"]], "init() (multitypesymentry.gensparsesymentry method)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.init"]], "init() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.init"]], "init() (multitypesymentry.generatorsymentry method)": [[19, "MultiTypeSymEntry.GeneratorSymEntry.init"]], "init() (multitypesymentry.segstringsymentry method)": [[19, "MultiTypeSymEntry.SegStringSymEntry.init"]], "init() (multitypesymentry.sparsesymentry method)": [[19, "MultiTypeSymEntry.SparseSymEntry.init"]], "init() (multitypesymentry.symentry method)": [[19, "MultiTypeSymEntry.SymEntry.init"]], "isassignableto() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.isAssignableTo"]], "itemsize (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.itemsize"]], "itemsize (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.itemsize"]], "layoutstr (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.layoutStr"]], "layouttostr() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.layoutToStr"]], "matlayout (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.matLayout"]], "max_bits (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.max_bits"]], "name (multitypesymentry.abstractsymentry attribute)": [[19, "MultiTypeSymEntry.AbstractSymEntry.name"]], "ndim (multitypesymentry.compositesymentry attribute)": [[19, "MultiTypeSymEntry.CompositeSymEntry.ndim"]], "ndim (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.ndim"]], "ndim (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.ndim"]], "nnz (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.nnz"]], "offsetsentry (multitypesymentry.segstringsymentry attribute)": [[19, "MultiTypeSymEntry.SegStringSymEntry.offsetsEntry"]], "setname() (multitypesymentry.abstractsymentry method)": [[19, "MultiTypeSymEntry.AbstractSymEntry.setName"]], "shape (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.shape"]], "shape (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.shape"]], "size (multitypesymentry.compositesymentry attribute)": [[19, "MultiTypeSymEntry.CompositeSymEntry.size"]], "size (multitypesymentry.gensparsesymentry attribute)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.size"]], "size (multitypesymentry.gensymentry attribute)": [[19, "MultiTypeSymEntry.GenSymEntry.size"]], "state (multitypesymentry.generatorsymentry attribute)": [[19, "MultiTypeSymEntry.GeneratorSymEntry.state"]], "tocompositesymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toCompositeSymEntry"]], "togensparsesymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toGenSparseSymEntry"]], "togensymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toGenSymEntry"]], "togeneratorsymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toGeneratorSymEntry"]], "tosegstringsymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toSegStringSymEntry"]], "tosparsesymentry() (multitypesymentry.gensparsesymentry method)": [[19, "MultiTypeSymEntry.GenSparseSymEntry.toSparseSymEntry"]], "tosymentry() (multitypesymentry.gensymentry method)": [[19, "MultiTypeSymEntry.GenSymEntry.toSymEntry"]], "tosymentry() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.toSymEntry"]], "tupshape (multitypesymentry.sparsesymentry attribute)": [[19, "MultiTypeSymEntry.SparseSymEntry.tupShape"]], "tupshape (multitypesymentry.symentry attribute)": [[19, "MultiTypeSymEntry.SymEntry.tupShape"]], "tupshapestring() (in module multitypesymentry)": [[19, "MultiTypeSymEntry.tupShapeString"]], "multitypesymboltable (module)": [[20, "module-MultiTypeSymbolTable"]], "symtab (class in multitypesymboltable)": [[20, "MultiTypeSymbolTable.SymTab"]], "addentry() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.addEntry"]], "attrib() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.attrib"]], "checktable() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.checkTable"]], "clear() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.clear"]], "contains() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.contains"]], "datarepr() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.datarepr"]], "datastr() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.datastr"]], "deleteentry() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.deleteEntry"]], "dump() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.dump"]], "findall() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.findAll"]], "formatentry() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.formatEntry"]], "getentries() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.getEntries"]], "getgenericsparsearrayentry() (in module multitypesymboltable)": [[20, "MultiTypeSymbolTable.getGenericSparseArrayEntry"]], "getgenerictypedarrayentry() (in module multitypesymboltable)": [[20, "MultiTypeSymbolTable.getGenericTypedArrayEntry"]], "getsegstringentry() (in module multitypesymboltable)": [[20, "MultiTypeSymbolTable.getSegStringEntry"]], "info() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.info"]], "insert() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.insert"]], "lookup() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.lookup"]], "memused() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.memUsed"]], "mtlogger (in module multitypesymboltable)": [[20, "MultiTypeSymbolTable.mtLogger"]], "nextname() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.nextName"]], "nid (multitypesymboltable.symtab attribute)": [[20, "MultiTypeSymbolTable.SymTab.nid"]], "parsejson() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.parseJson"]], "pretty() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.pretty"]], "registry (multitypesymboltable.symtab attribute)": [[20, "MultiTypeSymbolTable.SymTab.registry"]], "serverid (multitypesymboltable.symtab attribute)": [[20, "MultiTypeSymbolTable.SymTab.serverid"]], "tab (multitypesymboltable.symtab attribute)": [[20, "MultiTypeSymbolTable.SymTab.tab"]], "this() (multitypesymboltable.symtab method)": [[20, "MultiTypeSymbolTable.SymTab.this"]], "dtk (enum in numpydtype)": [[21, "NumPyDType.DTK"]], "dtype (enum in numpydtype)": [[21, "NumPyDType.DType"]], "numpydtype (module)": [[21, "module-NumPyDType"]], "bool2str() (in module numpydtype)": [[21, "NumPyDType.bool2str"]], "commondtype() (in module numpydtype)": [[21, "NumPyDType.commonDType"]], "divdtype() (in module numpydtype)": [[21, "NumPyDType.divDType"]], "dtype2str() (in module numpydtype)": [[21, "NumPyDType.dtype2str"]], "dtypesize() (in module numpydtype)": [[21, "NumPyDType.dtypeSize"]], "str2dtype() (in module numpydtype)": [[21, "NumPyDType.str2dtype"]], "type2fmt() (in module numpydtype)": [[21, "NumPyDType.type2fmt"]], "type2str() (in module numpydtype)": [[21, "NumPyDType.type2str"]], "typesize() (in module numpydtype)": [[21, "NumPyDType.typeSize"]], "whichdtype() (in module numpydtype)": [[21, "NumPyDType.whichDtype"]], "keyscomparator (record in radixsortlsd)": [[22, "RadixSortLSD.KeysComparator"]], "keysrankscomparator (record in radixsortlsd)": [[22, "RadixSortLSD.KeysRanksComparator"]], "rslsd_numtasks (in module radixsortlsd)": [[22, "RadixSortLSD.RSLSD_numTasks"]], "rslsd_vv (in module radixsortlsd)": [[22, "RadixSortLSD.RSLSD_vv"]], "radixsortlsd (module)": [[22, "module-RadixSortLSD"]], "tasks (in module radixsortlsd)": [[22, "RadixSortLSD.Tasks"]], "calcblock() (in module radixsortlsd)": [[22, "RadixSortLSD.calcBlock"]], "calcglobalindex() (in module radixsortlsd)": [[22, "RadixSortLSD.calcGlobalIndex"]], "key() (radixsortlsd.keyscomparator method)": [[22, "RadixSortLSD.KeysComparator.key"]], "key() (radixsortlsd.keysrankscomparator method)": [[22, "RadixSortLSD.KeysRanksComparator.key"]], "numtasks (in module radixsortlsd)": [[22, "RadixSortLSD.numTasks"]], "radixsortlsd() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD"]], "radixsortlsd_keys() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD_keys"]], "radixsortlsd_keys_memest() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD_keys_memEst"]], "radixsortlsd_memest() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD_memEst"]], "radixsortlsd_ranks() (in module radixsortlsd)": [[22, "RadixSortLSD.radixSortLSD_ranks"]], "rslogger (in module radixsortlsd)": [[22, "RadixSortLSD.rsLogger"]], "vv (in module radixsortlsd)": [[22, "RadixSortLSD.vv"]], "regtab (class in registry)": [[23, "Registry.RegTab"]], "registry (module)": [[23, "module-Registry"]], "checkavailability() (registry.regtab method)": [[23, "Registry.RegTab.checkAvailability"]], "checktable() (registry.regtab method)": [[23, "Registry.RegTab.checkTable"]], "contains() (registry.regtab method)": [[23, "Registry.RegTab.contains"]], "list_registry() (registry.regtab method)": [[23, "Registry.RegTab.list_registry"]], "lookup() (registry.regtab method)": [[23, "Registry.RegTab.lookup"]], "reglogger (in module registry)": [[23, "Registry.regLogger"]], "register_array() (registry.regtab method)": [[23, "Registry.RegTab.register_array"]], "register_bitvector() (registry.regtab method)": [[23, "Registry.RegTab.register_bitvector"]], "register_categorical() (registry.regtab method)": [[23, "Registry.RegTab.register_categorical"]], "register_categorical_components() (registry.regtab method)": [[23, "Registry.RegTab.register_categorical_components"]], "register_dataframe() (registry.regtab method)": [[23, "Registry.RegTab.register_dataframe"]], "register_groupby() (registry.regtab method)": [[23, "Registry.RegTab.register_groupby"]], "register_index() (registry.regtab method)": [[23, "Registry.RegTab.register_index"]], "register_index_components() (registry.regtab method)": [[23, "Registry.RegTab.register_index_components"]], "register_segarray() (registry.regtab method)": [[23, "Registry.RegTab.register_segarray"]], "register_segarray_components() (registry.regtab method)": [[23, "Registry.RegTab.register_segarray_components"]], "register_series() (registry.regtab method)": [[23, "Registry.RegTab.register_series"]], "registered_entries (registry.regtab attribute)": [[23, "Registry.RegTab.registered_entries"]], "tab (registry.regtab attribute)": [[23, "Registry.RegTab.tab"]], "unregister_array() (registry.regtab method)": [[23, "Registry.RegTab.unregister_array"]], "unregister_bitvector() (registry.regtab method)": [[23, "Registry.RegTab.unregister_bitvector"]], "unregister_categorical() (registry.regtab method)": [[23, "Registry.RegTab.unregister_categorical"]], "unregister_categorical_components() (registry.regtab method)": [[23, "Registry.RegTab.unregister_categorical_components"]], "unregister_dataframe() (registry.regtab method)": [[23, "Registry.RegTab.unregister_dataframe"]], "unregister_groupby() (registry.regtab method)": [[23, "Registry.RegTab.unregister_groupby"]], "unregister_index() (registry.regtab method)": [[23, "Registry.RegTab.unregister_index"]], "unregister_index_components() (registry.regtab method)": [[23, "Registry.RegTab.unregister_index_components"]], "unregister_segarray() (registry.regtab method)": [[23, "Registry.RegTab.unregister_segarray"]], "unregister_segarray_components() (registry.regtab method)": [[23, "Registry.RegTab.unregister_segarray_components"]], "unregister_series() (registry.regtab method)": [[23, "Registry.RegTab.unregister_series"]], "security (module)": [[24, "module-Security"]], "generatetoken() (in module security)": [[24, "Security.generateToken"]], "getarkoudatoken() (in module security)": [[24, "Security.getArkoudaToken"]], "setarkoudatoken() (in module security)": [[24, "Security.setArkoudaToken"]], "segstringsort (module)": [[25, "module-SegStringSort"]], "stringintcomparator (record in segstringsort)": [[25, "SegStringSort.StringIntComparator"]], "calcblock() (in module segstringsort)": [[25, "SegStringSort.calcBlock"]], "calcglobalindex() (in module segstringsort)": [[25, "SegStringSort.calcGlobalIndex"]], "gatherlongstrings() (in module segstringsort)": [[25, "SegStringSort.gatherLongStrings"]], "getpivot() (in module segstringsort)": [[25, "SegStringSort.getPivot"]], "keypart() (segstringsort.stringintcomparator method)": [[25, "SegStringSort.StringIntComparator.keyPart"]], "radixsortlsd_raw() (in module segstringsort)": [[25, "SegStringSort.radixSortLSD_raw"]], "sslogger (in module segstringsort)": [[25, "SegStringSort.ssLogger"]], "twophasestringsort() (in module segstringsort)": [[25, "SegStringSort.twoPhaseStringSort"]], "segfunction (enum in segmentedcomputation)": [[26, "SegmentedComputation.SegFunction"]], "segmentedcomputation (module)": [[26, "module-SegmentedComputation"]], "computeonsegments() (in module segmentedcomputation)": [[26, "SegmentedComputation.computeOnSegments"]], "computesegmentownership() (in module segmentedcomputation)": [[26, "SegmentedComputation.computeSegmentOwnership"]], "!=() (in module segmentedstring)": [[27, "SegmentedString.!="]], "==() (in module segmentedstring)": [[27, "SegmentedString.=="]], "fixes (enum in segmentedstring)": [[27, "SegmentedString.Fixes"]], "null_strings_value (in module segmentedstring)": [[27, "SegmentedString.NULL_STRINGS_VALUE"]], "segstring (class in segmentedstring)": [[27, "SegmentedString.SegString"]], "segmentedstring (module)": [[27, "module-SegmentedString"]], "segmentedstringusehash (in module segmentedstring)": [[27, "SegmentedString.SegmentedStringUseHash"]], "arggroup() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.argGroup"]], "argsort() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.argsort"]], "assemblesegstringfromparts() (in module segmentedstring)": [[27, "SegmentedString.assembleSegStringFromParts"]], "bytestouintarr() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.bytesToUintArr"]], "capitalize() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.capitalize"]], "checkcompile() (in module segmentedstring)": [[27, "SegmentedString.checkCompile"]], "compare() (in module segmentedstring)": [[27, "SegmentedString.compare"]], "composite (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.composite"]], "concat() (in module segmentedstring)": [[27, "SegmentedString.concat"]], "ediff() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.ediff"]], "findallmatches() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.findAllMatches"]], "findmatchlocations() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.findMatchLocations"]], "findsubstringinbytes() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.findSubstringInBytes"]], "getfixes() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.getFixes"]], "getlengths() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.getLengths"]], "getsegstring() (in module segmentedstring)": [[27, "SegmentedString.getSegString"]], "in1d() (in module segmentedstring)": [[27, "SegmentedString.in1d"]], "init() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.init"]], "interpretasbytes() (in module segmentedstring)": [[27, "SegmentedString.interpretAsBytes"]], "interpretasstring() (in module segmentedstring)": [[27, "SegmentedString.interpretAsString"]], "isdecimal() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isDecimal"]], "islower() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isLower"]], "issorted() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isSorted"]], "istitle() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isTitle"]], "isupper() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isUpper"]], "isalnum() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isalnum"]], "isalpha() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isalpha"]], "isdigit() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isdigit"]], "isempty() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isempty"]], "isspace() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.isspace"]], "lower() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.lower"]], "memcmp() (in module segmentedstring)": [[27, "SegmentedString.memcmp"]], "nbytes (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.nBytes"]], "name (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.name"]], "offsets (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.offsets"]], "peel() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.peel"]], "peelregex() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.peelRegex"]], "segstrfull() (in module segmentedstring)": [[27, "SegmentedString.segStrFull"]], "segstrwhere() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.segStrWhere"]], "show() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.show"]], "siphash() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.siphash"]], "size (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.size"]], "sslogger (in module segmentedstring)": [[27, "SegmentedString.ssLogger"]], "stick() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.stick"]], "stringbytestouintarr() (in module segmentedstring)": [[27, "SegmentedString.stringBytesToUintArr"]], "stringcompareliteraleq() (in module segmentedstring)": [[27, "SegmentedString.stringCompareLiteralEq"]], "stringcompareliteralneq() (in module segmentedstring)": [[27, "SegmentedString.stringCompareLiteralNeq"]], "stringisalphanumeric() (in module segmentedstring)": [[27, "SegmentedString.stringIsAlphaNumeric"]], "stringisalphabetic() (in module segmentedstring)": [[27, "SegmentedString.stringIsAlphabetic"]], "stringisdecimal() (in module segmentedstring)": [[27, "SegmentedString.stringIsDecimal"]], "stringisdigit() (in module segmentedstring)": [[27, "SegmentedString.stringIsDigit"]], "stringisempty() (in module segmentedstring)": [[27, "SegmentedString.stringIsEmpty"]], "stringislower() (in module segmentedstring)": [[27, "SegmentedString.stringIsLower"]], "stringisspace() (in module segmentedstring)": [[27, "SegmentedString.stringIsSpace"]], "stringistitle() (in module segmentedstring)": [[27, "SegmentedString.stringIsTitle"]], "stringisupper() (in module segmentedstring)": [[27, "SegmentedString.stringIsUpper"]], "stringsearch() (in module segmentedstring)": [[27, "SegmentedString.stringSearch"]], "strip() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.strip"]], "sub() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.sub"]], "substringsearch() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.substringSearch"]], "this() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.this"]], "title() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.title"]], "unsafecompileregex() (in module segmentedstring)": [[27, "SegmentedString.unsafeCompileRegex"]], "upper() (segmentedstring.segstring method)": [[27, "SegmentedString.SegString.upper"]], "values (segmentedstring.segstring attribute)": [[27, "SegmentedString.SegString.values"]], "bslash (in module serverconfig)": [[28, "ServerConfig.BSLASH"]], "deployment (enum in serverconfig)": [[28, "ServerConfig.Deployment"]], "escaped_quotes (in module serverconfig)": [[28, "ServerConfig.ESCAPED_QUOTES"]], "maxarraydims (in module serverconfig)": [[28, "ServerConfig.MaxArrayDims"]], "objtype (enum in serverconfig)": [[28, "ServerConfig.ObjType"]], "q (in module serverconfig)": [[28, "ServerConfig.Q"]], "qcq (in module serverconfig)": [[28, "ServerConfig.QCQ"]], "rslsd_bitsperdigit (in module serverconfig)": [[28, "ServerConfig.RSLSD_bitsPerDigit"]], "serverconfig (module)": [[28, "module-ServerConfig"]], "serverport (in module serverconfig)": [[28, "ServerConfig.ServerPort"]], "appendtoconfigstr() (in module serverconfig)": [[28, "ServerConfig.appendToConfigStr"]], "arkoudaversion (in module serverconfig)": [[28, "ServerConfig.arkoudaVersion"]], "authenticate (in module serverconfig)": [[28, "ServerConfig.authenticate"]], "autoshutdown (in module serverconfig)": [[28, "ServerConfig.autoShutdown"]], "chplversionarkouda (in module serverconfig)": [[28, "ServerConfig.chplVersionArkouda"]], "createconfig() (in module serverconfig)": [[28, "ServerConfig.createConfig"]], "deployment (in module serverconfig)": [[28, "ServerConfig.deployment"]], "getbyteorder() (in module serverconfig)": [[28, "ServerConfig.getByteorder"]], "getchplversion() (in module serverconfig)": [[28, "ServerConfig.getChplVersion"]], "getconfig() (in module serverconfig)": [[28, "ServerConfig.getConfig"]], "getconnecthostname() (in module serverconfig)": [[28, "ServerConfig.getConnectHostname"]], "getenv() (in module serverconfig)": [[28, "ServerConfig.getEnv"]], "getenvint() (in module serverconfig)": [[28, "ServerConfig.getEnvInt"]], "getmemlimit() (in module serverconfig)": [[28, "ServerConfig.getMemLimit"]], "getmemused() (in module serverconfig)": [[28, "ServerConfig.getMemUsed"]], "getphysicalmemhere() (in module serverconfig)": [[28, "ServerConfig.getPhysicalMemHere"]], "get_hostname() (in module serverconfig)": [[28, "ServerConfig.get_hostname"]], "logchannel (in module serverconfig)": [[28, "ServerConfig.logChannel"]], "logcommands (in module serverconfig)": [[28, "ServerConfig.logCommands"]], "loglevel (in module serverconfig)": [[28, "ServerConfig.logLevel"]], "memhighwater (in module serverconfig)": [[28, "ServerConfig.memHighWater"]], "overmemlimit() (in module serverconfig)": [[28, "ServerConfig.overMemLimit"]], "perlocalememlimit (in module serverconfig)": [[28, "ServerConfig.perLocaleMemLimit"]], "regexmaxcaptures (in module serverconfig)": [[28, "ServerConfig.regexMaxCaptures"]], "saveusedmodules (in module serverconfig)": [[28, "ServerConfig.saveUsedModules"]], "sclogger (in module serverconfig)": [[28, "ServerConfig.scLogger"]], "serverconnectioninfo (in module serverconfig)": [[28, "ServerConfig.serverConnectionInfo"]], "serverhostname (in module serverconfig)": [[28, "ServerConfig.serverHostname"]], "serverinfonosplash (in module serverconfig)": [[28, "ServerConfig.serverInfoNoSplash"]], "splitmsgtotuple() (serverconfig.bytes method)": [[28, "ServerConfig.bytes.splitMsgToTuple"]], "splitmsgtotuple() (serverconfig.string method)": [[28, "ServerConfig.string.splitMsgToTuple"]], "trace (in module serverconfig)": [[28, "ServerConfig.trace"]], "usedmodulesfmt (in module serverconfig)": [[28, "ServerConfig.usedModulesFmt"]], "arkoudaserverdaemon (class in serverdaemon)": [[29, "ServerDaemon.ArkoudaServerDaemon"]], "defaultserverdaemon (class in serverdaemon)": [[29, "ServerDaemon.DefaultServerDaemon"]], "externalintegrationserverdaemon (class in serverdaemon)": [[29, "ServerDaemon.ExternalIntegrationServerDaemon"]], "metricsserverdaemon (class in serverdaemon)": [[29, "ServerDaemon.MetricsServerDaemon"]], "serverdaemon (module)": [[29, "module-ServerDaemon"]], "serverdaemontype (enum in serverdaemon)": [[29, "ServerDaemon.ServerDaemonType"]], "serverstatusdaemon (class in serverdaemon)": [[29, "ServerDaemon.ServerStatusDaemon"]], "arkdirectory (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.arkDirectory"]], "authenticateuser() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.authenticateUser"]], "connecturl (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.connectUrl"]], "context (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.context"]], "context (serverdaemon.metricsserverdaemon attribute)": [[29, "ServerDaemon.MetricsServerDaemon.context"]], "context (serverdaemon.serverstatusdaemon attribute)": [[29, "ServerDaemon.ServerStatusDaemon.context"]], "createserverconnectioninfo() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.createServerConnectionInfo"]], "deleteserverconnectioninfo() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.deleteServerConnectionInfo"]], "extractrequest() (serverdaemon.arkoudaserverdaemon method)": [[29, "ServerDaemon.ArkoudaServerDaemon.extractRequest"]], "getconnecturl() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.getConnectUrl"]], "getdaemontypes() (in module serverdaemon)": [[29, "ServerDaemon.getDaemonTypes"]], "geterrorname() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.getErrorName"]], "getserverdaemon() (in module serverdaemon)": [[29, "ServerDaemon.getServerDaemon"]], "getserverdaemons() (in module serverdaemon)": [[29, "ServerDaemon.getServerDaemons"]], "init() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.init"]], "init() (serverdaemon.metricsserverdaemon method)": [[29, "ServerDaemon.MetricsServerDaemon.init"]], "init() (serverdaemon.serverstatusdaemon method)": [[29, "ServerDaemon.ServerStatusDaemon.init"]], "initarkoudadirectory() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.initArkoudaDirectory"]], "integrationenabled() (in module serverdaemon)": [[29, "ServerDaemon.integrationEnabled"]], "metricsenabled() (in module serverdaemon)": [[29, "ServerDaemon.metricsEnabled"]], "multipleserverdaemons() (in module serverdaemon)": [[29, "ServerDaemon.multipleServerDaemons"]], "port (serverdaemon.arkoudaserverdaemon attribute)": [[29, "ServerDaemon.ArkoudaServerDaemon.port"]], "printserversplashmessage() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.printServerSplashMessage"]], "processerrormessagemetrics() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.processErrorMessageMetrics"]], "processmetrics() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.processMetrics"]], "register() (in module serverdaemon)": [[29, "ServerDaemon.register"]], "registerservercommands() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.registerServerCommands"]], "repcount (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.repCount"]], "reqcount (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.reqCount"]], "requestshutdown() (serverdaemon.arkoudaserverdaemon method)": [[29, "ServerDaemon.ArkoudaServerDaemon.requestShutdown"]], "requestshutdown() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.requestShutdown"]], "run() (serverdaemon.arkoudaserverdaemon method)": [[29, "ServerDaemon.ArkoudaServerDaemon.run"]], "run() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.run"]], "run() (serverdaemon.externalintegrationserverdaemon method)": [[29, "ServerDaemon.ExternalIntegrationServerDaemon.run"]], "run() (serverdaemon.metricsserverdaemon method)": [[29, "ServerDaemon.MetricsServerDaemon.run"]], "run() (serverdaemon.serverstatusdaemon method)": [[29, "ServerDaemon.ServerStatusDaemon.run"]], "sdlogger (in module serverdaemon)": [[29, "ServerDaemon.sdLogger"]], "sendrepmsg() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.sendRepMsg"]], "serverdaemontypes (in module serverdaemon)": [[29, "ServerDaemon.serverDaemonTypes"]], "servertoken (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.serverToken"]], "shutdown() (serverdaemon.arkoudaserverdaemon method)": [[29, "ServerDaemon.ArkoudaServerDaemon.shutdown"]], "shutdown() (serverdaemon.defaultserverdaemon method)": [[29, "ServerDaemon.DefaultServerDaemon.shutdown"]], "shutdown() (serverdaemon.externalintegrationserverdaemon method)": [[29, "ServerDaemon.ExternalIntegrationServerDaemon.shutdown"]], "shutdowndaemon (serverdaemon.arkoudaserverdaemon attribute)": [[29, "ServerDaemon.ArkoudaServerDaemon.shutdownDaemon"]], "socket (serverdaemon.defaultserverdaemon attribute)": [[29, "ServerDaemon.DefaultServerDaemon.socket"]], "socket (serverdaemon.metricsserverdaemon attribute)": [[29, "ServerDaemon.MetricsServerDaemon.socket"]], "socket (serverdaemon.serverstatusdaemon attribute)": [[29, "ServerDaemon.ServerStatusDaemon.socket"]], "st (serverdaemon.arkoudaserverdaemon attribute)": [[29, "ServerDaemon.ArkoudaServerDaemon.st"]], "errorwithmsg (class in servererrorstrings)": [[30, "ServerErrorStrings.ErrorWithMsg"]], "servererrorstrings (module)": [[30, "module-ServerErrorStrings"]], "incompatibleargumentserror() (in module servererrorstrings)": [[30, "ServerErrorStrings.incompatibleArgumentsError"]], "msg (servererrorstrings.errorwithmsg attribute)": [[30, "ServerErrorStrings.ErrorWithMsg.msg"]], "notimplementederror() (in module servererrorstrings)": [[30, "ServerErrorStrings.notImplementedError"]], "unknownerror() (in module servererrorstrings)": [[30, "ServerErrorStrings.unknownError"]], "unknownsymbolerror() (in module servererrorstrings)": [[30, "ServerErrorStrings.unknownSymbolError"]], "unrecognizedtypeerror() (in module servererrorstrings)": [[30, "ServerErrorStrings.unrecognizedTypeError"]], "unsupportedtypeerror() (in module servererrorstrings)": [[30, "ServerErrorStrings.unsupportedTypeError"]], "argumenterror (class in servererrors)": [[31, "ServerErrors.ArgumentError"]], "configurationerror (class in servererrors)": [[31, "ServerErrors.ConfigurationError"]], "datasetnotfounderror (class in servererrors)": [[31, "ServerErrors.DatasetNotFoundError"]], "errorwithcontext (class in servererrors)": [[31, "ServerErrors.ErrorWithContext"]], "hdf5fileformaterror (class in servererrors)": [[31, "ServerErrors.HDF5FileFormatError"]], "ioerror (class in servererrors)": [[31, "ServerErrors.IOError"]], "mismatchedappenderror (class in servererrors)": [[31, "ServerErrors.MismatchedAppendError"]], "nothdf5fileerror (class in servererrors)": [[31, "ServerErrors.NotHDF5FileError"]], "notimplementederror (class in servererrors)": [[31, "ServerErrors.NotImplementedError"]], "outofboundserror (class in servererrors)": [[31, "ServerErrors.OutOfBoundsError"]], "overmemorylimiterror (class in servererrors)": [[31, "ServerErrors.OverMemoryLimitError"]], "segstringerror (class in servererrors)": [[31, "ServerErrors.SegStringError"]], "servererrors (module)": [[31, "module-ServerErrors"]], "unknownsymbolerror (class in servererrors)": [[31, "ServerErrors.UnknownSymbolError"]], "unsupportedoserror (class in servererrors)": [[31, "ServerErrors.UnsupportedOSError"]], "writemodeerror (class in servererrors)": [[31, "ServerErrors.WriteModeError"]], "errorclass (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.errorClass"]], "generateerrorcontext() (in module servererrors)": [[31, "ServerErrors.generateErrorContext"]], "geterrorwithcontext() (in module servererrors)": [[31, "ServerErrors.getErrorWithContext"]], "init() (servererrors.argumenterror method)": [[31, "ServerErrors.ArgumentError.init"]], "init() (servererrors.configurationerror method)": [[31, "ServerErrors.ConfigurationError.init"]], "init() (servererrors.datasetnotfounderror method)": [[31, "ServerErrors.DatasetNotFoundError.init"]], "init() (servererrors.errorwithcontext method)": [[31, "ServerErrors.ErrorWithContext.init"]], "init() (servererrors.hdf5fileformaterror method)": [[31, "ServerErrors.HDF5FileFormatError.init"]], "init() (servererrors.ioerror method)": [[31, "ServerErrors.IOError.init"]], "init() (servererrors.mismatchedappenderror method)": [[31, "ServerErrors.MismatchedAppendError.init"]], "init() (servererrors.nothdf5fileerror method)": [[31, "ServerErrors.NotHDF5FileError.init"]], "init() (servererrors.notimplementederror method)": [[31, "ServerErrors.NotImplementedError.init"]], "init() (servererrors.overmemorylimiterror method)": [[31, "ServerErrors.OverMemoryLimitError.init"]], "init() (servererrors.segstringerror method)": [[31, "ServerErrors.SegStringError.init"]], "init() (servererrors.unknownsymbolerror method)": [[31, "ServerErrors.UnknownSymbolError.init"]], "init() (servererrors.unsupportedoserror method)": [[31, "ServerErrors.UnsupportedOSError.init"]], "init() (servererrors.writemodeerror method)": [[31, "ServerErrors.WriteModeError.init"]], "linenumber (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.lineNumber"]], "modulename (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.moduleName"]], "publish() (servererrors.errorwithcontext method)": [[31, "ServerErrors.ErrorWithContext.publish"]], "publishmsg (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.publishMsg"]], "routinename (servererrors.errorwithcontext attribute)": [[31, "ServerErrors.ErrorWithContext.routineName"]], "rotl() (in module siphash)": [[32, "SipHash.ROTL"]], "siphash (module)": [[32, "module-SipHash"]], "crounds (in module siphash)": [[32, "SipHash.cROUNDS"]], "drounds (in module siphash)": [[32, "SipHash.dROUNDS"]], "defaultsiphashkey (in module siphash)": [[32, "SipHash.defaultSipHashKey"]], "shlogger (in module siphash)": [[32, "SipHash.shLogger"]], "siphash128() (in module siphash)": [[32, "SipHash.sipHash128"]], "siphash64() (in module siphash)": [[32, "SipHash.sipHash64"]], "sparsematrix (module)": [[33, "module-SparseMatrix"]], "colmajorexscan() (in module sparsematrix)": [[33, "SparseMatrix.colMajorExScan"]], "densematmatmult() (in module sparsematrix)": [[33, "SparseMatrix.denseMatMatMult"]], "fillsparsematrix() (in module sparsematrix)": [[33, "SparseMatrix.fillSparseMatrix"]], "getgrid() (in module sparsematrix)": [[33, "SparseMatrix.getGrid"]], "getlsa() (in module sparsematrix)": [[33, "SparseMatrix.getLSA"]], "getlsd() (in module sparsematrix)": [[33, "SparseMatrix.getLSD"]], "randsparsematrix() (in module sparsematrix)": [[33, "SparseMatrix.randSparseMatrix"]], "rowmajorexscan() (in module sparsematrix)": [[33, "SparseMatrix.rowMajorExScan"]], "sparsematfromarrays() (in module sparsematrix)": [[33, "SparseMatrix.sparseMatFromArrays"]], "sparsematmatmult() (in module sparsematrix)": [[33, "SparseMatrix.sparseMatMatMult"]], "sparsemattopdarray() (in module sparsematrix)": [[33, "SparseMatrix.sparseMatToPdarray"]], "layout (enum in spsmatutil)": [[34, "SpsMatUtil.Layout"]], "spsmatutil (module)": [[34, "module-SpsMatUtil"]], "accumulate() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.accumulate"]], "accumulateontostate() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.accumulateOntoState"]], "add() (spsmatutil.sparsematdat method)": [[34, "SpsMatUtil.sparseMatDat.add"]], "clone() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.clone"]], "combine() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.combine"]], "elttype (spsmatutil.merge attribute)": [[34, "SpsMatUtil.merge.eltType"]], "emptysparsedomlike() (in module spsmatutil)": [[34, "SpsMatUtil.emptySparseDomLike"]], "generate() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.generate"]], "identity() (spsmatutil.merge method)": [[34, "SpsMatUtil.merge.identity"]], "makesparsemat() (in module spsmatutil)": [[34, "SpsMatUtil.makeSparseMat"]], "merge (class in spsmatutil)": [[34, "SpsMatUtil.merge"]], "rands (in module spsmatutil)": [[34, "SpsMatUtil.rands"]], "seed (in module spsmatutil)": [[34, "SpsMatUtil.seed"]], "sparsematdat (record in spsmatutil)": [[34, "SpsMatUtil.sparseMatDat"]], "value (spsmatutil.merge attribute)": [[34, "SpsMatUtil.merge.value"]], "writesparsematrix() (in module spsmatutil)": [[34, "SpsMatUtil.writeSparseMatrix"]], "statusmsg (module)": [[35, "module-StatusMsg"]], "getmemorystatusmsg() (in module statusmsg)": [[35, "StatusMsg.getMemoryStatusMsg"]], "slogger (in module statusmsg)": [[35, "StatusMsg.sLogger"]], "dmap (enum in symarraydmap)": [[36, "SymArrayDmap.Dmap"]], "mydmap (in module symarraydmap)": [[36, "SymArrayDmap.MyDmap"]], "symarraydmap (module)": [[36, "module-SymArrayDmap"]], "makedistarray() (in module symarraydmap)": [[36, "SymArrayDmap.makeDistArray"]], "makedistdom() (in module symarraydmap)": [[36, "SymArrayDmap.makeDistDom"]], "makedistdomtype() (in module symarraydmap)": [[36, "SymArrayDmap.makeDistDomType"]], "makesparsearray() (in module symarraydmap)": [[36, "SymArrayDmap.makeSparseArray"]], "makesparsedomain() (in module symarraydmap)": [[36, "SymArrayDmap.makeSparseDomain"]], "unique (module)": [[37, "module-Unique"]], "ulogger (in module unique)": [[37, "Unique.uLogger"]], "uniquefromsorted() (in module unique)": [[37, "Unique.uniqueFromSorted"]], "uniquefromtruth() (in module unique)": [[37, "Unique.uniqueFromTruth"]], "uniquegroup() (in module unique)": [[37, "Unique.uniqueGroup"]], "uniquesort() (in module unique)": [[37, "Unique.uniqueSort"]], "uniquesortwithinverse() (in module unique)": [[37, "Unique.uniqueSortWithInverse"]], "arkouda_server (module)": [[38, "module-arkouda_server"]], "aslogger (in module arkouda_server)": [[38, "arkouda_server.asLogger"]], "main() (in module arkouda_server)": [[38, "arkouda_server.main"]], "arkoudasortcompat (module)": [[39, "module-ArkoudaSortCompat"]], "arkoudasparsematrixcompat (module)": [[40, "module-ArkoudaSparseMatrixCompat"]]}}) \ No newline at end of file

    random_sparse_matrix(→ arkouda.sparrayclass.sparray)

    create_sparse_matrix(→ arkouda.sparrayclass.sparray)

    Create a sparse matrix from three pdarrays representing the row indices,

    random_sparse_matrix(→ arkouda.sparrayclass.sparray)

    Create a random sparse matrix with the specified number of rows and columns

    sparse_matrix_matrix_mult(→ arkouda.sparrayclass.sparray)

    sparse_matrix_matrix_mult(→ arkouda.sparrayclass.sparray)

    Multiply two sparse matrices.