From 60c11b063e22dbca21cd066cc04d48346075f920 Mon Sep 17 00:00:00 2001 From: "github-merge-queue[bot]" Date: Mon, 18 Mar 2024 15:23:20 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20Bears-R-?= =?UTF-8?q?Us/arkouda@a0bbeba0a6270a644bf260ccd08f7df6a0dd7abd=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _modules/arkouda/dataframe.html | 63 + _modules/arkouda/series.html | 66 + .../autoapi/arkouda/dataframe/index.rst.txt | 52 + _sources/autoapi/arkouda/index.rst.txt | 158 + _sources/autoapi/arkouda/series/index.rst.txt | 54 + autoapi/arkouda/categorical/index.html | 18 +- autoapi/arkouda/client_dtypes/index.html | 6 +- autoapi/arkouda/dataframe/index.html | 72 +- autoapi/arkouda/groupbyclass/index.html | 24 +- autoapi/arkouda/index.html | 5457 +++++++++-------- autoapi/arkouda/index/index.html | 16 +- autoapi/arkouda/io/index.html | 4 +- autoapi/arkouda/numeric/index.html | 8 +- autoapi/arkouda/pdarraycreation/index.html | 10 +- autoapi/arkouda/pdarraysetops/index.html | 20 +- autoapi/arkouda/segarray/index.html | 4 +- autoapi/arkouda/series/index.html | 73 +- autoapi/arkouda/sorting/index.html | 4 +- autoapi/arkouda/strings/index.html | 2 +- autoapi/arkouda/timeclass/index.html | 12 +- file_io/CSV.html | 4 +- file_io/HDF5.html | 8 +- file_io/PARQUET.html | 10 +- genindex.html | 542 +- objects.inv | Bin 13600 -> 13635 bytes searchindex.js | 2 +- usage/IO.html | 6 +- usage/argsort.html | 8 +- usage/arithmetic.html | 4 +- usage/categorical.html | 6 +- usage/creation.html | 4 +- usage/dataframe.html | 4 +- usage/groupby.html | 18 +- usage/pdarray.html | 4 +- usage/series.html | 2 +- usage/setops.html | 14 +- usage/strings.html | 16 +- 37 files changed, 3727 insertions(+), 3048 deletions(-) diff --git a/_modules/arkouda/dataframe.html b/_modules/arkouda/dataframe.html index 22bf902ab6..0b785f6634 100644 --- a/_modules/arkouda/dataframe.html +++ b/_modules/arkouda/dataframe.html @@ -3020,6 +3020,69 @@

Source code for arkouda.dataframe

             return pd.DataFrame(data=pandas_data)
+
+[docs] + def to_markdown(self, mode="wt", index=True, tablefmt="grid", storage_options=None, **kwargs): + r""" + Print DataFrame in Markdown-friendly format. + + Parameters + ---------- + mode : str, optional + Mode in which file is opened, "wt" by default. + index : bool, optional, default True + Add index (row) labels. + tablefmt: str = "grid" + Table format to call from tablulate: + https://pypi.org/project/tabulate/ + storage_options: dict, optional + Extra options that make sense for a particular storage connection, + e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, + e.g., starting “s3://”, “gcs://”. + An error will be raised if providing this argument with a non-fsspec URL. + See the fsspec and backend storage implementation docs for the set + of allowed keys and values. + **kwargs + These parameters will be passed to tabulate. + + Note + ---- + This function should only be called on small DataFrames as it calls pandas.DataFrame.to_markdown: + https://pandas.pydata.org/pandas-docs/version/1.2.4/reference/api/pandas.DataFrame.to_markdown.html + + Examples + -------- + + >>> import arkouda as ak + >>> ak.connect() + >>> df = ak.DataFrame({"animal_1": ["elk", "pig"], "animal_2": ["dog", "quetzal"]}) + >>> print(df.to_markdown()) + +----+------------+------------+ + | | animal_1 | animal_2 | + +====+============+============+ + | 0 | elk | dog | + +----+------------+------------+ + | 1 | pig | quetzal | + +----+------------+------------+ + + + Suppress the index: + + >>> print(df.to_markdown(index = False)) + +------------+------------+ + | animal_1 | animal_2 | + +============+============+ + | elk | dog | + +------------+------------+ + | pig | quetzal | + +------------+------------+ + + """ + return self.to_pandas().to_markdown( + mode=mode, index=index, tablefmt=tablefmt, storage_options=storage_options, **kwargs + )
+ + def _prep_data(self, index=False, columns=None): # if no columns are stored, we will save all columns if columns is None: diff --git a/_modules/arkouda/series.html b/_modules/arkouda/series.html index 209136353f..058524d33f 100644 --- a/_modules/arkouda/series.html +++ b/_modules/arkouda/series.html @@ -1040,6 +1040,72 @@

Source code for arkouda.series

             return pd.Series(val.to_ndarray(), index=idx)
+
+[docs] + def to_markdown(self, mode="wt", index=True, tablefmt="grid", storage_options=None, **kwargs): + r""" + Print Series in Markdown-friendly format. + + Parameters + ---------- + mode : str, optional + Mode in which file is opened, "wt" by default. + index : bool, optional, default True + Add index (row) labels. + tablefmt: str = "grid" + Table format to call from tablulate: + https://pypi.org/project/tabulate/ + storage_options: dict, optional + Extra options that make sense for a particular storage connection, + e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, + e.g., starting “s3://”, “gcs://”. + An error will be raised if providing this argument with a non-fsspec URL. + See the fsspec and backend storage implementation docs for the set + of allowed keys and values. + + **kwargs + These parameters will be passed to tabulate. + + Note + ---- + This function should only be called on small Series as it calls pandas.Series.to_markdown: + https://pandas.pydata.org/docs/reference/api/pandas.Series.to_markdown.html + + Examples + -------- + + >>> import arkouda as ak + >>> ak.connect() + >>> s = ak.Series(["elk", "pig", "dog", "quetzal"], name="animal") + >>> print(s.to_markdown()) + | | animal | + |---:|:---------| + | 0 | elk | + | 1 | pig | + | 2 | dog | + | 3 | quetzal | + + Output markdown with a tabulate option. + + >>> print(s.to_markdown(tablefmt="grid")) + +----+----------+ + | | animal | + +====+==========+ + | 0 | elk | + +----+----------+ + | 1 | pig | + +----+----------+ + | 2 | dog | + +----+----------+ + | 3 | quetzal | + +----+----------+ + + """ + return self.to_pandas().to_markdown( + mode=mode, index=index, tablefmt=tablefmt, storage_options=storage_options, **kwargs + )
+ +
[docs] @typechecked() diff --git a/_sources/autoapi/arkouda/dataframe/index.rst.txt b/_sources/autoapi/arkouda/dataframe/index.rst.txt index d191d9fff9..5d5b87ec82 100644 --- a/_sources/autoapi/arkouda/dataframe/index.rst.txt +++ b/_sources/autoapi/arkouda/dataframe/index.rst.txt @@ -2140,6 +2140,58 @@ Functions +----+-----+-----+ + .. py:method:: to_markdown(mode='wt', index=True, tablefmt='grid', storage_options=None, **kwargs) + + Print DataFrame in Markdown-friendly format. + + :param mode: Mode in which file is opened, "wt" by default. + :type mode: str, optional + :param index: Add index (row) labels. + :type index: bool, optional, default True + :param tablefmt: Table format to call from tablulate: + https://pypi.org/project/tabulate/ + :type tablefmt: str = "grid" + :param storage_options: Extra options that make sense for a particular storage connection, + e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, + e.g., starting “s3://”, “gcs://”. + An error will be raised if providing this argument with a non-fsspec URL. + See the fsspec and backend storage implementation docs for the set + of allowed keys and values. + :type storage_options: dict, optional + :param \*\*kwargs: These parameters will be passed to tabulate. + + .. note:: + + This function should only be called on small DataFrames as it calls pandas.DataFrame.to_markdown: + https://pandas.pydata.org/pandas-docs/version/1.2.4/reference/api/pandas.DataFrame.to_markdown.html + + .. rubric:: Examples + + >>> import arkouda as ak + >>> ak.connect() + >>> df = ak.DataFrame({"animal_1": ["elk", "pig"], "animal_2": ["dog", "quetzal"]}) + >>> print(df.to_markdown()) + +----+------------+------------+ + | | animal_1 | animal_2 | + +====+============+============+ + | 0 | elk | dog | + +----+------------+------------+ + | 1 | pig | quetzal | + +----+------------+------------+ + + Suppress the index: + + >>> print(df.to_markdown(index = False)) + +------------+------------+ + | animal_1 | animal_2 | + +============+============+ + | elk | dog | + +------------+------------+ + | pig | quetzal | + +------------+------------+ + + + .. py:method:: to_pandas(datalimit=maxTransferBytes, retain_index=False) Send this DataFrame to a pandas DataFrame. diff --git a/_sources/autoapi/arkouda/index.rst.txt b/_sources/autoapi/arkouda/index.rst.txt index c82fd90169..f6d225426b 100644 --- a/_sources/autoapi/arkouda/index.rst.txt +++ b/_sources/autoapi/arkouda/index.rst.txt @@ -4973,6 +4973,58 @@ Attributes +----+-----+-----+ + .. py:method:: to_markdown(mode='wt', index=True, tablefmt='grid', storage_options=None, **kwargs) + + Print DataFrame in Markdown-friendly format. + + :param mode: Mode in which file is opened, "wt" by default. + :type mode: str, optional + :param index: Add index (row) labels. + :type index: bool, optional, default True + :param tablefmt: Table format to call from tablulate: + https://pypi.org/project/tabulate/ + :type tablefmt: str = "grid" + :param storage_options: Extra options that make sense for a particular storage connection, + e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, + e.g., starting “s3://”, “gcs://”. + An error will be raised if providing this argument with a non-fsspec URL. + See the fsspec and backend storage implementation docs for the set + of allowed keys and values. + :type storage_options: dict, optional + :param \*\*kwargs: These parameters will be passed to tabulate. + + .. note:: + + This function should only be called on small DataFrames as it calls pandas.DataFrame.to_markdown: + https://pandas.pydata.org/pandas-docs/version/1.2.4/reference/api/pandas.DataFrame.to_markdown.html + + .. rubric:: Examples + + >>> import arkouda as ak + >>> ak.connect() + >>> df = ak.DataFrame({"animal_1": ["elk", "pig"], "animal_2": ["dog", "quetzal"]}) + >>> print(df.to_markdown()) + +----+------------+------------+ + | | animal_1 | animal_2 | + +====+============+============+ + | 0 | elk | dog | + +----+------------+------------+ + | 1 | pig | quetzal | + +----+------------+------------+ + + Suppress the index: + + >>> print(df.to_markdown(index = False)) + +------------+------------+ + | animal_1 | animal_2 | + +============+============+ + | elk | dog | + +------------+------------+ + | pig | quetzal | + +------------+------------+ + + + .. py:method:: to_pandas(datalimit=maxTransferBytes, retain_index=False) Send this DataFrame to a pandas DataFrame. @@ -7331,6 +7383,58 @@ Attributes +----+-----+-----+ + .. py:method:: to_markdown(mode='wt', index=True, tablefmt='grid', storage_options=None, **kwargs) + + Print DataFrame in Markdown-friendly format. + + :param mode: Mode in which file is opened, "wt" by default. + :type mode: str, optional + :param index: Add index (row) labels. + :type index: bool, optional, default True + :param tablefmt: Table format to call from tablulate: + https://pypi.org/project/tabulate/ + :type tablefmt: str = "grid" + :param storage_options: Extra options that make sense for a particular storage connection, + e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, + e.g., starting “s3://”, “gcs://”. + An error will be raised if providing this argument with a non-fsspec URL. + See the fsspec and backend storage implementation docs for the set + of allowed keys and values. + :type storage_options: dict, optional + :param \*\*kwargs: These parameters will be passed to tabulate. + + .. note:: + + This function should only be called on small DataFrames as it calls pandas.DataFrame.to_markdown: + https://pandas.pydata.org/pandas-docs/version/1.2.4/reference/api/pandas.DataFrame.to_markdown.html + + .. rubric:: Examples + + >>> import arkouda as ak + >>> ak.connect() + >>> df = ak.DataFrame({"animal_1": ["elk", "pig"], "animal_2": ["dog", "quetzal"]}) + >>> print(df.to_markdown()) + +----+------------+------------+ + | | animal_1 | animal_2 | + +====+============+============+ + | 0 | elk | dog | + +----+------------+------------+ + | 1 | pig | quetzal | + +----+------------+------------+ + + Suppress the index: + + >>> print(df.to_markdown(index = False)) + +------------+------------+ + | animal_1 | animal_2 | + +============+============+ + | elk | dog | + +------------+------------+ + | pig | quetzal | + +------------+------------+ + + + .. py:method:: to_pandas(datalimit=maxTransferBytes, retain_index=False) Send this DataFrame to a pandas DataFrame. @@ -14210,6 +14314,60 @@ Attributes .. py:method:: to_list() -> list + .. py:method:: to_markdown(mode='wt', index=True, tablefmt='grid', storage_options=None, **kwargs) + + Print Series in Markdown-friendly format. + + :param mode: Mode in which file is opened, "wt" by default. + :type mode: str, optional + :param index: Add index (row) labels. + :type index: bool, optional, default True + :param tablefmt: Table format to call from tablulate: + https://pypi.org/project/tabulate/ + :type tablefmt: str = "grid" + :param storage_options: Extra options that make sense for a particular storage connection, + e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, + e.g., starting “s3://”, “gcs://”. + An error will be raised if providing this argument with a non-fsspec URL. + See the fsspec and backend storage implementation docs for the set + of allowed keys and values. + :type storage_options: dict, optional + :param \*\*kwargs: These parameters will be passed to tabulate. + + .. note:: + + This function should only be called on small Series as it calls pandas.Series.to_markdown: + https://pandas.pydata.org/docs/reference/api/pandas.Series.to_markdown.html + + .. rubric:: Examples + + >>> import arkouda as ak + >>> ak.connect() + >>> s = ak.Series(["elk", "pig", "dog", "quetzal"], name="animal") + >>> print(s.to_markdown()) + | | animal | + |---:|:---------| + | 0 | elk | + | 1 | pig | + | 2 | dog | + | 3 | quetzal | + + Output markdown with a tabulate option. + + >>> print(s.to_markdown(tablefmt="grid")) + +----+----------+ + | | animal | + +====+==========+ + | 0 | elk | + +----+----------+ + | 1 | pig | + +----+----------+ + | 2 | dog | + +----+----------+ + | 3 | quetzal | + +----+----------+ + + .. py:method:: to_pandas() -> pandas.Series Convert the series to a local PANDAS series diff --git a/_sources/autoapi/arkouda/series/index.rst.txt b/_sources/autoapi/arkouda/series/index.rst.txt index bfb5e2f4d5..54257e0de6 100644 --- a/_sources/autoapi/arkouda/series/index.rst.txt +++ b/_sources/autoapi/arkouda/series/index.rst.txt @@ -406,6 +406,60 @@ Classes .. py:method:: to_list() -> list + .. py:method:: to_markdown(mode='wt', index=True, tablefmt='grid', storage_options=None, **kwargs) + + Print Series in Markdown-friendly format. + + :param mode: Mode in which file is opened, "wt" by default. + :type mode: str, optional + :param index: Add index (row) labels. + :type index: bool, optional, default True + :param tablefmt: Table format to call from tablulate: + https://pypi.org/project/tabulate/ + :type tablefmt: str = "grid" + :param storage_options: Extra options that make sense for a particular storage connection, + e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, + e.g., starting “s3://”, “gcs://”. + An error will be raised if providing this argument with a non-fsspec URL. + See the fsspec and backend storage implementation docs for the set + of allowed keys and values. + :type storage_options: dict, optional + :param \*\*kwargs: These parameters will be passed to tabulate. + + .. note:: + + This function should only be called on small Series as it calls pandas.Series.to_markdown: + https://pandas.pydata.org/docs/reference/api/pandas.Series.to_markdown.html + + .. rubric:: Examples + + >>> import arkouda as ak + >>> ak.connect() + >>> s = ak.Series(["elk", "pig", "dog", "quetzal"], name="animal") + >>> print(s.to_markdown()) + | | animal | + |---:|:---------| + | 0 | elk | + | 1 | pig | + | 2 | dog | + | 3 | quetzal | + + Output markdown with a tabulate option. + + >>> print(s.to_markdown(tablefmt="grid")) + +----+----------+ + | | animal | + +====+==========+ + | 0 | elk | + +----+----------+ + | 1 | pig | + +----+----------+ + | 2 | dog | + +----+----------+ + | 3 | quetzal | + +----+----------+ + + .. py:method:: to_pandas() -> pandas.Series Convert the series to a local PANDAS series diff --git a/autoapi/arkouda/categorical/index.html b/autoapi/arkouda/categorical/index.html index 6c6e475f36..0f0cf343c2 100644 --- a/autoapi/arkouda/categorical/index.html +++ b/autoapi/arkouda/categorical/index.html @@ -310,7 +310,7 @@

Classes#<
Parameters:
    -
  • values (Strings) – String values to convert to categories

  • +
  • values (Strings) – String values to convert to categories

  • NAvalue (str scalar) – The value to use to represent missing/null data

@@ -321,7 +321,7 @@

Classes#<

The set of category labels (determined automatically)

Type:
-

Strings

+

Strings

@@ -596,7 +596,7 @@

Classes#<
Parameters:
Raises:
-

RegistrationError – if user_defined_name is not registered

+

RegistrationError – if user_defined_name is not registered

@@ -2239,7 +2239,7 @@

Functions

bool

Raises:
-

RegistrationError – Raised if there’s a server-side error or a mismatch of registered components.

+

RegistrationError – Raised if there’s a server-side error or a mismatch of registered components.

@@ -3051,7 +3051,7 @@

FunctionsRaises:
@@ -3971,6 +3971,59 @@

Functions +
+to_markdown(mode='wt', index=True, tablefmt='grid', storage_options=None, **kwargs)[source]#
+

Print DataFrame in Markdown-friendly format.

+
+
Parameters:
+
    +
  • mode (str, optional) – Mode in which file is opened, “wt” by default.

  • +
  • index (bool, optional, default True) – Add index (row) labels.

  • +
  • tablefmt (str = "grid") – Table format to call from tablulate: +https://pypi.org/project/tabulate/

  • +
  • storage_options (dict, optional) – Extra options that make sense for a particular storage connection, +e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, +e.g., starting “s3://”, “gcs://”. +An error will be raised if providing this argument with a non-fsspec URL. +See the fsspec and backend storage implementation docs for the set +of allowed keys and values.

  • +
  • **kwargs – These parameters will be passed to tabulate.

  • +
+
+
+
+

Note

+

This function should only be called on small DataFrames as it calls pandas.DataFrame.to_markdown: +https://pandas.pydata.org/pandas-docs/version/1.2.4/reference/api/pandas.DataFrame.to_markdown.html

+
+

Examples

+
>>> import arkouda as ak
+>>> ak.connect()
+>>> df = ak.DataFrame({"animal_1": ["elk", "pig"], "animal_2": ["dog", "quetzal"]})
+>>> print(df.to_markdown())
++----+------------+------------+
+|    | animal_1   | animal_2   |
++====+============+============+
+|  0 | elk        | dog        |
++----+------------+------------+
+|  1 | pig        | quetzal    |
++----+------------+------------+
+
+
+

Suppress the index:

+
>>> print(df.to_markdown(index = False))
++------------+------------+
+| animal_1   | animal_2   |
++============+============+
+| elk        | dog        |
++------------+------------+
+| pig        | quetzal    |
++------------+------------+
+
+
+
+
to_pandas(datalimit=maxTransferBytes, retain_index=False)[source]#
@@ -4162,7 +4215,7 @@

Functions
Raises:
-

RegistrationError – If the object is already unregistered or if there is a server error +

RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister.

@@ -4198,7 +4251,7 @@

FunctionsRaises:
@@ -4359,8 +4412,8 @@

Functions
Parameters:
@@ -766,7 +766,7 @@

Attributes

GroupBy

Raises:
-

RegistrationError – if user_defined_name is not registered

+

RegistrationError – if user_defined_name is not registered

@@ -782,7 +782,7 @@

Attributes
Parameters:
    -
  • values (pdarray, Strings) – The values to put in each group’s segment

  • +
  • values (pdarray, Strings) – The values to put in each group’s segment

  • permute (bool) – If True (default), permute broadcast values back to the ordering of the original array on which GroupBy was called. If False, the broadcast values are grouped by value.

  • @@ -792,7 +792,7 @@

    Attributes

    The broadcasted values

Return type:
-

pdarray, Strings

+

pdarray, Strings

Raises:
    @@ -922,7 +922,7 @@

    Attributes

    bool

Raises:
-

RegistrationError – Raised if there’s a server-side error or a mismatch of registered components

+

RegistrationError – Raised if there’s a server-side error or a mismatch of registered components

@@ -1257,7 +1257,7 @@

AttributesRaises:
@@ -1462,7 +1462,7 @@

Attributes
Raises:
-

RegistrationError – If the object is already unregistered or if there is a server error +

RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

@@ -1487,7 +1487,7 @@

AttributesRaises:
@@ -1568,7 +1568,7 @@

Attributes @@ -9632,7 +9685,7 @@

Attributes

arkouda.dataframe.DataFrame

Raises:
-

RegistrationError – if user_defined_name is not registered

+

RegistrationError – if user_defined_name is not registered

@@ -9831,7 +9884,7 @@

Attributes

See also

-

pdarray.corr

+

pdarray.corr

Notes

Generates the correlation matrix using Pearson R for all columns.

@@ -10492,12 +10545,12 @@

Attributes

bool

Raises:
-

RegistrationError – Raised if there’s a server-side error or a mismatch of registered components.

+

RegistrationError – Raised if there’s a server-side error or a mismatch of registered components.

Notes

Objects registered with the server are immune to deletion until @@ -11304,13 +11357,13 @@

AttributesRaises:

Notes

Objects registered with the server are immune to deletion until @@ -12226,7 +12279,60 @@

Attributes
-to_pandas(datalimit=maxTransferBytes, retain_index=False)[source]#
+to_markdown(mode='wt', index=True, tablefmt='grid', storage_options=None, **kwargs)[source]# +

Print DataFrame in Markdown-friendly format.

+
+
Parameters:
+
    +
  • mode (str, optional) – Mode in which file is opened, “wt” by default.

  • +
  • index (bool, optional, default True) – Add index (row) labels.

  • +
  • tablefmt (str = "grid") – Table format to call from tablulate: +https://pypi.org/project/tabulate/

  • +
  • storage_options (dict, optional) – Extra options that make sense for a particular storage connection, +e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, +e.g., starting “s3://”, “gcs://”. +An error will be raised if providing this argument with a non-fsspec URL. +See the fsspec and backend storage implementation docs for the set +of allowed keys and values.

  • +
  • **kwargs – These parameters will be passed to tabulate.

  • +
+
+
+
+

Note

+

This function should only be called on small DataFrames as it calls pandas.DataFrame.to_markdown: +https://pandas.pydata.org/pandas-docs/version/1.2.4/reference/api/pandas.DataFrame.to_markdown.html

+
+

Examples

+
>>> import arkouda as ak
+>>> ak.connect()
+>>> df = ak.DataFrame({"animal_1": ["elk", "pig"], "animal_2": ["dog", "quetzal"]})
+>>> print(df.to_markdown())
++----+------------+------------+
+|    | animal_1   | animal_2   |
++====+============+============+
+|  0 | elk        | dog        |
++----+------------+------------+
+|  1 | pig        | quetzal    |
++----+------------+------------+
+
+
+

Suppress the index:

+
>>> print(df.to_markdown(index = False))
++------------+------------+
+| animal_1   | animal_2   |
++============+============+
+| elk        | dog        |
++------------+------------+
+| pig        | quetzal    |
++------------+------------+
+
+
+
+ +
+
+to_pandas(datalimit=maxTransferBytes, retain_index=False)[source]#

Send this DataFrame to a pandas DataFrame.

Parameters:
@@ -12304,8 +12410,8 @@

Attributes -
-to_parquet(path, index=False, columns=None, compression: str | None = None, convert_categoricals: bool = False)[source]#
+
+to_parquet(path, index=False, columns=None, compression: str | None = None, convert_categoricals: bool = False)[source]#

Save DataFrame to disk as parquet, preserving column names.

Parameters:
@@ -12372,8 +12478,8 @@

Attributes -
-transfer(hostname, port)[source]#
+
+transfer(hostname, port)[source]#

Sends a DataFrame to a different Arkouda server.

Parameters:
@@ -12409,19 +12515,19 @@

Attributes -
-unregister()[source]#
+
+unregister()[source]#

Unregister this DataFrame object in the arkouda server which was previously registered using register() and/or attached to using attach().

Raises:
-

RegistrationError – If the object is already unregistered or if there is a server error +

RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister.

Notes

Objects registered with the server are immune to deletion until @@ -12440,8 +12546,8 @@

Attributes -
-static unregister_dataframe_by_name(user_defined_name: str) str[source]#
+
+static unregister_dataframe_by_name(user_defined_name: str) str[source]#

Function to unregister DataFrame object by name which was registered with the arkouda server via register().

@@ -12451,7 +12557,7 @@

AttributesRaises:

@@ -12473,8 +12579,8 @@

Attributes -
-update_hdf(prefix_path: str, index=False, columns=None, repack: bool = True)[source]#
+
+update_hdf(prefix_path: str, index=False, columns=None, repack: bool = True)[source]#

Overwrite the dataset with the name provided with this dataframe. If the dataset does not exist it is added.

@@ -12567,8 +12673,8 @@

Attributes -
-update_nrows()[source]#
+
+update_nrows()[source]#

Computes the number of rows on the arkouda server and updates the size parameter.

@@ -12751,12 +12857,12 @@

Attributes

numpy.bool

Raises:
-

RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

+

RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

Notes

Objects registered with the server are immune to deletion until @@ -12784,12 +12890,12 @@

AttributesReturn type: -

Datetime

+

Datetime

Raises:
  • TypeError – Raised if user_defined_name is not a str

  • -
  • RegistrationError – If the server was unable to register the Datetimes with the user_defined_name

  • +
  • RegistrationError – If the server was unable to register the Datetimes with the user_defined_name

@@ -12826,13 +12932,13 @@

Attributes
Raises:
-

RegistrationError – If the object is already unregistered or if there is a server error +

RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

Notes

Objects registered with the server are immune to deletion until @@ -12842,8 +12948,8 @@

Attributes -
-class arkouda.Datetime(pda, unit: str = _BASE_UNIT)[source]#
+
+class arkouda.Datetime(pda, unit: str = _BASE_UNIT)[source]#

Bases: _AbstractBaseTime

Represents a date and/or time.

Datetime is the Arkouda analog to pandas DatetimeIndex and @@ -12873,139 +12979,139 @@

AttributesNotes

The .values attribute is always in nanoseconds with int64 dtype.

-
-
-property date#
-
-
-property day#
+property date#
-property day_of_week#
+property day#
-property day_of_year#
+property day_of_week#
-property dayofweek#
+property day_of_year#
-property dayofyear#
+property dayofweek#
-property hour#
+property dayofyear#
-property is_leap_year#
+property hour#
-property microsecond#
+property is_leap_year#
-property millisecond#
+property microsecond#
-property minute#
+property millisecond#
-property month#
+property minute#
-property nanosecond#
+property month#
-property second#
+property nanosecond#
-property week#
+property second#
-property weekday#
+property week#
-property weekofyear#
+property weekday#
-property year#
+property weekofyear#
-
+
-special_objType = 'Datetime'#
+property year#
-supported_opeq#
+special_objType = 'Datetime'#
-supported_with_datetime#
+supported_opeq#
-supported_with_pdarray#
+supported_with_datetime#
-supported_with_r_datetime#
+supported_with_pdarray#
-supported_with_r_pdarray#
+supported_with_r_datetime#
-supported_with_r_timedelta#
+supported_with_r_pdarray#
-supported_with_timedelta#
+supported_with_r_timedelta#
-
+
-is_registered() numpy.bool_[source]#
+supported_with_timedelta# +
+ +
+
+is_registered() numpy.bool_[source]#

Return True iff the object is contained in the registry or is a component of a registered object.

@@ -13018,12 +13124,12 @@

Attributes

numpy.bool

Raises:
-

RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

+

RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

Notes

Objects registered with the server are immune to deletion until @@ -13031,13 +13137,13 @@

Attributes -
-isocalendar()[source]#
+
+isocalendar()[source]#

-
-register(user_defined_name)[source]#
+
+register(user_defined_name)[source]#

Register this Datetime object and underlying components with the Arkouda server

Parameters:
@@ -13051,12 +13157,12 @@

AttributesReturn type: -

Datetime

+

Datetime

Raises:
  • TypeError – Raised if user_defined_name is not a str

  • -
  • RegistrationError – If the server was unable to register the Datetimes with the user_defined_name

  • +
  • RegistrationError – If the server was unable to register the Datetimes with the user_defined_name

@@ -13070,14 +13176,14 @@

Attributes -
-sum()[source]#
+
+sum()[source]#

Return the sum of all elements in the array.

-
-to_pandas()[source]#
+
+to_pandas()[source]#

Convert array to a pandas DatetimeIndex. Note: if the array size exceeds client.maxTransferBytes, a RuntimeError is raised.

@@ -13087,19 +13193,19 @@

Attributes -
-unregister()[source]#
+
+unregister()[source]#

Unregister this Datetime object in the arkouda server which was previously registered using register() and/or attached to using attach()

Raises:
-

RegistrationError – If the object is already unregistered or if there is a server error +

RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

Notes

Objects registered with the server are immune to deletion until @@ -13109,8 +13215,8 @@

Attributes -
-class arkouda.Datetime(pda, unit: str = _BASE_UNIT)[source]#
+
+class arkouda.Datetime(pda, unit: str = _BASE_UNIT)[source]#

Bases: _AbstractBaseTime

Represents a date and/or time.

Datetime is the Arkouda analog to pandas DatetimeIndex and @@ -13140,139 +13246,139 @@

AttributesNotes

The .values attribute is always in nanoseconds with int64 dtype.

-
-
-property date#
-
-
-property day#
+property date#
-property day_of_week#
+property day#
-property day_of_year#
+property day_of_week#
-property dayofweek#
+property day_of_year#
-property dayofyear#
+property dayofweek#
-property hour#
+property dayofyear#
-property is_leap_year#
+property hour#
-property microsecond#
+property is_leap_year#
-property millisecond#
+property microsecond#
-property minute#
+property millisecond#
-property month#
+property minute#
-property nanosecond#
+property month#
-property second#
+property nanosecond#
-property week#
+property second#
-property weekday#
+property week#
-property weekofyear#
+property weekday#
-property year#
+property weekofyear#
-
+
-special_objType = 'Datetime'#
+property year#
-supported_opeq#
+special_objType = 'Datetime'#
-supported_with_datetime#
+supported_opeq#
-supported_with_pdarray#
+supported_with_datetime#
-supported_with_r_datetime#
+supported_with_pdarray#
-supported_with_r_pdarray#
+supported_with_r_datetime#
-supported_with_r_timedelta#
+supported_with_r_pdarray#
-supported_with_timedelta#
+supported_with_r_timedelta#
-
+
-is_registered() numpy.bool_[source]#
+supported_with_timedelta# +
+ +
+
+is_registered() numpy.bool_[source]#

Return True iff the object is contained in the registry or is a component of a registered object.

@@ -13285,12 +13391,12 @@

Attributes

numpy.bool

Raises:
-

RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

+

RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

Notes

Objects registered with the server are immune to deletion until @@ -13298,13 +13404,13 @@

Attributes -
-isocalendar()[source]#
+
+isocalendar()[source]#

-
-register(user_defined_name)[source]#
+
+register(user_defined_name)[source]#

Register this Datetime object and underlying components with the Arkouda server

Parameters:
@@ -13318,12 +13424,12 @@

AttributesReturn type: -

Datetime

+

Datetime

Raises:
  • TypeError – Raised if user_defined_name is not a str

  • -
  • RegistrationError – If the server was unable to register the Datetimes with the user_defined_name

  • +
  • RegistrationError – If the server was unable to register the Datetimes with the user_defined_name

@@ -13337,14 +13443,14 @@

Attributes -
-sum()[source]#
+
+sum()[source]#

Return the sum of all elements in the array.

-
-to_pandas()[source]#
+
+to_pandas()[source]#

Convert array to a pandas DatetimeIndex. Note: if the array size exceeds client.maxTransferBytes, a RuntimeError is raised.

@@ -13354,19 +13460,19 @@

Attributes -
-unregister()[source]#
+
+unregister()[source]#

Unregister this Datetime object in the arkouda server which was previously registered using register() and/or attached to using attach()

Raises:
-

RegistrationError – If the object is already unregistered or if there is a server error +

RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

Notes

Objects registered with the server are immune to deletion until @@ -13441,7 +13547,7 @@

Attributes
Parameters:
    -
  • values (pdarray or Strings) – The array of field values. If (u)int64, the values are used as-is for the +

  • values (pdarray or Strings) – The array of field values. If (u)int64, the values are used as-is for the binary representation of fields. If Strings, the values are converted to binary according to the mapping defined by the names and MSB_left arguments.

  • @@ -13578,7 +13684,7 @@

    Attributes

    See also

    -

    uniform

    +

    uniform

Examples

>>> rng = ak.random.default_rng()
@@ -13663,7 +13769,7 @@ 

Attributes
Parameters:
    -
  • keys ((list of) pdarray, Strings, or Categorical) – The array to group by value, or if list, the column arrays to group by row

  • +
  • keys ((list of) pdarray, Strings, or Categorical) – The array to group by value, or if list, the column arrays to group by row

  • assume_sorted (bool) – If True, assume keys is already sorted (Default: False)

@@ -13707,7 +13813,7 @@

Attributes
Type:
-

(list of) pdarray, Strings, or Categorical

+

(list of) pdarray, Strings, or Categorical

@@ -14089,7 +14195,7 @@

Attributes

GroupBy

Raises:
-

RegistrationError – if user_defined_name is not registered

+

RegistrationError – if user_defined_name is not registered

@@ -14105,7 +14211,7 @@

Attributes
Parameters:
    -
  • values (pdarray, Strings) – The values to put in each group’s segment

  • +
  • values (pdarray, Strings) – The values to put in each group’s segment

  • permute (bool) – If True (default), permute broadcast values back to the ordering of the original array on which GroupBy was called. If False, the broadcast values are grouped by value.

  • @@ -14115,7 +14221,7 @@

    Attributes

    The broadcasted values

Return type:
-

pdarray, Strings

+

pdarray, Strings

Raises:
    @@ -14245,7 +14351,7 @@

    Attributes

    bool

Raises:
-

RegistrationError – Raised if there’s a server-side error or a mismatch of registered components

+

RegistrationError – Raised if there’s a server-side error or a mismatch of registered components

@@ -14580,7 +14686,7 @@

AttributesRaises:
@@ -14594,8 +14700,8 @@

Attributes -
-size() Tuple[groupable, arkouda.pdarrayclass.pdarray][source]#
+
+size() Tuple[groupable, arkouda.pdarrayclass.pdarray][source]#

Count the number of elements in each group, i.e. the number of times each key appears. This counts the total number of rows (including NaN values).

@@ -14785,7 +14891,7 @@

Attributes
Raises:
-

RegistrationError – If the object is already unregistered or if there is a server error +

RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

@@ -14810,7 +14916,7 @@

AttributesRaises:
@@ -14883,21 +14989,21 @@

Attributes -
-class arkouda.GroupBy(keys: groupable | None = None, assume_sorted: bool = False, dropna: bool = True, **kwargs)[source]#
+
+class arkouda.GroupBy(keys: groupable | None = None, assume_sorted: bool = False, dropna: bool = True, **kwargs)[source]#

Group an array or list of arrays by value, usually in preparation for aggregating the within-group values of another array.

Parameters:
    -
  • keys ((list of) pdarray, Strings, or Categorical) – The array to group by value, or if list, the column arrays to group by row

  • +
  • keys ((list of) pdarray, Strings, or Categorical) – The array to group by value, or if list, the column arrays to group by row

  • assume_sorted (bool) – If True, assume keys is already sorted (Default: False)

-
-nkeys#
+
+nkeys#

The number of key arrays (columns)

Type:
@@ -14907,8 +15013,8 @@

Attributes -
-size[source]#
+
+size[source]#

The length of the input array(s), i.e. number of rows

Type:
@@ -14918,8 +15024,8 @@

Attributes -
-permutation#
+
+permutation#

The permutation that sorts the keys array(s) by value (row)

Type:
@@ -14929,19 +15035,19 @@

Attributes -
-unique_keys#
+
+unique_keys#

The unique values of the keys array(s), in grouped order

Type:
-

(list of) pdarray, Strings, or Categorical

+

(list of) pdarray, Strings, or Categorical

-
-ngroups#
+
+ngroups#

The length of the unique_keys array(s), i.e. number of groups

Type:
@@ -14951,8 +15057,8 @@

Attributes -
-segments#
+
+segments#

The start index of each group in the grouped array(s)

Type:
@@ -14962,8 +15068,8 @@

Attributes -
-logger#
+
+logger#

Used for all logging operations

Type:
@@ -14973,8 +15079,8 @@

Attributes -
-dropna#
+
+dropna#

If True, and the groupby keys contain NaN values, the NaN values together with the corresponding row will be dropped. Otherwise, the rows corresponding to NaN values will be kept.

@@ -15006,18 +15112,18 @@

Attributes -
-Reductions#
+
+Reductions#

-
-objType = 'GroupBy'#
+
+objType = 'GroupBy'#
-
-AND(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#
+
+AND(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#

Bitwise AND of values in each segment.

Using the permutation stored in the GroupBy instance, group another array of values and perform a bitwise AND reduction on @@ -15046,8 +15152,8 @@

Attributes -
-OR(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#
+
+OR(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#

Bitwise OR of values in each segment.

Using the permutation stored in the GroupBy instance, group another array of values and perform a bitwise OR reduction on @@ -15076,8 +15182,8 @@

Attributes -
-XOR(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#
+
+XOR(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#

Bitwise XOR of values in each segment.

Using the permutation stored in the GroupBy instance, group another array of values and perform a bitwise XOR reduction on @@ -15106,8 +15212,8 @@

Attributes -
-aggregate(values: groupable, operator: str, skipna: bool = True, ddof: arkouda.dtypes.int_scalars = 1) Tuple[groupable, groupable][source]#
+
+aggregate(values: groupable, operator: str, skipna: bool = True, ddof: arkouda.dtypes.int_scalars = 1) Tuple[groupable, groupable][source]#

Using the permutation stored in the GroupBy instance, group another array of values and apply a reduction to each group’s values.

@@ -15154,8 +15260,8 @@

Attributes -
-all(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#
+
+all(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#

Using the permutation stored in the GroupBy instance, group another array of values and perform an “and” reduction on each group.

@@ -15183,8 +15289,8 @@

Attributes -
-any(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#
+
+any(values: arkouda.pdarrayclass.pdarray) Tuple[arkouda.pdarrayclass.pdarray | List[arkouda.pdarrayclass.pdarray | arkouda.strings.Strings], arkouda.pdarrayclass.pdarray][source]#

Using the permutation stored in the GroupBy instance, group another array of values and perform an “or” reduction on each group.

@@ -15210,8 +15316,8 @@

Attributes -
-argmax(values: arkouda.pdarrayclass.pdarray) Tuple[groupable, arkouda.pdarrayclass.pdarray][source]#
+
+argmax(values: arkouda.pdarrayclass.pdarray) Tuple[groupable, arkouda.pdarrayclass.pdarray][source]#

Using the permutation stored in the GroupBy instance, group another array of values and return the location of the first maximum of each group’s values.

@@ -15255,8 +15361,8 @@

Attributes -
-argmin(values: arkouda.pdarrayclass.pdarray) Tuple[groupable, arkouda.pdarrayclass.pdarray][source]#
+
+argmin(values: arkouda.pdarrayclass.pdarray) Tuple[groupable, arkouda.pdarrayclass.pdarray][source]#

Using the permutation stored in the GroupBy instance, group another array of values and return the location of the first minimum of each group’s values.

@@ -15301,8 +15407,8 @@

Attributes -
-static attach(user_defined_name: str) GroupBy[source]#
+
+static attach(user_defined_name: str) GroupBy[source]#

Function to return a GroupBy object attached to the registered name in the arkouda server which was registered using register()

@@ -15316,7 +15422,7 @@

Attributes

GroupBy

Raises:
-

RegistrationError – if user_defined_name is not registered

+

RegistrationError – if user_defined_name is not registered

@@ -15326,13 +15432,13 @@

Attributes -
-broadcast(values: arkouda.pdarrayclass.pdarray | arkouda.strings.Strings, permute: bool = True) arkouda.pdarrayclass.pdarray | arkouda.strings.Strings[source]#
+
+broadcast(values: arkouda.pdarrayclass.pdarray | arkouda.strings.Strings, permute: bool = True) arkouda.pdarrayclass.pdarray | arkouda.strings.Strings[source]#

Fill each group’s segment with a constant value.

Parameters:
    -
  • values (pdarray, Strings) – The values to put in each group’s segment

  • +
  • values (pdarray, Strings) – The values to put in each group’s segment

  • permute (bool) – If True (default), permute broadcast values back to the ordering of the original array on which GroupBy was called. If False, the broadcast values are grouped by value.

  • @@ -15342,7 +15448,7 @@

    Attributes

    The broadcasted values

Return type:
-

pdarray, Strings

+

pdarray, Strings

Raises:

-

`) at this time.

+

`) at this time.

-
-to_cuda()[source]#
+
+to_cuda()[source]#

Convert the array to a Numba DeviceND array, transferring array data from the arkouda server to Python via ndarray. If the array exceeds a builtin size limit, a RuntimeError is raised.

@@ -39375,8 +39537,8 @@

Return Type

-
-to_hdf(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', file_type: str = 'distribute') str[source]#
+
+to_hdf(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', file_type: str = 'distribute') str[source]#

Save the pdarray to HDF5. The object can be saved to a collection of files or single file. :param prefix_path: Directory and filename prefix that all output files share @@ -39433,8 +39595,8 @@

Return Type

-
-to_list() List[source]#
+
+to_list() List[source]#

Convert the array to a list, transferring array data from the Arkouda server to client-side Python. Note: if the pdarray size exceeds client.maxTransferBytes, a RuntimeError is raised.

@@ -39476,8 +39638,8 @@

Return Type

-
-to_ndarray() numpy.ndarray[source]#
+
+to_ndarray() numpy.ndarray[source]#

Convert the array to a np.ndarray, transferring array data from the Arkouda server to client-side Python. Note: if the pdarray size exceeds client.maxTransferBytes, a RuntimeError is raised.

@@ -39504,7 +39666,7 @@

Return Type value, but proceed with caution.

Examples

>>> a = ak.arange(0, 5, 1)
@@ -39519,8 +39681,8 @@ 

Return Type

-
-to_parquet(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', compression: str | None = None) str[source]#
+
+to_parquet(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', compression: str | None = None) str[source]#

Save the pdarray to Parquet. The result is a collection of files, one file per locale of the arkouda server, where each filename starts with prefix_path. Each locale saves its chunk of the array to its @@ -39573,8 +39735,8 @@

Return Type

-
-transfer(hostname: str, port: arkouda.dtypes.int_scalars)[source]#
+
+transfer(hostname: str, port: arkouda.dtypes.int_scalars)[source]#

Sends a pdarray to a different Arkouda server

Parameters:
@@ -39607,8 +39769,8 @@

Return Type

-
-unregister() None[source]#
+
+unregister() None[source]#

Unregister a pdarray in the arkouda server which was previously registered using register() and/or attahced to using attach()

@@ -39621,7 +39783,7 @@

Return Type

Notes

Registered names/pdarrays in the server are immune to deletion until @@ -39638,8 +39800,8 @@

Return Type

-
-update_hdf(prefix_path: str, dataset: str = 'array', repack: bool = True)[source]#
+
+update_hdf(prefix_path: str, dataset: str = 'array', repack: bool = True)[source]#

Overwrite the dataset with the name provided with this pdarray. If the dataset does not exist it is added

@@ -39670,8 +39832,8 @@

Return Type

-
-value_counts()[source]#
+
+value_counts()[source]#

Count the occurrences of the unique values of self.

Returns:
@@ -39690,8 +39852,8 @@

Return Type

-
-var(ddof: arkouda.dtypes.int_scalars = 0) numpy.float64[source]#
+
+var(ddof: arkouda.dtypes.int_scalars = 0) numpy.float64[source]#

Compute the variance. See arkouda.var for details.

Parameters:
@@ -39716,8 +39878,8 @@

Return Type

-
-class arkouda.pdarray(name: str, mydtype: numpy.dtype | str, size: arkouda.dtypes.int_scalars, ndim: arkouda.dtypes.int_scalars, shape: Sequence[int], itemsize: arkouda.dtypes.int_scalars, max_bits: int | None = None)[source]#
+
+class arkouda.pdarray(name: str, mydtype: numpy.dtype | str, size: arkouda.dtypes.int_scalars, ndim: arkouda.dtypes.int_scalars, shape: Sequence[int], itemsize: arkouda.dtypes.int_scalars, max_bits: int | None = None)[source]#

The basic arkouda array class. This class contains only the attributies of the array; the data resides on the arkouda server. When a server operation results in a new array, arkouda @@ -39725,8 +39887,8 @@

Return Type the server. As such, the user should not initialize pdarray instances directly.

-
-name#
+
+name#

The server-side identifier for the array

Type:
@@ -39736,8 +39898,8 @@

Return Type

-
-dtype#
+
+dtype#

The element type of the array

Type:
@@ -39747,8 +39909,8 @@

Return Type

-
-size#
+
+size#

The number of elements in the array

Type:
@@ -39758,8 +39920,8 @@

Return Type

-
-ndim#
+
+ndim#

The rank of the array (currently only rank 1 arrays supported)

Type:
@@ -39769,8 +39931,8 @@

Return Type

-
-shape#
+
+shape#

A list or tuple containing the sizes of each dimension of the array

Type:
@@ -39780,8 +39942,8 @@

Return Type

-
-itemsize#
+
+itemsize#

The size in bytes of each element

Type:
@@ -39791,13 +39953,13 @@

Return Type

-
-property max_bits#
+
+property max_bits#
-
-property nbytes#
+
+property nbytes#

The size of the pdarray in bytes.

Returns:
@@ -39810,41 +39972,41 @@

Return Type

-
-BinOps#
+
+BinOps#
-
-OpEqOps#
+
+OpEqOps#
-
-objType = 'pdarray'#
+
+objType = 'pdarray'#
-
-all() numpy.bool_[source]#
+
+all() numpy.bool_[source]#

Return True iff all elements of the array evaluate to True.

-
-any() numpy.bool_[source]#
+
+any() numpy.bool_[source]#

Return True iff any element of the array evaluates to True.

-
-argmax() numpy.int64 | numpy.uint64[source]#
+
+argmax() numpy.int64 | numpy.uint64[source]#

Return the index of the first occurrence of the array max value.

-
-argmaxk(k: arkouda.dtypes.int_scalars) pdarray[source]#
+
+argmaxk(k: arkouda.dtypes.int_scalars) pdarray[source]#

Finds the indices corresponding to the maximum “k” values.

Parameters:
@@ -39863,14 +40025,14 @@

Return Type

-
-argmin() numpy.int64 | numpy.uint64[source]#
+
+argmin() numpy.int64 | numpy.uint64[source]#

Return the index of the first occurrence of the array min value

-
-argmink(k: arkouda.dtypes.int_scalars) pdarray[source]#
+
+argmink(k: arkouda.dtypes.int_scalars) pdarray[source]#

Compute the minimum “k” values.

Parameters:
@@ -39889,8 +40051,8 @@

Return Type

-
-astype(dtype) pdarray[source]#
+
+astype(dtype) pdarray[source]#

Cast values of pdarray to provided dtype

Parameters:
@@ -39908,8 +40070,8 @@

Return Type

-
-static attach(user_defined_name: str) pdarray[source]#
+
+static attach(user_defined_name: str) pdarray[source]#

class method to return a pdarray attached to the registered name in the arkouda server which was registered using register()

@@ -39929,7 +40091,7 @@

Return Type

Notes

Registered names/pdarrays in the server are immune to deletion @@ -39946,8 +40108,8 @@

Return Type

-
-bigint_to_uint_arrays() List[pdarray][source]#
+
+bigint_to_uint_arrays() List[pdarray][source]#

Creates a list of uint pdarrays from a bigint pdarray. The first item in return will be the highest 64 bits of the bigint pdarray and the last item will be the lowest 64 bits.

@@ -39982,14 +40144,14 @@

Return Type

-
-clz() pdarray[source]#
+
+clz() pdarray[source]#

Count the number of leading zeros in each element. See ak.clz.

-
-corr(y: pdarray) numpy.float64[source]#
+
+corr(y: pdarray) numpy.float64[source]#

Compute the correlation between self and y using pearson correlation coefficient.

Parameters:
@@ -40011,8 +40173,8 @@

Return Type

-
-cov(y: pdarray) numpy.float64[source]#
+
+cov(y: pdarray) numpy.float64[source]#

Compute the covariance between self and y.

Parameters:
@@ -40034,14 +40196,14 @@

Return Type

-
-ctz() pdarray[source]#
+
+ctz() pdarray[source]#

Count the number of trailing zeros in each element. See ak.ctz.

-
-fill(value: arkouda.dtypes.numeric_scalars) None[source]#
+
+fill(value: arkouda.dtypes.numeric_scalars) None[source]#

Fill the array (in place) with a constant value.

Parameters:
@@ -40054,8 +40216,8 @@

Return Type

-
-format_other(other) str[source]#
+
+format_other(other) str[source]#

Attempt to cast scalar other to the element dtype of this pdarray, and print the resulting value to a string (e.g. for sending to a server command). The user should not call this function directly.

@@ -40074,8 +40236,8 @@

Return Type

-
-info() str[source]#
+
+info() str[source]#

Returns a JSON formatted string containing information about all components of self

Parameters:
@@ -40091,8 +40253,8 @@

Return Type

-
-is_registered() numpy.bool_[source]#
+
+is_registered() numpy.bool_[source]#

Return True iff the object is contained in the registry

Parameters:
@@ -40116,8 +40278,8 @@

Return Type

-
-is_sorted() numpy.bool_[source]#
+
+is_sorted() numpy.bool_[source]#

Return True iff the array is monotonically non-decreasing.

Parameters:
@@ -40139,14 +40301,14 @@

Return Type

-
-max() arkouda.dtypes.numpy_scalars[source]#
+
+max() arkouda.dtypes.numpy_scalars[source]#

Return the maximum value of the array.

-
-maxk(k: arkouda.dtypes.int_scalars) pdarray[source]#
+
+maxk(k: arkouda.dtypes.int_scalars) pdarray[source]#

Compute the maximum “k” values.

Parameters:
@@ -40165,20 +40327,20 @@

Return Type

-
-mean() numpy.float64[source]#
+
+mean() numpy.float64[source]#

Return the mean of the array.

-
-min() arkouda.dtypes.numpy_scalars[source]#
+
+min() arkouda.dtypes.numpy_scalars[source]#

Return the minimum value of the array.

-
-mink(k: arkouda.dtypes.int_scalars) pdarray[source]#
+
+mink(k: arkouda.dtypes.int_scalars) pdarray[source]#

Compute the minimum “k” values.

Parameters:
@@ -40197,25 +40359,25 @@

Return Type

-
-opeq(other, op)[source]#
+
+opeq(other, op)[source]#
-
-parity() pdarray[source]#
+
+parity() pdarray[source]#

Find the parity (XOR of all bits) in each element. See ak.parity.

-
-popcount() pdarray[source]#
+
+popcount() pdarray[source]#

Find the population (number of bits set) in each element. See ak.popcount.

-
-pretty_print_info() None[source]#
+
+pretty_print_info() None[source]#

Prints information about all components of self in a human readable format

Parameters:
@@ -40228,15 +40390,15 @@

Return Type

-
-prod() numpy.float64[source]#
+
+prod() numpy.float64[source]#

Return the product of all elements in the array. Return value is always a np.float64 or np.int64.

-
-register(user_defined_name: str) pdarray[source]#
+
+register(user_defined_name: str) pdarray[source]#

Register this pdarray with a user defined name in the arkouda server so it can be attached to later using pdarray.attach() This is an in-place operation, registering a pdarray more than once will @@ -40258,7 +40420,7 @@

Return Type
Raises:
@@ -40283,8 +40445,8 @@

Return Type

-
-reshape(*shape, order='row_major')[source]#
+
+reshape(*shape, order='row_major')[source]#

Gives a new shape to an array without changing its data.

Parameters:
@@ -40307,20 +40469,20 @@

Return Type

-
-rotl(other) pdarray[source]#
+
+rotl(other) pdarray[source]#

Rotate bits left by <other>.

-
-rotr(other) pdarray[source]#
+
+rotr(other) pdarray[source]#

Rotate bits right by <other>.

-
-save(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', compression: str | None = None, file_format: str = 'HDF5', file_type: str = 'distribute') str[source]#
+
+save(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', compression: str | None = None, file_format: str = 'HDF5', file_type: str = 'distribute') str[source]#

DEPRECATED Save the pdarray to HDF5 or Parquet. The result is a collection of files, one file per locale of the arkouda server, where each filename starts @@ -40398,8 +40560,8 @@

Return Type

-
-slice_bits(low, high) pdarray[source]#
+
+slice_bits(low, high) pdarray[source]#

Returns a pdarray containing only bits from low to high of self.

This is zero indexed and inclusive on both ends, so slicing the bottom 64 bits is pda.slice_bits(0, 63)

@@ -40434,8 +40596,8 @@

Return Type

-
-std(ddof: arkouda.dtypes.int_scalars = 0) numpy.float64[source]#
+
+std(ddof: arkouda.dtypes.int_scalars = 0) numpy.float64[source]#

Compute the standard deviation. See arkouda.std for details.

Parameters:
@@ -40457,14 +40619,14 @@

Return Type

-
-sum() arkouda.dtypes.numeric_and_bool_scalars[source]#
+
+sum() arkouda.dtypes.numeric_and_bool_scalars[source]#

Return the sum of all elements in the array.

-
-to_csv(prefix_path: str, dataset: str = 'array', col_delim: str = ',', overwrite: bool = False)[source]#
+
+to_csv(prefix_path: str, dataset: str = 'array', col_delim: str = ',', overwrite: bool = False)[source]#

Write pdarray to CSV file(s). File will contain a single column with the pdarray data. All CSV Files written by Arkouda include a header denoting data types of the columns.

@@ -40500,12 +40662,12 @@

Return Type
  • All CSV files must delimit rows using newline (`

  • -

    `) at this time.

    +

    `) at this time.

    -
    -to_cuda()[source]#
    +
    +to_cuda()[source]#

    Convert the array to a Numba DeviceND array, transferring array data from the arkouda server to Python via ndarray. If the array exceeds a builtin size limit, a RuntimeError is raised.

    @@ -40550,8 +40712,8 @@

    Return Type

    -
    -to_hdf(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', file_type: str = 'distribute') str[source]#
    +
    +to_hdf(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', file_type: str = 'distribute') str[source]#

    Save the pdarray to HDF5. The object can be saved to a collection of files or single file. :param prefix_path: Directory and filename prefix that all output files share @@ -40608,8 +40770,8 @@

    Return Type

    -
    -to_list() List[source]#
    +
    +to_list() List[source]#

    Convert the array to a list, transferring array data from the Arkouda server to client-side Python. Note: if the pdarray size exceeds client.maxTransferBytes, a RuntimeError is raised.

    @@ -40651,8 +40813,8 @@

    Return Type

    -
    -to_ndarray() numpy.ndarray[source]#
    +
    +to_ndarray() numpy.ndarray[source]#

    Convert the array to a np.ndarray, transferring array data from the Arkouda server to client-side Python. Note: if the pdarray size exceeds client.maxTransferBytes, a RuntimeError is raised.

    @@ -40679,7 +40841,7 @@

    Return Type value, but proceed with caution.

    Examples

    >>> a = ak.arange(0, 5, 1)
    @@ -40694,8 +40856,8 @@ 

    Return Type

    -
    -to_parquet(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', compression: str | None = None) str[source]#
    +
    +to_parquet(prefix_path: str, dataset: str = 'array', mode: str = 'truncate', compression: str | None = None) str[source]#

    Save the pdarray to Parquet. The result is a collection of files, one file per locale of the arkouda server, where each filename starts with prefix_path. Each locale saves its chunk of the array to its @@ -40748,8 +40910,8 @@

    Return Type

    -
    -transfer(hostname: str, port: arkouda.dtypes.int_scalars)[source]#
    +
    +transfer(hostname: str, port: arkouda.dtypes.int_scalars)[source]#

    Sends a pdarray to a different Arkouda server

    Parameters:
    @@ -40782,8 +40944,8 @@

    Return Type

    -
    -unregister() None[source]#
    +
    +unregister() None[source]#

    Unregister a pdarray in the arkouda server which was previously registered using register() and/or attahced to using attach()

    @@ -40796,7 +40958,7 @@

    Return Type

    Notes

    Registered names/pdarrays in the server are immune to deletion until @@ -40813,8 +40975,8 @@

    Return Type

    -
    -update_hdf(prefix_path: str, dataset: str = 'array', repack: bool = True)[source]#
    +
    +update_hdf(prefix_path: str, dataset: str = 'array', repack: bool = True)[source]#

    Overwrite the dataset with the name provided with this pdarray. If the dataset does not exist it is added

    @@ -40845,8 +41007,8 @@

    Return Type

    -
    -value_counts()[source]#
    +
    +value_counts()[source]#

    Count the occurrences of the unique values of self.

    Returns:
    @@ -40865,8 +41027,8 @@

    Return Type

    -
    -var(ddof: arkouda.dtypes.int_scalars = 0) numpy.float64[source]#
    +
    +var(ddof: arkouda.dtypes.int_scalars = 0) numpy.float64[source]#

    Compute the variance. See arkouda.var for details.

    Parameters:
    @@ -41170,8 +41332,8 @@

    Return Type

    -
    -arkouda.randint(low: arkouda.dtypes.numeric_scalars, high: arkouda.dtypes.numeric_scalars, size: arkouda.dtypes.int_scalars | Tuple[arkouda.dtypes.int_scalars, Ellipsis] = 1, dtype=akint64, seed: arkouda.dtypes.int_scalars = None) arkouda.pdarrayclass.pdarray[source]#
    +
    +arkouda.randint(low: arkouda.dtypes.numeric_scalars, high: arkouda.dtypes.numeric_scalars, size: arkouda.dtypes.int_scalars | Tuple[arkouda.dtypes.int_scalars, Ellipsis] = 1, dtype=akint64, seed: arkouda.dtypes.int_scalars = None) arkouda.pdarrayclass.pdarray[source]#

    Generate a pdarray of randomized int, float, or bool values in a specified range bounded by the low and high parameters.

    @@ -41249,7 +41411,7 @@

    Return Type

    The Strings object encapsulating a pdarray of random strings

    Return type:
    -

    Strings

    +

    Strings

    Raises:

    -class arkouda.index.Index(values: List | arkouda.pdarrayclass.pdarray | arkouda.Strings | arkouda.Categorical | pandas.Index | Index, name: str | None = None, allow_list=False, max_list_size=1000)[source]#
    +class arkouda.index.Index(values: List | arkouda.pdarrayclass.pdarray | arkouda.Strings | arkouda.Categorical | pandas.Index | Index, name: str | None = None, allow_list=False, max_list_size=1000)[source]#
    property index#
    @@ -332,7 +332,7 @@

    Classes#<
    Parameters:
    @@ -472,7 +472,7 @@

    Classes#<
    Raises:

    @@ -717,7 +717,7 @@

    Classes#< registered using register() and/or attached to using attach()

    Raises:
    -

    RegistrationError – If the object is already unregistered or if there is a server error +

    RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

    @@ -806,7 +806,7 @@

    Classes#<

    numpy.bool

    Raises:
    -

    RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

    +

    RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

    @@ -873,7 +873,7 @@

    Classes#<
    Raises:
    @@ -963,7 +963,7 @@

    Classes#< registered using register() and/or attached to using attach()

    Raises:
    -

    RegistrationError – If the object is already unregistered or if there is a server error +

    RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

    diff --git a/autoapi/arkouda/io/index.html b/autoapi/arkouda/io/index.html index e834610bad..41094c8272 100644 --- a/autoapi/arkouda/io/index.html +++ b/autoapi/arkouda/io/index.html @@ -581,7 +581,7 @@

    Functions

    The pdarray or Strings that was previously saved

    Return type:
    -

    Union[pdarray, Strings]

    +

    Union[pdarray, Strings]

    Raises:
      @@ -643,7 +643,7 @@

      FunctionsReturn type: -

      Mapping[str, Union[pdarray, Strings, SegArray, Categorical]]

      +

      Mapping[str, Union[pdarray, Strings, SegArray, Categorical]]

      Raises:
        diff --git a/autoapi/arkouda/numeric/index.html b/autoapi/arkouda/numeric/index.html index 58969d04e5..69e0e26abf 100644 --- a/autoapi/arkouda/numeric/index.html +++ b/autoapi/arkouda/numeric/index.html @@ -675,7 +675,7 @@

        Functions
        Parameters:
          -
        • pda (pdarray or Strings) – The array of values to cast

        • +
        • pda (pdarray or Strings) – The array of values to cast

        • dt (np.dtype, type, or str) – The target dtype to cast values to

        • errors ({strict, ignore, return_validity}) –

          Controls how errors are handled when casting strings to a numeric type (ignored for casts from numeric types).

          @@ -995,7 +995,7 @@

          Functions
          Parameters:
            -
          • pda (Union[pdarray, Strings, Segarray, Categorical],) – List[Union[pdarray, Strings, Segarray, Categorical]]]

          • +
          • pda (Union[pdarray, Strings, Segarray, Categorical],) – List[Union[pdarray, Strings, Segarray, Categorical]]]

          • full (bool) – This is only used when a single pdarray is passed into hash By default, a 128-bit hash is computed and returned as two int64 arrays. If full=False, then a 64-bit hash @@ -1644,8 +1644,8 @@

            FunctionsParameters:
            Returns:
            diff --git a/autoapi/arkouda/pdarraycreation/index.html b/autoapi/arkouda/pdarraycreation/index.html index 461b710a64..1eabf0289d 100644 --- a/autoapi/arkouda/pdarraycreation/index.html +++ b/autoapi/arkouda/pdarraycreation/index.html @@ -423,7 +423,7 @@

            FunctionsReturn type: -

            pdarray or Strings

            +

            pdarray or Strings

            Raises:
              @@ -533,7 +533,7 @@

              FunctionsReturn type: -

              Union[pdarray,Strings]

              +

              Union[pdarray,Strings]

              Raises:
              Return type:
              -

              pdarray or Strings

              +

              pdarray or Strings

              Raises:

              TypeError – Raised if the supplied dtype is not supported or if the size @@ -888,7 +888,7 @@

              Functions

              The Strings object encapsulating a pdarray of random strings

              Return type:
              -

              Strings

              +

              Strings

              Raises:
              Return type:
              -

              Strings

              +

              Strings

              Raises:

              ValueError – Raised if minlen < 0, maxlen < minlen, or size < 0

              diff --git a/autoapi/arkouda/pdarraysetops/index.html b/autoapi/arkouda/pdarraysetops/index.html index 72edd97895..43eb024fd2 100644 --- a/autoapi/arkouda/pdarraysetops/index.html +++ b/autoapi/arkouda/pdarraysetops/index.html @@ -326,7 +326,7 @@

              Functions
              Parameters:
                -
              • arrays (Sequence[Union[pdarray,Strings,Categorical]]) – The arrays to concatenate. Must all have same dtype.

              • +
              • arrays (Sequence[Union[pdarray,Strings,Categorical]]) – The arrays to concatenate. Must all have same dtype.

              • ordered (bool) – If True (default), the arrays will be appended in the order given. If False, array data may be interleaved in blocks, which can greatly improve performance but @@ -338,7 +338,7 @@

                FunctionsReturn type: -

                Union[pdarray,Strings,Categorical]

                +

                Union[pdarray,Strings,Categorical]

                Raises:
                  @@ -376,8 +376,8 @@

                  Functions
                  Parameters:
                    -
                  • a (list of pdarrays, pdarray, Strings, or Categorical) – Rows are elements for which to test membership in b

                  • -
                  • b (list of pdarrays, pdarray, Strings, or Categorical) – Rows are elements of the set in which to test membership

                  • +
                  • a (list of pdarrays, pdarray, Strings, or Categorical) – Rows are elements for which to test membership in b

                  • +
                  • b (list of pdarrays, pdarray, Strings, or Categorical) – Rows are elements of the set in which to test membership

                  • assume_unique (bool) – If true, assume rows of a and b are each unique and sorted. By default, sort and unique them explicitly.

                  • symmetric (bool) – Return in1d(pda1, pda2), in1d(pda2, pda1) when pda1 and 2 are single items.

                  • @@ -409,8 +409,8 @@

                    Return Type
                    Parameters:
                    Returns:
                    @@ -437,7 +437,7 @@

                    Return Type
                    Parameters:
                      -
                    • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                    • +
                    • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                    • pda2 (pdarray/List) – Input array/sequence of groupable objects

                    • assume_unique (bool) – If True, the input arrays are both assumed to be unique, which can speed up the calculation. Default is False.

                    • @@ -488,7 +488,7 @@

                      Return Type
                      Parameters:
                        -
                      • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                      • +
                      • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                      • pda2 (pdarray/List) – Input array/sequence of groupable objects

                      • assume_unique (bool) – If True, the input arrays are both assumed to be unique, which can speed up the calculation. Default is False.

                      • @@ -540,7 +540,7 @@

                        Return Type
                        Parameters:
                          -
                        • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                        • +
                        • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                        • pda2 (pdarray/List) – Input array/sequence of groupable objects

                        • assume_unique (bool) – If True, the input arrays are both assumed to be unique, which can speed up the calculation. Default is False.

                        • @@ -589,7 +589,7 @@

                          Return Type
                          Parameters:
                          diff --git a/autoapi/arkouda/segarray/index.html b/autoapi/arkouda/segarray/index.html index 8ebfeedabe..28a6069b32 100644 --- a/autoapi/arkouda/segarray/index.html +++ b/autoapi/arkouda/segarray/index.html @@ -517,7 +517,7 @@

                          Attributes
                          Parameters:
                          -

                          m (list of pdarray or Strings) – List of columns, the rows of which will form the sub-arrays of the output

                          +

                          m (list of pdarray or Strings) – List of columns, the rows of which will form the sub-arrays of the output

                          Returns:

                          Array of rows of input

                          @@ -830,7 +830,7 @@

                          Attributes

                          SegArray

                          Raises:
                          -

                          RegistrationError – Raised if the server could not register the SegArray object

                          +

                          RegistrationError – Raised if the server could not register the SegArray object

                          Notes

                          diff --git a/autoapi/arkouda/series/index.html b/autoapi/arkouda/series/index.html index e2201d0613..459419f90c 100644 --- a/autoapi/arkouda/series/index.html +++ b/autoapi/arkouda/series/index.html @@ -307,7 +307,7 @@

                          Classes#<
                          Parameters:
                          @@ -379,7 +379,7 @@

                          Classes#<

                          Accesses entries of a Series by label

                          Parameters:
                          -

                          key (pdarray, Strings, Series, list, supported_scalars) – The key or container of keys to access entries for

                          +

                          key (pdarray, Strings, Series, list, supported_scalars) – The key or container of keys to access entries for

                          @@ -511,7 +511,7 @@

                          Classes#<

                          numpy.bool

                          Raises:
                          -

                          RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

                          +

                          RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

                          @@ -762,7 +762,7 @@

                          Input#<
                          Raises:
                          • TypeError – Raised if user_defined_name is not a str

                          • -
                          • RegistrationError – If the server was unable to register the Series with the user_defined_name

                          • +
                          • RegistrationError – If the server was unable to register the Series with the user_defined_name

                          @@ -831,6 +831,62 @@

                          Input#< to_list() list[source]#
                          +
                          +
                          +to_markdown(mode='wt', index=True, tablefmt='grid', storage_options=None, **kwargs)[source]#
                          +

                          Print Series in Markdown-friendly format.

                          +
                          +
                          Parameters:
                          +
                            +
                          • mode (str, optional) – Mode in which file is opened, “wt” by default.

                          • +
                          • index (bool, optional, default True) – Add index (row) labels.

                          • +
                          • tablefmt (str = "grid") – Table format to call from tablulate: +https://pypi.org/project/tabulate/

                          • +
                          • storage_options (dict, optional) – Extra options that make sense for a particular storage connection, +e.g. host, port, username, password, etc., if using a URL that will be parsed by fsspec, +e.g., starting “s3://”, “gcs://”. +An error will be raised if providing this argument with a non-fsspec URL. +See the fsspec and backend storage implementation docs for the set +of allowed keys and values.

                          • +
                          • **kwargs – These parameters will be passed to tabulate.

                          • +
                          +
                          +
                          +
                          +

                          Note

                          +

                          This function should only be called on small Series as it calls pandas.Series.to_markdown: +https://pandas.pydata.org/docs/reference/api/pandas.Series.to_markdown.html

                          +
                          +

                          Examples

                          +
                          >>> import arkouda as ak
                          +>>> ak.connect()
                          +>>> s = ak.Series(["elk", "pig", "dog", "quetzal"], name="animal")
                          +>>> print(s.to_markdown())
                          +|    | animal   |
                          +|---:|:---------|
                          +|  0 | elk      |
                          +|  1 | pig      |
                          +|  2 | dog      |
                          +|  3 | quetzal  |
                          +
                          +
                          +

                          Output markdown with a tabulate option.

                          +
                          >>> print(s.to_markdown(tablefmt="grid"))
                          ++----+----------+
                          +|    | animal   |
                          ++====+==========+
                          +|  0 | elk      |
                          ++----+----------+
                          +|  1 | pig      |
                          ++----+----------+
                          +|  2 | dog      |
                          ++----+----------+
                          +|  3 | quetzal  |
                          ++----+----------+
                          +
                          +
                          +
                          +
                          to_pandas() pandas.Series[source]#
                          @@ -858,7 +914,7 @@

                          Input#< registered using register() and/or attached to using attach()

                          Raises:
                          -

                          RegistrationError – If the object is already unregistered or if there is a server error +

                          RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

                          @@ -878,7 +934,7 @@

                          Input#< Also converts list and tuple arguments into pdarrays.

                          Parameters:
                          -

                          key (Series, pdarray, Strings, Categorical, List, supported_scalars) – The key or container of keys that might be used to index into the Series.

                          +

                          key (Series, pdarray, Strings, Categorical, List, supported_scalars) – The key or container of keys that might be used to index into the Series.

                          Return type:

                          The validated key(s), with lists and tuples converted to pdarrays

                          @@ -902,7 +958,7 @@

                          Input#< Also converts list and tuple arguments into pdarrays.

                          Parameters:
                          -

                          val (pdarray, Strings, list, supported_scalars) – The value or container of values that might be assigned into the Series.

                          +

                          val (pdarray, Strings, list, supported_scalars) – The value or container of values that might be assigned into the Series.

                          Return type:

                          The validated value, with lists converted to pdarrays

                          @@ -1024,6 +1080,7 @@

                          Input#<
                        • Series.tail()
                        • Series.to_dataframe()
                        • Series.to_list()
                        • +
                        • Series.to_markdown()
                        • Series.to_pandas()
                        • Series.topn()
                        • Series.unregister()
                        • diff --git a/autoapi/arkouda/sorting/index.html b/autoapi/arkouda/sorting/index.html index 2ab8986d7f..c2555bfbb7 100644 --- a/autoapi/arkouda/sorting/index.html +++ b/autoapi/arkouda/sorting/index.html @@ -312,7 +312,7 @@

                          Functions
                          Parameters:
                          -

                          pda (pdarray or Strings or Categorical) – The array to sort (int64, uint64, or float64)

                          +

                          pda (pdarray or Strings or Categorical) – The array to sort (int64, uint64, or float64)

                          Returns:

                          The indices such that pda[indices] is sorted

                          @@ -348,7 +348,7 @@

                          Functions
                          Parameters:
                          -

                          arrays (Sequence[Union[Strings, pdarray, Categorical]]) – The columns (int64, uint64, float64, Strings, or Categorical) to sort by row

                          +

                          arrays (Sequence[Union[Strings, pdarray, Categorical]]) – The columns (int64, uint64, float64, Strings, or Categorical) to sort by row

                          Returns:

                          The indices that permute the rows to grouped order

                          diff --git a/autoapi/arkouda/strings/index.html b/autoapi/arkouda/strings/index.html index 1320aa4315..456b36e4e5 100644 --- a/autoapi/arkouda/strings/index.html +++ b/autoapi/arkouda/strings/index.html @@ -1513,7 +1513,7 @@

                          Classes#<
                          Raises:
                          diff --git a/autoapi/arkouda/timeclass/index.html b/autoapi/arkouda/timeclass/index.html index 6c4a9f6ea4..50e69584ec 100644 --- a/autoapi/arkouda/timeclass/index.html +++ b/autoapi/arkouda/timeclass/index.html @@ -495,7 +495,7 @@

                          Functions

                          numpy.bool

                          Raises:
                          -

                          RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

                          +

                          RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

                          @@ -533,7 +533,7 @@

                          FunctionsRaises:

                          @@ -570,7 +570,7 @@

                          Functions
                          Raises:
                          -

                          RegistrationError – If the object is already unregistered or if there is a server error +

                          RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

                          @@ -702,7 +702,7 @@

                          Functions

                          numpy.bool

                        Raises:
                        -

                        RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

                        +

                        RegistrationError – Raised if there’s a server-side error or a mis-match of registered components

                        @@ -735,7 +735,7 @@

                        FunctionsRaises:
                        @@ -783,7 +783,7 @@

                        Functions
                        Raises:
                        -

                        RegistrationError – If the object is already unregistered or if there is a server error +

                        RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

                        diff --git a/file_io/CSV.html b/file_io/CSV.html index 213f6b9b20..3a1b20f0d7 100644 --- a/file_io/CSV.html +++ b/file_io/CSV.html @@ -346,13 +346,13 @@

                        API Reference

                        pdarray#

                        Strings#

                        diff --git a/file_io/HDF5.html b/file_io/HDF5.html index c63a56e7ec..b8dbe686af 100644 --- a/file_io/HDF5.html +++ b/file_io/HDF5.html @@ -685,8 +685,8 @@

                        API Reference

                        pdarray#

                        @@ -707,8 +707,8 @@

                        DataFrame

                        Strings#

                        diff --git a/file_io/PARQUET.html b/file_io/PARQUET.html index 43fc7198f7..6554d2e240 100644 --- a/file_io/PARQUET.html +++ b/file_io/PARQUET.html @@ -333,8 +333,8 @@

                        API Reference

                        pdarray#

                        @@ -347,7 +347,7 @@

                        Index#<

                        DataFrame#

                        @@ -355,8 +355,8 @@

                        DataFrame

                        Strings#

                        diff --git a/genindex.html b/genindex.html index 6cce23f415..25c3f37e24 100644 --- a/genindex.html +++ b/genindex.html @@ -294,7 +294,7 @@

                        A

                      • abs() (arkouda.timeclass.Timedelta method)
                      • -
                      • aggregate() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                      • aggregate() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                      • -
                      • all() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                      • all() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                      • -
                      • AND() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                      • AND() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                      • -
                      • any() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                      • any() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                      • -
                      • arange() (in module arkouda), [1], [2], [3], [4], [5] +
                      • arange() (in module arkouda), [1], [2], [3], [4], [5]
                      • -
                      • argmax() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                      • argmax() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                      • -
                      • argmaxk() (arkouda.pdarray method), [1], [2], [3], [4], [5] +
                      • argmaxk() (arkouda.pdarray method), [1], [2], [3], [4], [5]
                      • -
                      • argmin() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                      • argmin() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                      • -
                      • argmink() (arkouda.pdarray method), [1], [2], [3], [4], [5] +
                      • argmink() (arkouda.pdarray method), [1], [2], [3], [4], [5]
                      • -
                      • array() (in module arkouda), [1], [2], [3] +
                      • array() (in module arkouda), [1], [2], [3]
                        • (in module arkouda.pdarraycreation) @@ -974,12 +974,12 @@

                          A

                        • asinh() (in module arkouda.array_api._elementwise_functions)
                        • -
                        • astype() (arkouda.pdarray method), [1], [2], [3], [4] +
                        • astype() (arkouda.pdarray method), [1], [2], [3], [4]
                        • -
                        • bigint (in module arkouda), [1] +
                        • bigint (in module arkouda), [1]
                        • -
                        • bigint_to_uint_arrays() (arkouda.pdarray method), [1], [2], [3], [4] +
                        • bigint_to_uint_arrays() (arkouda.pdarray method), [1], [2], [3], [4]
                          • (arkouda.pdarrayclass.pdarray method) @@ -1079,11 +1079,11 @@

                            B

                          • -
                          • bitType (in module arkouda), [1] +
                          • bitType (in module arkouda), [1]
                          • -
                          • broadcast() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                          • broadcast() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                          • -
                          • build_from_components() (arkouda.GroupBy static method), [1], [2], [3], [4], [5] +
                          • build_from_components() (arkouda.GroupBy static method), [1], [2], [3], [4], [5]
                            • (arkouda.groupbyclass.GroupBy static method) @@ -1180,7 +1180,7 @@

                              B

                              C

                                -
                              • minute (arkouda.Datetime property), [1], [2] +
                              • minute (arkouda.Datetime property), [1], [2]
                              • -
                              • mode() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                              • mode() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                              • -
                              • month (arkouda.Datetime property), [1], [2] +
                              • month (arkouda.Datetime property), [1], [2]
                              • -
                              • most_common() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                              • most_common() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                                • (arkouda.groupbyclass.GroupBy method) @@ -3275,7 +3275,7 @@

                                  M

                                  N

                                  • negative() (in module arkouda.array_api._elementwise_functions)
                                  • -
                                  • ngroups (arkouda.GroupBy attribute), [1], [2], [3], [4], [5] +
                                  • ngroups (arkouda.GroupBy attribute), [1], [2], [3], [4], [5]
                                  • -
                                  • nkeys (arkouda.GroupBy attribute), [1], [2], [3], [4], [5] +
                                  • nkeys (arkouda.GroupBy attribute), [1], [2], [3], [4], [5]
                                  • -
                                  • nunique() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                                  • nunique() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                                  • -
                                  • ones() (in module arkouda), [1], [2], [3] +
                                  • ones() (in module arkouda), [1], [2], [3]
                                  • -
                                  • OpEqOps (arkouda.pdarray attribute), [1], [2], [3], [4] +
                                  • OpEqOps (arkouda.pdarray attribute), [1], [2], [3], [4]
                                  • -
                                  • OR() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                                  • OR() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                                    • (arkouda.groupbyclass.GroupBy method) @@ -3501,7 +3501,7 @@

                                      O

                                      P

                                        -
                                      • XOR() (arkouda.GroupBy method), [1], [2], [3], [4], [5] +
                                      • XOR() (arkouda.GroupBy method), [1], [2], [3], [4], [5]
                                        • (arkouda.groupbyclass.GroupBy method) @@ -5329,7 +5339,7 @@

                                          X

                                          Y

                                            -
                                          • year (arkouda.Datetime property), [1], [2] +
                                          • year (arkouda.Datetime property), [1], [2]
                                          • -
                                          • zeros() (in module arkouda), [1], [2], [3] +
                                          • zeros() (in module arkouda), [1], [2], [3]
                                            • (in module arkouda.array_api._creation_functions) diff --git a/objects.inv b/objects.inv index 4b74df6144d7ac24f85ef79d28f5940485890152..26e60ceaaab7023fdef4029f6445520d549784db 100644 GIT binary patch delta 13372 zcmV-CG{eiFYQt)fcYn!OcS;sJfh61zd*e?v;`?kDU231hzq$o|2;Tja5u(BIwa z+3z&+$@}aj4}9N|NHjo^1^v|y1To*e}BBXbS@wNy1RPdNZ-xf z{rMQMM+$<6b@&_y8A3Kq-StmO-ngh2xLL+zi_BdTCdnSH*rO4t*|VDwF6!oaN}r3I z=!yIJIx&%_ISDiRj|n33X=orGKmYwGcn96=pT((9QUg1(7uP5!4RbM%ofm&mRtJ*5 z#6Bhq7$cxrZhs7k{L*C3Srn0%(>T(5nId78h+tpnGtGYzFOSo1mC}`+d2y7HbVV{` z$=Z+>aT>b0(VNT`X&gE!$%`~{!fa^Sr~c_& z!n&`Ei~AgqJ4!sF$vu>Ee-$((K8ATDVY=y(WjnYKG18fgl;`YIYJkoqpyrzmUs3a$ zda-YT5%IJU`w#wVpAO`-+@(?0Lupzh9K(#~^sxj*B0qbh`HP7;WmDbev=K$W!Dm@5 zd$(m87k`Nc=S0GJaWjoV{pnPKq0!vez&&XH_gg{qSMizY2>`D%VL=w z7P(t?-DdBbuv(n2og}4E?&uZQGg-%{JN{y*BY!C>Be~P>Vt`0lOOv@PjlSVb_H8q= z3`vxmmN)e4$y%1+><&>E$j$r{isclmhNX9nT2=}ZnzbK~ArZ(d9N^8-0Z zXL7(ub2({jhO6^xtoiy?5FMkACR;pI8WUuTj(?|=dwy%M3lXu2Iy1@ z(tmIC&Oa$(-G0M)UOSN+>R2l){Q4^x4Avb?T=G8h_W5r%nMABAmeLqGmilX2XF-4B z$UzJKXhdrEjgK)uui@`JKR6eH+$3RRaShJ=K*kAJ-`nrZ2UQmIZk>rC5}-LBoX?Mh z94|ID#fyU?jI;)p^Mknr#pi=2rX*_<>3=lU$n^W#$m z%V~2&fA%;(78h~Mf<`GE+-Mt_w7aTERA zI-g5$m_h2{Tw+}8xdGuTd^#+lWg+#_I3sL|?CZVfp_mo~6hk`_)1pGNI-U!wV;D!( z5-*%1tdNl#q4G*tAN8C1!?`fiF%}8yG~U^T*>)hdtq67A??}u@5;meDzSDRGX;`Ho z^0j~7KenBR2KpF)PByFX8h_*y06E2)eF}o(4F3dT^Iv@uukd?OJ_U7RCwD?6i6PL?FiP_NQb z*fiRYLo-I>D&R!?(*$O)BBJ~Yqad4I#{M27gse9rV`D&IY&J*nesZ2LVbfTBF3$W$3o%y*GNl?&#Bz04JaL1MLao-xh&_!I*d_jqcTN?{3y{YS)*kIzJE$UQOu`L zZDE6ZRAms(p@6dEu9|A`dY@@bE%gsXk~!*Kw^vSpVuB4Dpd`L%Rg#WDxt2_iwWXap zt#G3QN<(aI9QBrc8`8?vdY$XL)iGii&c$ZroiBno1&vVCk&=O*&6MKRhE1`>ppgUXPhzv&=g7!8d!zz)cy>F8ikomofTphM|X zkS$mrf->z|`V@oyr4Pb)G98XtFVO`Vbrm;p^i&Q$%e_5LAnzVY^a7LI#c$l-k*>I7 zdgPINlM4wPEfK5vp7(A0hYk-`A<}X^Q1{#Mm6NW|$bI~Vc!>wk4cruapzwh#%dk$J z1AUWJ30fmgqXP&1=XoKm3W>yuIHJ30_mYVg>pWNZ4O}>d;)_R z=!T$s4o^%OIe@3kizLFxnaxvcNa=UVXQ{7bZ3DBy`51061#wCbDb1`b`XnOB!%^1Jm84&L<`Zw*V@hGcxrm}2%<`mny13zxNYk1VF+~~= zQ<)zm%2T}~E+lWtshJvgQ(2cbNss z61Cx)!COyy;f))JUgXx3Q&Bgd7u)3IR8*dk2X;?RPlYfyh;$A@o}7M?V3HSC2XiLG z_;g8g9n859(?)OtVm=)RF#%r|*TKw%m@IKUozCRbp%9bPJkY{_90@T+lIXpZs341d zzZE_0TnN(4Vo{X{_#VY8ra?xxWCr>D=?y}gYlt0ITn?Wgb-9`ZxE^X zxyl0}St$*V6U)GQH9NlXO!;Z88x2P?L5v!#a%aa)5-avn4;yu zesX>!rszc^J~=-YV@5ZCl=+H?)^u_%ss;M7noiC|9SY_=|H=8;D5;5#tRJQ6R3AbTK8nui`~bqnM58&K&mrg(Yxp6Ijx+rT2FFFaIh`Lv@L0IG z2|>itIX#?zOHethr=6+~#fd)|rY}D|?0%uTV-nmX$nuc^sW%+kxSh=#>GhyZBE>zS zO)`y(*+gU^QYWMi7z*=Q1mob_VPIrAbmB(xNFbTwnmjPI8sXXFz79(sa0AeNeU9Tm z-&@jsZ6Zp*bn>cl+>>7fv74VB!&Gzelb$$@w1iK8d%~GVt5E*(8ds%JRk$h@!rxfH zhl7Fs$7VXf{>VTz4hLoqFyGtMz%S6IH~1Dpofu`B-^ZR_?Qe!q?Y+?KSK+2a)o9^W zBwKH1Ta)f9C~!z~71Vkj0;(-_T3}tNQ_q~xtrzp4{89p=W%eG#%QY}#q}s;RU=&Ev zg=X)6(w#}V0bNGO&X|kx=p^GGrAejw5KTJGGc`iK7z}w=4IKA=ut($9b~>f=|Ej)d z(H6HtI>NJlCg9BR;;fu`*@FgTkvo>ZlkFEz>GH+8k=2gP6a}D&Snol|Kg1sLACkt7 zjVulHC!hhFLzgF~5QnDf0D5`~+xwY@7ZRp_r1YH<33;q;Ae+@v_603mJH2CN@rrXd zGLbzr5k_0xghtdX6I|>SB}XHq7)qV=sC)fPBqZDLy1td9c34i2j{%xgsxd&5Zst_~ zjLUl(f$W|PPSfn7d3)*XORWy9XZEPr0kEpfCoAfa57pSX+h4XkDoVb3#oKP+qOzbTm#EGmEH+>eO?^#XwtRAE}+qD1>h}aD>5S^V=$Et zC7ec!De+M?T$u`Ab%~bg^?=i9`eyi79!P3@?t!d$P>fcup*Ir^Pd-3#>ovRswN5}^ zcaYa)y#uA?i3~qTT<>)U%8S8-^n?LL(# zllfVTfV|HS&nD%MdTbcrOHak4!wKP2Sx%#TemWU?sw`1C-oq)^3zXyBqljB+GWGd$(mih?hH5JwMo`@??j~ z4|k~B_5B_8^UMJ1xxp^yn~e!kobTF%-HkdL3wAiK3i+LGNwD6P{)jByoUV4(>9X>- z+txpcGrG$RNUCetcA=Vo4LF0{=?+~kyR(Xy#>MVh-wbdHcRJm>RK2qmjqKO%mQ`Va zFecMpJm;zF?dMygMs|7pHxoem1XvWAiGDBIeB@k=H&AlEvNhE`t%fkAaa0#SH-ED#ol#=sk( zsaa=aZBKI)NBk(yE>yq05S?)?R&kCgSvjsub;M>>K(C7+0K_*0sK)4=ZEh?C`hD9~ z&*Z5`cBy~GFBW%yc5TPzGSm-L|E2u)A71#nYIjrqdKT;?>#wVF_u+Zp)4Su+-?!z1 zKSNQP;J7+NI4c^3SHw=OwEoZ^tW|i!vrVOOn&ZZW+kzTB__nAdpcqy=SnUVsY$6f6 z0V0bIV@Scp@g8>A4aMK3TRPDwa(#sG?jfW z77LQzrEwmAd(cDZSY4Oj@9MQ@n~i#r(}3n{{ju&q5Z*}*L}ywv(oxNDmC<@ql>v?1 z0NT%2iNQHoCFl22hXp+2hDucQl)gLVjiX7dF^|^Nlaq)|)O-z}NlgVS;@PIJD0u^X zTAmE_QF+3uIsaLc$LshuSVf#YyBRRzi#A##nv6Doo8}~h+#ij^L#|avqJg(?V(Dq^ z9niTo{cf14mdGG<=MxO$T0}44~(^>tQceC}ja_&g1fl4~h3HVLa0% ztu7}5U5nJaf4-7+%5bziE(pvcNoq*`I6mgxvZQ-K6Yj!8E``4*rFDPOx-s$ST!etQ z&Zx|Pa9E9jc)&j^|adk)86z~@} zo9qkls{p5CFXGAAnbX`!PNsW-EOMt}N6+iLD)u8Q(I$Mr%+mxPkQE80Y@UJhTLTS= z%e{2ip_gv`@HKx#$xvR;4 z1^^jZ^7BC%`isv&N zTTg{(P)GigNxl&8)rk_2f0&d(L8qsGW#R!*I!Z}Jsp^*aDv4?htxUux@DWiS!X6R@ zD4%8)X-g83v@9#EkjClS4m0Oh1TN^(7A+*9TP(5zKu79TaPgVh|z(LY~wQw08 zz~v1_`JvP!eiJPVe$|a)^kKx;Sv50J6er}@badDt!9+ur5RdX`Sir>!6J4Njv!Mde z$k{*#n<1s3RzeH^m6D)p5iQo~3OZ3$tKm}=|LeQevE{7bNFJeqO`*#j>M2Z~D5Fbs zbu(DKzF?g`)kmDH`6}Vlw_K%v8pu)t9z8{S*sv#R3QIh6o~MteiR1cystyf{VP_6a zs>Wps@Tnc}Kgfw=EIx5qd2iIuL}Gvoyre4CmvfDX@>nr{$24-9l~c@1_qMYpB;bU8V;MiimooFX8vig0+uPA$eOz#?rH*JN|QHkD%D*QT3YvVVPTxUxZ!5Ub$L zzVS`}&*MD=3hX8ciTp{p!P?o{h_tK%;MRl#s~wt9++MqH8yys3q}t<0qMLASwoOjf zQ&7{?KGkP=It|tFizJ|byo<^vP|z-L*)9|$O!D;<-~|o%M#%HpN!@5k?B_|j-oyg{ zy4gf<;9?d^LFxSUJVCvAA?^gdK$&!kV$wL9Sm%O$y^wf1K}Q(GQ+&ISgmJod%F)!c zbhYacQbjt2<-k=86q}91eaFjI_N@jj@F2;`ZE7T!I~%nvh+TMp=JNUQ6x`JmR6w)> z99SKp0LSIaw^MyO&fWy3vJ21a4P?vIc$!KLSnQcq=$UBNh_Csbhj3j?6BLxq9KkryeD<@I7OZgEg9|H7rqYLJ?86^9aaehLo`iW32u-M+)Md2mzizAQzx|lj-9A-?vYf7tX`e-QDf|LJTLpppkn*E}Z2%V2yy`fmTII63 zJU=ykTLv-zj0|G_5gFvn0>et9Te|z&DNZ!2qq`CRrU;+yeEO(hBQxsRvXSAEwJlgm zvN%|g8fUM6InDCaF|~~|EWKtq^9{<$m&HD#uu`cDE48|?QmqT4dQBqZQTOn|Vzny- zlL_Z&buu5O>)T=S1&xq10(BQWCW!HQf_AfV@fhhbv_Q|B%DqR{`%;qW%^bU7nHGgk zXe%y#wk7QZ^c7itmn5oYz8PA+>?=SQ%t;yWG0_Nrf|Z=$S$(_K7-8elfdlX&n~^*N zS5PjrpaH>8qd6hsWuS8%367#UijLivqySTX=T}nlRZ||q!-V?vrMD`t9_e87sb1K{2?n3hf z_#l{n2pp{^0=HN3O~Y2WTHx7g_dqne7ousY79fNgOo+L+q<6Z%LX4&Hd)8 zXi1Z_01KKKAns`RZGT(H)JYumY3(p zsZKTfSM~pY zd&1fPvLd7LVgzIel6893zeWo<5PlQqVDx&W@~$h7*EW8?8Hs~TkrMa8I|UNI#_%CPzP#%tJZXo z*7}hS(^8w=Ct9uCwp#B#(NYuMhuUe!J4}0xZx?E-1&$YUA3L*J#A-K|HkERQRi~R> z1i`~Pe2#;0FE;^J%)4)!MXOl;FCMZ{edJ36%Iiqoj;CwO*sOeeC+9w$_Rxd-RxIWT z6eR(S`|`@gFm9bHZ{5C!;>mG;U-S&6P~~jDrSr5et>;S00iXH+(7{Z(^_95xicqx} zbHq zp~S=Z-hmN?Jn(Oq-=O1A<|Z>#qi3Dg7A(lHwFO4HSJ>nMT=xm8oVv z31~=jRtI>~?{p@zqXrIC2-%EO5_>xAu**)5ro;nWJ_AI)rOZY)Nsh{FuwW`Q6t+x$ zb9C}L(z~Ag$_h>`I6DV34o!wP0D|db$zS^;SM4nsrw>#F!WxrUp7rmq{oD@3gTP#~ht*>(`H9>2v)Ll}Nt3+o~Uo7{_KLpQI_oyqERnL<&W z%QUke4NF#)2Pg@DW43*LKyxuid8h2SC=UtXls|06^3-6Iey&*I^54#2hftS5&^b`v zU!pCnXw~a9kaEE4(vJ;sv@FQ$(H4m{NnSbd$gb4n!zjBFCnG^|3oWbu>b}7&hcb9UN)2 zF{slh8iP93>?%#;^hbRxP}Up>kfW>_o8Qz+lw&P{Hn#S5U9kz2Ppj)FtnzsyTrH4U zz`D<>5d##Idc$j_j94$$U>S{Uvg{d_yOB-Sp-q^jw*;Itf|Ar1x` zveihd7Y5)U<&vKUDzS#L)B&;f=8&~JmSAxaSt_KNdPN*evInx%s%tc`2z zjYIO3A?%>aD-N78l8~iw#2cH)+R1u+bVz6nT8Vgn9Fa_OzlV#6;xek_59MhG`Qd}IGU#H zD_(dj-jJp&R&fS9snLF^(-RRz9h_~8A}Tr6{Q=xJga`F?${#ZwsHhOt_k}|dXCj2^ zcGE3f#<`HO(m;GV5Fv7%H~BOdAlhR&-I@t(AQn`yOuME3P{b%5-kmsqAv!tw=}5p* zUSGJyI2JMVj+AX+Ct}#fgGIk4ve`k{IBy_654zoAg3dF|Gss!JO?!PTlhGkA0cVmT z7=NA!fibc*fFG#aSnx^6Y0u$9F`{ps#<@=8e|9cr=)BIks1JliJJ>KponV_Gh}vV& zKxYB&V>tn}hBi)u$?twts0O z7ZaE%JG){Go}f9LqAe8oh?z6#6iEB8Zof2v*8laX!<_+JOyJ%D8V}r2K=W1pr+Bd9 z5*IvJeTj=9`*k|F;$8(q_Ed(e_et<<_3jCpt-q&&R;Ai$!Gl%%F9zh*MBsd)yb$i- zSfeZVc<^NC&JS9Ha=jK$2JaG?sDBXb9ofT6_Li(En5;Jf?oOHTC+abjw;tiibUN@v znIYOUvj>Ols^RH^y*6ub;BFkAuiB$SlL0$-cs67|4^P+HK#Ko zT(ysALY^o?lzWbNvS=sL9(~FVAGn)|=jRhu9@VW_XfR-p)QGLxIW>W+wtwhM*veg2 z6F4M3vI!ruH;d;(c5Kmf;65&%58K^E^TB(*1{!Q_wuL6AkKaV+5_G2txH1*eZJk|)d- zR;PRl?hp}hULLEcJv=Z~#8;Vv57Aacl&@(|qbtk#6&ZZqAUwQMq`|TDb9wP$yE=fjSxV;$jh2$b-J45(t~HNu}Sgv7Sp&_692+ zC@b=iv9i!N(@1Ese(+^jECY!~@#sKxKDz3NN6TlGL{U1cM6+)sBB`6lqp|pgz%f$U zz%5BSzHXt(?7X%mqJLnNVGG?ETbLo8W%u)_KKLdz?AveBYZU{r8X#Y*aF}U=7a21> zh=OFMP@{NZ6!~P~7D4W$k*Z#ad$xk?Hw$W>zCd`qrj1g$qGL8*YvNVL#e z88VJSWxzO6>xD;A+OuF74Q8N>HM|h1>f5hx#fkAjnxXd|jekf3FQ6GAXxw!qqkwKX z8Wo1$ZzRLi%fsj>|0&7hfEiN7+SyzMiy}d8S&|6T<%`iZ4}i@Kxnzo!R7dlYioT6^ zEAgAEFNxn~_Z3At0O~`!($M>?B+|r9y%(ps{V>B)yrOkWl4V4bNRb;&vRU1?^Gl0f ziK;A#;N#RHBY!F1f2r`!-&t%?2j31Te{{Tnk_djKla`K`n3+Ebxyc+`%zkFmf2#Sr zBovsMy4-jl$V*$5NLkvdWV7#AH_pS;*RR)qj#@T^3TY2l-)z#z@*xe5n<1W|E_2|-Mf?SJblY(brj4O;{2nW{c+g@Y;_ zxe-wHQ6hb4wRvG3n%FK^3mT}roe)sI%A7)F-blx}r zoxe;#4M?=iUz}(Hbj0I(WD|gslq~2wnF5^^i%HP@{+@c5XXMa?KDdbyZqe4>MeH`Y z;A36-?0@ElJ&Q>DJ&^K*5&~(xM~nD{k6}{H>8uvjsEFvV!uD7Jc%nxi%o>^LMmWmD zD*DLolAKj6z^NI74dWGYcpkgf`(ot@5(ILR4!HK6uupxDZGSM;ISzdy;2Z=BsyqOJ zqC!qSpumtL4+t>itb;zb^qaBIwBIcNPh*&Xoqy(G*Q48}CfI=wF!<-icZ+LN-Nm@k zl|mJ-ac&-2(c?*!>v=p8%e)3BUoYFHNij3mS9Q`FtXw&u(t!b%9pE_7f&&}}=+ZP` zxq4^^r|Heo;aoNitH&}<;69TevqvVby+TN>mO>iDo=u#_{7{FgoFc(tc3-%>;FVZ2 zE`M|rdn`6QPuEWAK41+Bo~pr-iEp{>0*)Hs!1m0!r9#8Q);MKKdnR&ZdHmB}vz6tk z<9eRWZ=Jg|ux1|{c=sGPY(W8&4=rBEp7`-wWRsb2zpBh4F|lVJc-#(0mN)0}k@PEB z+lQ{)z$O%S1X~3apU9{$U9V0+h@?b^Eq@e3Xm6hkaql$Xb~>51SMr9GjNBx9iIIM4 zylKTts*Z)!X;f3ADiz-V1(+jXieO%B6=#9;3!T%Dn+j#JT0W{<(elrGApNr-ypPqt zS&vJhujQ-!R2@E&;ojF+x3S9Gb-Zj>X;fvqN;P}f5Tz6UA#j8QjIpZ;1w=K~C4T}| z0`!O;;}M@v#mGAwD&(vyjxxIn5}LE_^B=1j!R7&MfN0lJpLnrv)k;t}QB5X^Y+Fep zKYOG3i(O`3xhh(G^94)il(T5o{8;_+oUC;1(nJQlE=5+6KxY;N6}m>Ii7tX5baT56 z7I)idBU0LgR<1GDvGHQThSS!uFn^~QeJ;!+Mw83kVQd1`ZZLX0Wtd7`9(-+67wiU+ zYHL;>nY_4mkv?70+%B^9Qn7~&niJ;skZqJ2d&r#Tfn{WoBz9jsh?mQXXtBSy{&@nH zm)@&QqV?Ww6KvUHMnYmNYa*eG`+C%b5UYbQy;#J$@FHCjXY%>lEawvj+tWMi4JrTI>JTw2o-O07&gHCk>VWvj`b4EO zk~UGjVWy1)x$0?CL4JCgRFIRN9uvBOhNZTl3P4V8np%J!Z@N^|vF#u%ta@!ecai&I zOc1%pmD7-@FU@UJDOT3obbqr;_D%R-V~guT>NsxZ*Um2^juANQdK#(|FPt|*UZswdt)8oZ-mdA^U?0$)hDX=ti0^%l9=ut6Aa}vf;HBz?BjofIuyao*cFyP57&JyBLH*kQ<2q+bbWq(o}GfB#O6qQeJI|qWkp~5VpCK3??`D&WLXk z^EZQ>N$|GYjSYE1qkpFx>2!4D6BHJU7TxtYh?bdQx7-vVr`A74L0WA>{M=NTY1Gh9^*L)bJ#oV*n#YY{MiJ zz}Hcdp3~U%JvZY4aKp@$2EWY-f?BcB{KjF}28=EoZr?IasplH!9f=r*hh|O!^#ylo z+B+X^m{Q8<$$!*yHm9x4XgSNUAb55wpAi!l_1T=h4nb|isXir}>V-uPxz$Ha+@8Ce zz`~f-B`*#`bGv}8IGAIjy+{ckfjc1yO-UIW?PSDZlU3)11c@mQ-05kM3^Q!|l<=Sf z=eK{wJoctYHq~}zczYo!(U)S+2)`Wz*E7B|$u&-t-+x!=6bW89)4U){dO@O0@XPJZ z@KUI+|Q)o(=J@nMafL?@q?r z)yzrO0DnDVku8N)qFI|rsu`?Lu0_hOm-BviLN|YbYZ8cw->yzLD-$ZM(AKZkJk-gr z_~1nfpsk;DOHcD~sG%I#^IxhM(0r|wco2PKf?L{~q_bYqF2~#X@72R>u|a87Y;Q z+9;41H!w$=mTMT51I?*|dtglxOUupLPCsfIpAGWk4Q_xnPfn1VD3Td7leIu?bQGXn zU4Id&AyuL=&3vxHCg8}-kw{DJ8KfUEO~Z~cr6U>w8o7a1u6HG5FIlCLs9jO=235F8 zD^kUu4wQ5jvea4ziTi3gkB557`>_BjI_b9P(`i`2-v_%?`~TGLk2zLxgk zPy_Hq`%1dc2Y;%{6^Rru5$h%FE2tms2`BPn%ppt60Fp$u zl|Konix`-@TS>R+^~0ft7=Vt2%vb<(Hp@=qL}zP#s)H>b4cLFjG*W{%srpp@`v6&; zFjqsn>H65}$pBm);Z}1y$@=Y(tP35XTeNn|>!Jx{R4ZgQc%D#1`&5a&5)nAT6ZrK5hf2fQ77OwZVb z+WXQQyZ0b>L_^dL?v&maUsb&~c1JTnkyOE+^v2auYAhU9v7h(GFSQ(l3a-E0-@Z_D zZ#=&KIDQa`e}6lw|K3=j(Q)`zK!4KxeuUG#(P)mNAw1fN$`)**`t>OwzopQv_iaX=40UB__a%E%(oI4RZiMmX@CCEc<=3h zr2*Oh$^&uc*`7~UB5C$B3AjV=@9bYrNTQgLP8eq7xDTg+`ASH!#ZBVm}& z?5n--7|~gW^zGu|=IT+5sehhT4E}GDH!ohU#BUP*xcYH>|Cbn2J*y!1#4kMlazDzD z@%v9@$oP1%e^Hgl{m%sr{H}TTSKqHL9CTb?$Zekk|3wuip9pTGHLc z{ePaWgpB%8U0Esz$bVLj%~H0%!`7opu53`Qf4|*h1D{P>+Gb+&Yi(jV2dt;T@`kHU z&}95K{^#fQ-k_=OHqmuq?U#gR>0GX=Nzv%KuK(WW4nY@L)@;8~zVQ@PwLnB;gV`ea zy-w9@Gp{?6do+eL*O%NklILj{`+_`8*1t6ms+a#!xyDtw+hKXC5W8FFFLBhD{#8)# zwG4mL&FIaqmE?cgzdHh=H`@|q@758m;}vb?Bmb>#jH>5%EOS`ebS0V@c7LyH9gkVG z-Dg*G4SC-8{W+@(#UEI^e_IA|E|*ZNFZ}uG`uk;*Q8N>NuWz3Ibgpk69xuLsA2NE6 zE7o@!74Nn5kBcvI+0MhdNVwkZLnC>6`SktbULaLH=oBJ1txayaq$=V4)qkF@@2|Mi z#KRENecE(F?8B$!zFLF$27?}z_?Z&=HQoIxGz z*T5=KPRbE~*-*NEP*)I=a<5~Tm7x8{>cL(;pq3YfH&>XrWLAx-mZF`pF6F4##-g3HQwvx z$WXSMRc%IXyG@D2dM;H=Tbq`*+BelIO}Fkga;#c^^96kovVPPM*`Ggo%E8NYomdB$ z&cnJf+WgR1(Twi}(%q5&{+IGERz^!>8tKi2ECccO(dP4g<$nskNZr8>8Qq?@?RU34 z=7v&zXF4|92-$F({=<#uR_yh=+M#@}6P9+tz4_G;(w%tiKeD#BNm)%Hn|6LF5pOT; ztGk{*>ViQ*-qpA92>{hyWR-ZCMj*?(8If$;{fIlCrh#DHCL5U#<*Ns^^6HPhUZWzC S*|awM&D{VUi~ko1?qe)+L^Y)V delta 13328 zcmV+rH1Es9YM^S6cYjM)>upAMIO5e{oSpe z{Z1pFyw6_pF!(=Jn&1BK{%?Er)7j<2zwdrrT{@3H?(gp&o`0^doU5n5?yny?(sy%r ze?A86k%HiH9X`iFhLBBDcm0!+H!kW0Zk93GB6F97NwP;P_Gm-IMrbt*NBG?!DMDw4-%j2|LrF3OyUL0j4U6Bk~ zvNoheoQ7_0^d_@K8i!6w@*<6#Fk70z;)MJ%Bcx=>3QAR9@RTee9(4o9tO{><2IaR0 z>6BkIht=kEs{#NKpIz^T_?MnXvJ6#*KeM{CWEOaCFn{b+yv@T=N%khuU7}O?sed|` zupa8-;ywrDo)V8}au224Uj)rK9->x=J&r>C=dgSr<}X2 zNTS@dyrExD)^d%^^x#HGXM1pj)+ps%)_`WY%g4JuGYFSW=W=kG8~3Jq^IGa(9LPaB zlLJPY%SmH1T%A{A&DXDj=oob*hh?lNMN5rOcOk35dFn>lLZ^ATkX7O$qU;SdK&MiW zet)BPai)ZI`wi!L?L=;#txiSa&dS#rw#+=fBxx60xdSN@L_$>Mv=X1^tO5 z2QB!c5vkc%KF0jChQIUt;6ey;lZ1`MH8}GF87E+UZ@)7iR9VowbtZ;LfaZK~K0gw2 zyx7*J+M8}&Zhu>@32GvJ&PF$Xs-o*&9^G}57*3MoPCYS|*L^C1c2bnTR1M}LQQ zuB2&B^5%yZ5@f1n*^#)yVW!*j1Myp?taLkGw$ia`E+OfT<>p6+5>hi{!_~QJ{@d0( z93*qYB+&X;Clby|iz2Qd?F1EG{UxA!mI~*H>lz=dY_b^oawDvj8x$rzZSK;*Kswf} z1jh$5j@ATWems|PHa#l(m9*!g^M7OUm_dK`I6oG5W0*PL{P;w{a@rixpYY9(#We*p z-^!;ZqaiNL15MkIrFd%NCpIa9P5*%h+d4G5yF)sGp zfbc~*4c1&}SxCJ!&Ip^;`g-p<7t?}(VrYkAT2yFO#|vR~4CAO;m4$PJ6*6)oR9*?| zqkdC=I2UF*#v);z#`~x6qAIqn2zB1?P|QdYHV7iV(>U^ISfwEH<$B&fww;Ft`Urqd zHVfw(&ZIZcgqC4pvA~S%4(GyhpxxyG?AYzpOIdEeavS5hd^DY zX`FtKeazdmvNO7j;*^-0FsoND*$Yvh=4)df-vsn>B<2exfuA9=rGFAM@N}&KSkKh2 z4|hNAKmFxATwne8{B(17>mXhEzmkZgF3xwjm7UQjCrgrMs8?wzY#Qyyp&6su-FG7X zX#z7?5mEkyQIO5XV1HY&UU8R7%r0-Q1pWg`vAYM1)C2L0a`i;dne^!7OaS{6XM@{q zY_)}h03{Z!QDW&bbbsHml3RNLP|4vgDp2w{ja}b!w|qdL!UYX{r}pg(lQ?QTlXO8| zTtp}f_%>tYik*g(!V8+>-W$Eec64?qz{w~6Kzo9Cxs;vLQ3@jqYe?J(C+Ab7B(83R z^`J&yF3Wkb4r7$ss7#R|KT7mU)@WIQdl66+GpRp1ITw(Wu79FRTiDs-mWG(1ng|66gD}cR|4#u&MQ&) z!>Nrp_FP{hZ+~#4uSA%gNWE#czWZ~Zn~~I`?uMg+BMy0^atoKATU?{x&&C-TymxP#2CxEpjh~w8H(f=G6|D++su=18a8?_|m&pK``0%?*v?HND4Ow{y*83OcN zJ%sXpy&i`Km^3;@ZD#{8X*?T--oAkZq2-`5Waw`?2!9wx9l^JF`Hi2ULkw#g(b?yR zo2Q%4m*0?ey5(G5fBNy&6mtFWP_1&AKyGfo+?g`|xO})pGQJl3+!T8T@R2ObNKBnGc#~lXS|bjS0|-SV zJIXpHoNl#=jRgN)mVV~?sG(pZo#RHOt+>vSS(DxgArvV`MOmVT#eoK~X9h5x;j|q1 zK}M4k3NC*gi_?7t)j>Fwc%C}0=b3#1={Y)uaz2Y~4q+L50)rXohA?t;PWcu|gpo6w zVb+k+W0cP?U&-1AW`*+(++Yggl)g=xSy=|HG4M}*+(f+r9dtW6IvPr2qFtW!PGdG8 zH)|GmU_0d}$0BodLxr654p24}uZ$$hdpz>aig|y|3S5-wKu?6wgyvfN+MIMMBFSSv z)}f4~Uwh^gZ`;>NVZphGq8&N%Ci^fVEH;5>$6#1jy=zxa_jJ3nWmMs14VQlzP&OPuxKC!la&@in;;4 zKq4onqVkM9YI|~eB80g?q;rJv9iLGq?Mn!&l-Kw>HI_p>7PS{Ul4zAD5UxBT9b1m~LK!8_Gn2SArw0=Aa;=YfE{5n#9Z%;M5(ql{&FR6p0*Q}*b9!(A zVPoRRoX!s*Xk-MO)A<}m$C-WzgX7}VoX(FRcr0Apgdn2eoE{!XP&uooovMEi#fd)| zrY}G3g+i`7Cc(9REFT$=dc(1e+u6L4-o@D@Qe4W}B-6MBO+*$Vb%No5p)hYlFb=*Q z21b@cCvGH<;gKosqytl{5uQEn>#*bjHvrw&=Qs}Z{T$ubCKd!tC$B0;J^4ityZPxc zOf?rj?upY#OZcQGoO!g0n=gN_aa9^sg{x8_JcR{(I2hc(-V4os6>dsYjTT--vh{YhHR-;B0*5qLL9OQ@pxRQW z1=f{1^~?#~dNB{mFC{QqX753~Tmv&ks%=aSMu8MvX!b7MnWP)gWrTn1jJYU}D>D93 znpCO}(WKKn4I|`>!H{>=z;W*fdo+GWrc=7@uj*S3ZE-84BRr*N0?r&S&dQmWJ!n7{ zxnub|*?#eqE?=x0S?$gF^&W)$L+l~{A!+Q`$kIT60vfP6bb00paonj6eW$0e zy$or1`(H{*-zkxh$LfCuvRN%$HrhvoG67@$d|8Ur-xW={3bxV#h*$nMGDG|euXx0lYo)at-` zW>1P80ISM;vZ5aOP>qet?MEpLKQu!d_neQ?2RVddSE2e!D64<^_(_qrkV;pyZL5St zB(SVg>79Vr=fx3^16@1p0vgR$0N!G@A~P~F22<%!!fCXa5+7B=m8tMmmuQ(@4>+Bs zZ-#&6fuzRg9>|IZ#c1^!dNa}Rjd<52YF4_J5XAl$nb;2^O2)ds(K`|9H)DM6%sz-O)$RQyT0hV8Y-e`uHvI&LZ4W&?g zruMzou|R)MwHNPH_shUtKC5+)xEnsSG%K3s{3%4%6FFQY^qcK;zs_iO`y?= zr1`F`C>-J8Kbrx}rYW zm3H#0aCcVP$a}Iw)!}?s%Go4&cg;(w+}UlZTk?OsEt2k7y|dH8PeXUPGu_#OMl>h8 z(_i~;?M8XDyODoDvTT>ScU$Izc)3H>^MhR~Pj;yMaEH2G-``1t=4E-Qb#ZT*utqr1$2q`E+D7pmESGuWN( z(B*%!JF9qUTbuxr_;Sl)jM0!$bRi^SrrxtV>0ck`rFnsr9j_B2Ov#E9 zpUZFm;f1fOb~oj(XTeUg{-!E-AD;I;y*n=beOo^GGZdu>j;k|-v!YRWMeNi{>ks|G zT7`Er+f*8-Ic{9IEvV6hZ;MI-iea^b)qa4^CK9n5AhK8_tdY$k@tNM(TV;WsYNE5u zXjwPind&5s{axyIvLbXej|bYdqP~CkWhbhu+hTU1dgZ3mt7e~-wMozxrAiHNLaOvy z!3&2f0BoIrg*XMeK?;#t^a2y&l!TLKmRfd+9pw1W$x)o2D3#Ol!r zBB-n5s?90&Sx9YmQ~B(p@7JH*BrAf6@Q>9^Q`x6tu^{Pv8t1VGJ%oAO?jIGV&7^Jq;yIf>Xr&DZdm)Kst{o^ASyk~hGo<;g%Fl_#v4^Pe?&ypC^!Rm9n| zn*k%fXrncv$!N1_PD052(MW$hT)8`wMf1D=POyK3`fi3g1|hI zq=w{A<73_}OS%^{;VwMnQuupPTK6Zd8xxPtMF@!NjLHm$)fk8ejD&w9c$4Zzi@JD; zByzHhQ@+eI+TnN7DSG@)%Gu{WUDoMK-~j6E6OHcF5fKd(Jk)p3y3YZ*rv$L0W~A&_ zK~v&SuBfxWA#FEJ@NI)S1-2SB0u9d zT~B3y+2^(2c`^+t$%}t9a>8smm6~N5S9g?60e^9`$-V%;3UE61BA$$$InABqWV#o~ zB6liw^t{fiVn4DHZNdl4JWcQcS&?AM<{3D@HPDc_+)IZ|UYt&f$y%byy}NYOMZOdD z4JD-h)?%=?AUOSN+PWN80^;C!kb>u&p>*Kr@@Zy~wj>cr%d)}>X`HU@FmrxI z;DRn~(LxeB?#fjbMJ*uriz_ml#3EDPD-Y&nBwg`FBMw70D6nE?HI$zKoEGt`4Nmq_ zTh0oOdHQ&oIIi!f>d>$lcIMEeYFwrOpV|TcgPb_V;uD9J_eT9p zBnG&^OR7?RIoF6Nj}`NGOe3dRImNtmZwq|z+ReqWLP^0?wvs9rD2qfW#P7*)Xm7^_ zYkG=ZA{bl_(0pT>zp%PUJ)z7CR@(|GSVk7tcT0bx{^{{?my=^_L=g(kDFX7U2!}`P z)MC5>EYfCiO*Z#yQz_?X~;1(LoVLsy%)rx(U~2+vH?D1vO3WQ+<}F(@-71NCL{csB8iS z?E-(7?LtAqBwtSfUeJJVggmdE)Qy(Jex8);O*{agn@t1cf4$6 z-)hhT50b3hrbcqPvr*fE*o9{rfz=TTa9qB8JJqM->`h=QyYRf; zK(WF{6;CX8su2>^Su)z`DSWB4dlJ_t%fr<5kp|F=pHTcs(r0xn3n^n2##sGvjugcE`2n1DKwdia zKG5aEzwdrrT{@3H?(gp&p02N)tEa#2uOCPDN5*%9YVH-E8{9qr&FW}og=I{6ERRdu zVYvb1_%#TnJjM>BsLr6nFyp7u!3=*}nWNRTtZl(klEuM_)Hr+1X_lvsscoEL={3ulZ%}_uzAW|` zg_TNOSgF;8m1Sps&dCyChLH^UcumWnTfh15V0- zkBLSQtmFjG>I<;O2pgvh9Dsip*^J~FxPo$_1q}#(8qEn2F9V$$LvR$$QKXDiZD?1k zdSjFOZbHQrzngUS_2KTv{ina2hwG~!pPz2-ZXMM;U#3Z}V&j}8Tb;x*XP38Eqf4o1 z@ZG~S+y~+po8Y@+>z-&8e@Y1j&H2t0pV?ZJm;_o4_+ zfG=p^J9V_GFo~lkriXo1#`}z()zqp0bM8Hy}>h#sJ-l zEbyKBImodHuMg&2gyz?Gn%M(GBZ6y#Hzm`M+5}|PUs>VNdhn6z%UD0l)D<7DYoCq? z9{PrweG@A|Em7~Kv)|jZYo&{pk#d?7(Ff$>7F70YQ@Myx1T6rqc`O+4h`p=OfDNhTI>N*BOY9XwXQa%`Nk zWmTh0p{N+u)0>7R`z!;LgaJCr35Edvjg)$14J-Qc{~M9BKgMAzyc0%!UYTi9JkP6`P9p;!Bk^o z9hNdAjSdVFgGPr3I6$I@Qy&@u^MLa%I1e`O0r0*TK~8P-s~eE5&b33d)5CUvmO8O6 z(PmH9;o9kaIzXFUPzP(TAL>AD)tU~{T0hcZT57ZVM5}+5+g9t{Ct7O4`%pXWc!z1P z@$EuwwZQRW?qg?Gi&*W((xy_*uQpDmDD`#DdWWBZDy=$EMu{!^EhaW zpyAP}!bto&wK-5%PZdYU;d6{7U**)oH1TRo;es5>jH82i-_9MvQvM zWW?x9&W$*^yId0AxO}C=BXmV9Ae>&LNIZ=19T~&=E|jIc%_!l^8St5Mg^% z_!NIF++UhQA%yR)K1@fm1&wG;YqZ^d2e$E zK=6?;C8;zijvVsK;a3hier`zAf=M_5S#UQRxB zVQQe`beZ&0yLK~~`2kwpJVA>dq9to5eQAHau97Hfc9m%MEna@(cO{SQ9SwOSpxNh# zo2Q%4m)}(T2zu13>rX$v+C^SJJXEK`>>+P%zueg+{&D$mYlWy4018CZIol2b*5kK$ zX$ZrwYhhiaV3T{XZ0P3oxieXPE>kF~bD3uLyF0_SF8}Qeb_jI|1f2ur6(ichidMZ&11SfrE`8q+N6Uh|9&M3WljM~H zkL;!ny*$<=X|l^A6Eq4&_u~*`)gf9#NeIYWK z<3NPcC30+9AG_02M;#8a0@vUb6#yyCzqBMDg=N4&9#tevdKM~8&Q zpp}Tn5y>?7d$@=wE~82=;j@2MUXmqEJ?9$uLJnuPNHlVxY z`j!O=8jU-80Q@rE>Iv5GU;NsabPogRxQ>fmf!6j8~k z?hoL;Av~zBQ~sFgKt+Y9zS0|tI1?dM7m#i-&V`JX4&p+D$aUW2>_9DmXpiM|YbLOP zSWv|>?Uw$zh*3JcJ8}L(baM3UP{2~&Fu27y5;63Slx<+glg}X@0VI>|Aua*ulN}-$ ze;x~gF|sv)AE?_{a4O`q=kTEz(YH?HT&M9rKNmB!UPsgi!lE6tj0;gG*k%Z#_82tK zSwKC~wzSX}5LKG(h;iUTwH*--EC>z1u(A7CLScXFV9vxC(4o)`1?Z~GEsm%$f7Ln6yCI31Q=JpM8; z1rJtV;$p~toer+JSHX}ymEr1r5zWyF?}`e*}9+_VALuC2I;M>y3cBQzrb0dJN^QM|d)w4m?q2 zi1y6v!6Cb9c)DP(%^DoI8;9qs_UO=Lz|I|>4cX7b)3tW_4AjIEwdSDpc>}t7#}E%! z?IW6yC(01zo+F+t+KIGBpR&UT?q=fo`9zgRbt@Jc4A>(zVykveP2j36e>xMka+lQv z4vCL!!iVh5;`xvrTQnWGkBjHSc6ZTy@Sd-M2HRQF8MjznyN%z7^?fD4c|2`q)4f|} zT7UQKS8Dwu)jgI~r1F%bHnMYnVEudd{y>|WR#tax>(de-|BE^;&;_G8hvAkH&wwTi zRE)FX+wPj^dV#mRh-zzzf7iaUQcFfsN~Tg!fIU?ZWYK9HOL$34I7@WF=_8Be3A2UO zDW8HnLl+XQ;=C* zjBS0zAm)*qGh}d7E}pX%ZoDGYiBxrIzYK%!ARI#8XDt~%n;@>wNOl+G&A>??^#>gMriEWROdj8ryo zOOlSSTWB&nuWgAae;8%hLU+a%W=Ln*{XD7&;0}Dqu4bEwomK zjH6H)FpkuE;Zc1v(xO+Q zDoY~xIJL+~f6Dh?D!lV|7F*Q8w*$%_9WS6Hf?w&RrQ;=L=1)RyGRGFPpV{=EYW^+> z1*WDhH{J*G(pDu>mbNO{?A!IN^Z4V-mzzIFEgM3Gw8!hOHfdyesX9cY4VzuwUX2dq z^@-KBAr^suS|_rh0_$n(UY?rGA4OHGv2q@q34*9k8j@s1>iDy#}g^v>wT*vAUv!!J^@0BxrtrPrb`Ca%e&y+{6gCXlw5xcAH%A zu`Ydfe{;j0MWp>6NO?jDfwbPEMf}3YFsbHrR*Py>MD$l-d#nIF(W4J$jm&f-9OYpZ zePnk@&MFq*)QrJ~@rpP+k6r71vGN270y#+sT>DPgr@qIwKbYzqhdvQ-4gv*L9)Lhm zAtxVDV91dN1Q>GGK_6TC&Ddw!?-qckF-*WtfAg^G(QQ)`?7#;Y{PXgg#kHyKV%+FT zp^DcyH;=67@g&OiJf4VUUW1dbmu=Ien3?OVI%y47t{hP5zyQk*a2#mC0geN7X&SIx zJ+y<<^k(UBE}MqcV;LuKpGlC}BNNwNA*5DIAq`^BCQf61s6$mwk>D`9FI-;mN~{?d zf4Yf178{CCM-6abd*<9yq2Xa`oHC_76FIUx{%Nn-%JS54 zJkFnv%@|IgZ>U||^`_Ppe*o4B4 zORJ#b(-ZXt>D6fkk(B6QghB}InUf*ze~1R$Bq!7MO5Tu?k(*>MG18}uH-mUd)e(+5 zjcOWGrQ(~F0CNOP5zLFN;w+GUp>rB?tDsC)%b#>Bvi*4vqC+|6?IK%`5_`y?ISp>Al({TJPO9 zfsrj{BqScPCK9?3uSZP?u{sFTiyN#9FVZD(CZ9jS7DzRjwliAoE~UvUf6ta#B|-xC z>M{Z0dUcUWV7KGUaz0_OJ-xHukn+E+4iU5B*)q=RT+Vu@4v1x}PgFV%X%p3(TiQsF zTb(u)+FzvX`B%+t`7EE&Xxflt}E zgIU`dPpqnQ+w8=e(vN(t^g~~a|LT*ViY7I&wn=rt{01>(;EV->o@mg+vC|AQIeD`2 zlwIsox3pQ97qq;Y`)sX{ZJ=HpCUHa}2FL1aG_D z*pMeQdb*KLM@K$Ee_^pWe(FLe8bFCuOf`a%>asu5kg7^Q^u^MTeYGh@Hd1xdDziS0 z>Y{Vju5_9%yLkKKv~slN~4*xuZjz-03k+?i?Ye8=sjKt@%M8e;~McWc=XHCP0FQNVonY zK4WAaml%EZos^fcY#{$&#d{l82>HA|ekj|m;RzHQH9Se@7{G`T+b{_Q@O6}==QMVG z&&_zS+AuSv!EauIpjK=&zi}A00iz3t+qaBU>bb^wMeKx1B!$li$s!z$LdSQ`6Zs1W9x99FAurOwI$&16# z+%8}%4(8ZsFH*us;7&+FQ&Pr8I~j4_kXglU;)eP1r*CJ)t%Xz;$p_{+JH3`JTZ&xRrl?jzrXzN#N9_r-RaquDq(AH17 zrKfo~)KCuW`7c$xX1-QRJczzA!7c4g(pfL*m@RDZ!_Rx?nU*12Qc^40bfYHJZHd#g zGMctX#N|c}1jel6^InH95g^Tz%1iANNQ@fDf0Jt3)De-JQ6?JGOaj7-`Wwx#nKMF= z+9i}3Gqc3;6aF|GW#Uo;hXP~Pg>FQXA~2}|V+g60VxcihtK$mzjFietZ4^k18R4$y%T`IttLPu87o-D$$r` ze?C`X6L4haNTj9q4API7reVjJ(h&^-jod&h*Siw3m#orA)UGIbgDTvl6{+G+2TD2% zS!ykV#Cimht!XQ1UrYONr~&vQ@;8u} zULL}KUU#;?#_+?`eI?!J16AdUL<*RQfAtdf71WRRgcJEO=8z?307)X-%AW+(MGVZ{ zt)$!Z`r%MR3_!<1W-Nd?n`NhQqO-L=)xnmJ2JF9M8mYmXRDCM{eSoY^n5&`PbbV~~ zWB@LYaI3kUWPNP;Kum?$+e;`Q3oMR`kgv|G*}a5)cKv9;uD98M<#?F7uciB3f2yjU zbHcUt1jGvKBr=`Vo+nsiH@Q$>m0+kXi1QpYOzWrI(osL#1Kwmkrf2N(>wW3%+Ix`u zoFQrl_doB8ua({#yH6RQNUC5@dOPYUH5Lx5*w1_87f_Bt1y@z>Z(n}7Hy#Ur96yMf zzrP)Ue{U?%=s0{UAnATT!s*^BHY@*wQv{#NkFz0u>GqwK-C&;6}Kq|61l*zbclIwQBvH|Du9_$NSFu;{WwY9>AmW zI5D+X9;Ky`yt`o%kgUsSeyjKV>c85gqH53+VTHdHTCh6guqngm$DdslouBLN$j6^; z+J9YrIT0o1zgMaGzuM$C-|z1po}BAH`Ts<6y#y8DCggSe_v?55zm{}=`S70~*Fr}9 zsIDxP17s`5W+~g>e_`uUC08~mH^1NQv4PK~Ep0Qg`L#B&oCDU=V0pt;CulPMEC2J; zdT-EFcbn+Cu=Yzrvve+3)ud>2-PC{YbBCbIENiykDBpMrs#+kTvB7MS{9dQ(wV5{^ z$vqlFn(Hg>8_DxDjD10#ChOmt2i41euUzA*-0eJ7h~2OAf0sDwOaCgU_gaR(>1Ooi z*Glp~?cW^%(VJ}vvUlr<*71tA@{#{mH%8U-dzLvYZMqW847C2-M=e?IG0PP)ffKsc_Xs2Z2=epi_w4v^KfvlB$Fc z*Z=u(^Ki|bCLV{F?$f3dVjn&&_thH2A2+vGcYi#}Utudj1^R=1*!V5m|9^ixemngC zd&62b(40laC4Hmy+o^LEwi{M>2X zGuA3Mt?^zjM~1T9tZFlA+iglD)^n+1+S;_d)xND(X}Wc{kz>`GFX)Sq^`nN!{`|>P z4qm3~f5bY#bRO1?(dLK7ie`K-knWEB_dl0^u`*g3(@1YFPZ@}}k2at03;$E_Md}WA z$msUGZNIzaF*lUzJJYe*M#zTS^dD|Kw_>l~)ehx*ov^eE?#-`;knY55|B1D|P0DHt z*|hUZiFkX#UfuOnmjMd$uD&@>0I2Q_tHjGRE&^HJ&4^^%?nm7DGz|pnHrdF0C|^CO al~;f4^%@nC%%-*3Z|(-@Sp2_Z3GHI_hdOcq diff --git a/searchindex.js b/searchindex.js index 97cc28564f..ccced64630 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["CONTRIBUTING_LINK", "ENVIRONMENT", "autoapi/arkouda/accessor/index", "autoapi/arkouda/akscipy/_stats_py/index", "autoapi/arkouda/akscipy/index", "autoapi/arkouda/akscipy/special/_math/index", "autoapi/arkouda/akscipy/special/index", "autoapi/arkouda/alignment/index", "autoapi/arkouda/array_api/_array_object/index", "autoapi/arkouda/array_api/_constants/index", "autoapi/arkouda/array_api/_creation_functions/index", "autoapi/arkouda/array_api/_data_type_functions/index", "autoapi/arkouda/array_api/_dtypes/index", "autoapi/arkouda/array_api/_elementwise_functions/index", "autoapi/arkouda/array_api/_indexing_functions/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/_typing/index", "autoapi/arkouda/array_api/_utility_functions/index", "autoapi/arkouda/array_api/index", "autoapi/arkouda/array_api/linalg/index", "autoapi/arkouda/array_view/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/pdarrayclass/index", "autoapi/arkouda/pdarraycreation/index", "autoapi/arkouda/pdarraysetops/index", "autoapi/arkouda/plotting/index", "autoapi/arkouda/random/_generator/index", "autoapi/arkouda/random/_legacy/index", "autoapi/arkouda/random/index", "autoapi/arkouda/row/index", "autoapi/arkouda/security/index", "autoapi/arkouda/segarray/index", "autoapi/arkouda/series/index", "autoapi/arkouda/sorting/index", "autoapi/arkouda/strings/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/arrayview", "usage/categorical", "usage/creation", "usage/dataframe", "usage/groupby", "usage/histogram", "usage/indexing", "usage/pdarray", "usage/segarray", "usage/series", "usage/setops", "usage/startup", "usage/strings"], "filenames": ["CONTRIBUTING_LINK.md", "ENVIRONMENT.md", "autoapi/arkouda/accessor/index.rst", "autoapi/arkouda/akscipy/_stats_py/index.rst", "autoapi/arkouda/akscipy/index.rst", "autoapi/arkouda/akscipy/special/_math/index.rst", "autoapi/arkouda/akscipy/special/index.rst", "autoapi/arkouda/alignment/index.rst", "autoapi/arkouda/array_api/_array_object/index.rst", "autoapi/arkouda/array_api/_constants/index.rst", "autoapi/arkouda/array_api/_creation_functions/index.rst", "autoapi/arkouda/array_api/_data_type_functions/index.rst", "autoapi/arkouda/array_api/_dtypes/index.rst", "autoapi/arkouda/array_api/_elementwise_functions/index.rst", "autoapi/arkouda/array_api/_indexing_functions/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/_typing/index.rst", "autoapi/arkouda/array_api/_utility_functions/index.rst", "autoapi/arkouda/array_api/index.rst", "autoapi/arkouda/array_api/linalg/index.rst", "autoapi/arkouda/array_view/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/pdarrayclass/index.rst", "autoapi/arkouda/pdarraycreation/index.rst", "autoapi/arkouda/pdarraysetops/index.rst", "autoapi/arkouda/plotting/index.rst", "autoapi/arkouda/random/_generator/index.rst", "autoapi/arkouda/random/_legacy/index.rst", "autoapi/arkouda/random/index.rst", "autoapi/arkouda/row/index.rst", "autoapi/arkouda/security/index.rst", "autoapi/arkouda/segarray/index.rst", "autoapi/arkouda/series/index.rst", "autoapi/arkouda/sorting/index.rst", "autoapi/arkouda/strings/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/arrayview.rst", "usage/categorical.rst", "usage/creation.rst", "usage/dataframe.rst", "usage/groupby.rst", "usage/histogram.rst", "usage/indexing.rst", "usage/pdarray.rst", "usage/segarray.rst", "usage/series.rst", "usage/setops.rst", "usage/startup.rst", "usage/strings.rst"], "titles": ["Contributing", "Environment Variables", "arkouda.accessor", "arkouda.akscipy._stats_py", "arkouda.akscipy", "arkouda.akscipy.special._math", "arkouda.akscipy.special", "arkouda.alignment", "arkouda.array_api._array_object", "arkouda.array_api._constants", "arkouda.array_api._creation_functions", "arkouda.array_api._data_type_functions", "arkouda.array_api._dtypes", "arkouda.array_api._elementwise_functions", "arkouda.array_api._indexing_functions", "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._typing", "arkouda.array_api._utility_functions", "arkouda.array_api", "arkouda.array_api.linalg", "arkouda.array_view", "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.pdarrayclass", "arkouda.pdarraycreation", "arkouda.pdarraysetops", "arkouda.plotting", "arkouda.random._generator", "arkouda.random._legacy", "arkouda.random", "arkouda.row", "arkouda.security", "arkouda.segarray", "arkouda.series", "arkouda.sorting", "arkouda.strings", "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", "ArrayView in Arkouda", "Categoricals", "Creating Arrays", "DataFrames in Arkouda", "GroupBy", "Summarizing Data", "Indexing and Assignment", "The pdarray class", "SegArrays in Arkouda", "Series in Arkouda", "Array Set Operations", "Startup", "Strings in Arkouda"], "terms": {"i": [0, 1, 3, 4, 5, 6, 7, 8, 11, 20, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 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, 80, 81, 82, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99], "an": [0, 1, 7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 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], "open": [0, 7, 25, 28, 32, 33, 35, 36, 42, 46, 48, 51, 54, 55, 80], "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 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, 60, 68, 73, 75, 76, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 97, 98, 99, 100], "project": [0, 59, 62, 75], "we": [0, 1, 8, 28, 32, 33, 35, 41, 42, 46, 48, 54, 56, 58, 59, 60, 62, 64, 66, 67, 70, 75, 76, 77, 79, 80, 93, 95], "love": 0, "see": [0, 1, 7, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 30, 32, 41, 42, 45, 46, 48, 52, 54, 55, 56, 58, 59, 62, 63, 64, 73, 75, 78, 84, 87, 89, 92, 93, 95, 96, 97, 98, 100], "new": [0, 24, 25, 28, 30, 32, 33, 35, 36, 38, 39, 40, 41, 42, 45, 46, 51, 52, 54, 58, 62, 63, 64, 79, 91, 92, 95, 96, 97, 100], "contributor": [0, 3, 4, 32], "welcom": 0, "via": [0, 1, 25, 28, 30, 32, 42, 43, 54, 58, 75, 76, 77, 84, 89, 92, 94, 95, 100], "most": [0, 1, 27, 30, 32, 40, 52, 54, 59, 61, 62, 66, 68, 73, 75, 77, 80, 84, 90, 92, 95, 97, 100], "fall": [0, 56], "under": [0, 2, 24, 25, 27, 28, 30, 32, 33, 35, 42, 43, 51, 52, 54, 55, 59, 62, 84, 88, 89, 92, 95, 100], "broad": 0, "categori": [0, 25, 32, 53, 62, 68, 83, 86, 89], "If": [0, 1, 7, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 39, 40, 41, 42, 43, 44, 46, 48, 51, 52, 54, 55, 56, 58, 60, 61, 62, 63, 67, 68, 70, 73, 75, 76, 77, 78, 80, 81, 84, 87, 88, 89, 90, 91, 92, 95, 96, 97, 98, 99, 100], "your": [0, 1, 28, 32, 33, 35, 42, 54, 60, 61, 62, 64, 65, 73, 75, 76, 77, 78, 79, 80, 81, 91, 99, 100], "doesn": [0, 62, 75], "t": [0, 8, 20, 28, 32, 35, 54, 55, 58, 62, 63, 64, 75, 76, 77, 80, 82, 100], "fit": [0, 59, 62, 84], "either": [0, 25, 30, 32, 34, 35, 41, 42, 43, 44, 47, 48, 51, 52, 78, 80, 84, 96, 97, 98], "pleas": [0, 25, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 60, 62, 63, 66, 68, 70, 71, 75, 76, 77, 78, 89, 91, 92], "add": [0, 1, 13, 24, 25, 28, 30, 32, 35, 46, 48, 51, 52, 58, 62, 75, 76, 77, 78, 80, 91, 92], "anywai": [0, 90], "provid": [0, 11, 24, 25, 28, 30, 32, 33, 35, 42, 46, 48, 51, 54, 56, 59, 61, 66, 67, 68, 70, 71, 75, 76, 77, 79, 84, 87, 91, 92, 96], "much": [0, 7, 24, 25, 28, 32, 35, 42, 51, 54, 61, 66, 68, 84, 88, 89, 95, 100], "detail": [0, 11, 20, 32, 34, 42, 59, 62, 75, 76, 77, 79, 93, 99, 100], "possibl": [0, 28, 32, 35, 41, 51, 54, 55, 58, 59, 62, 66, 75, 80, 84, 96, 100], "It": [0, 8, 27, 28, 32, 42, 50, 51, 56, 60, 61, 64, 66, 67, 68, 70, 73, 75, 76, 77, 80, 91, 92, 96], "alwai": [0, 30, 32, 35, 42, 55, 67, 84, 87, 89, 91, 92, 93, 95, 100], "good": [0, 62, 64], "idea": [0, 62, 64, 67, 84], "current": [0, 24, 25, 26, 28, 30, 32, 33, 34, 35, 41, 42, 43, 46, 48, 50, 54, 61, 62, 63, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 89, 90, 91, 92, 93, 95, 96, 99, 100], "list": [0, 7, 8, 10, 15, 20, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 41, 42, 43, 44, 45, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 71, 73, 75, 77, 78, 81, 84, 85, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "make": [0, 1, 25, 27, 28, 32, 41, 46, 48, 55, 58, 59, 60, 61, 62, 64, 73, 75, 76, 77, 78, 80, 89, 91], "sure": [0, 28, 32, 33, 35, 42, 54, 62, 80], "alreadi": [0, 1, 25, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 63, 67, 68, 70, 75, 89, 92, 98], "present": [0, 7, 25, 27, 28, 32, 33, 35, 41, 42, 44, 51, 52, 54, 66, 68, 84, 93, 98], "us": [0, 1, 3, 4, 7, 8, 20, 25, 26, 27, 28, 30, 31, 32, 33, 35, 38, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 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], "github": [0, 3, 4, 32, 62, 64, 75, 76, 77, 81], "markdown": 0, "especi": [0, 25, 28, 32, 64, 77, 89], "block": [0, 25, 32, 44, 54, 58, 66, 73, 90], "veri": [0, 28, 32, 66, 90, 91], "appreci": 0, "when": [0, 1, 7, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 44, 51, 52, 54, 55, 56, 58, 59, 62, 63, 64, 66, 68, 70, 73, 75, 77, 78, 79, 80, 84, 87, 89, 91, 92, 95, 96, 98], "includ": [0, 1, 7, 28, 30, 32, 33, 34, 35, 41, 42, 52, 54, 55, 58, 59, 62, 67, 68, 73, 75, 76, 78, 84, 87, 91, 92, 95, 96], "follow": [0, 1, 3, 4, 7, 26, 32, 41, 58, 59, 60, 62, 73, 75, 76, 77, 78, 79, 80, 81, 87, 89, 92, 95, 96, 98, 99, 100], "inform": [0, 1, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 25, 26, 30, 32, 34, 42, 46, 48, 54, 59, 62, 63, 64, 66, 67, 68, 70, 71, 73, 75, 76, 77, 78, 79, 89, 96, 98, 100], "summari": [0, 28, 32], "problem": [0, 59, 73, 82], "what": [0, 29, 32, 46, 51, 58, 62, 63, 64, 78, 99], "behavior": [0, 8, 28, 32, 42, 43, 46, 47, 48, 87, 88, 90, 91, 100], "did": [0, 26], "you": [0, 1, 25, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 58, 59, 60, 62, 63, 64, 65, 66, 68, 69, 73, 75, 76, 77, 78, 79, 80, 81, 91, 92, 94], "observ": [0, 3, 4, 32, 42, 87], "encount": [0, 32, 35], "expect": [0, 3, 4, 24, 28, 30, 32, 33, 35, 42, 54, 59, 68, 76, 77, 84, 88, 92, 95], "thi": [0, 1, 3, 4, 8, 20, 24, 25, 26, 27, 28, 30, 32, 33, 35, 38, 41, 42, 43, 45, 46, 48, 49, 50, 51, 52, 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, 93, 95, 96, 97, 98, 99, 100], "known": [0, 32, 41], "work": [0, 25, 28, 32, 35, 42, 44, 49, 54, 63, 66, 68, 70, 73, 76, 77, 78, 84, 89, 91, 94, 98, 100], "around": [0, 8, 20, 27, 32, 62, 64], "step": [0, 10, 30, 32, 59, 60, 61, 64, 75, 78, 81, 98, 99], "reproduc": [0, 32, 46, 47, 48, 65, 90], "simplifi": [0, 59], "program": [0, 25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 73, 92, 99], "demonstr": [0, 58], "configur": [0, 1, 59, 66, 73, 77, 80, 85, 91, 97], "": [0, 1, 2, 7, 24, 25, 26, 28, 29, 30, 32, 33, 34, 35, 36, 41, 42, 50, 51, 52, 54, 55, 58, 61, 62, 66, 75, 76, 77, 80, 81, 82, 84, 87, 88, 89, 91, 92, 93, 95, 96, 97, 99, 100], "output": [0, 1, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 46, 48, 51, 54, 62, 66, 70, 73, 84, 87, 92, 93, 95, 98, 99], "ak": [0, 1, 3, 4, 5, 6, 7, 13, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 63, 64, 66, 67, 73, 75, 78, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100], "get_config": [0, 26], "like": [0, 2, 7, 27, 28, 30, 32, 42, 46, 48, 55, 60, 62, 63, 64, 66, 69, 73, 75, 78, 84, 85, 91, 92, 94, 97, 99, 100], "arkoudavers": 0, "version": [0, 3, 4, 25, 32, 56, 59, 62, 68, 73, 75, 76, 77, 79, 80], "server": [0, 1, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 38, 39, 42, 43, 46, 47, 48, 50, 51, 52, 54, 55, 61, 63, 64, 76, 77, 80, 82, 83, 87, 88, 89, 90, 91, 92, 93, 95, 96, 100], "wa": [0, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 51, 52, 54, 55, 63, 68, 69, 75, 77, 84, 92, 95, 96], "built": [0, 24, 25, 32, 42, 54, 60, 62, 63, 64, 73, 75, 77, 78, 84, 88, 89, 95, 100], "Be": [0, 28, 32, 33, 35, 42, 54, 58], "specif": [0, 8, 20, 28, 32, 35, 46, 48, 64, 67, 68, 69, 76, 78, 83, 84, 91], "exampl": [0, 3, 4, 5, 6, 7, 20, 24, 25, 26, 28, 30, 32, 33, 35, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 59, 62, 68, 73, 75, 77, 78, 80, 84, 86, 87, 88, 90, 91, 92, 93, 95, 96, 98, 99, 100], "appropri": [0, 28, 32, 35, 58, 62, 69, 73, 75, 79, 84], "base": [0, 1, 2, 3, 4, 7, 8, 17, 20, 24, 25, 27, 28, 31, 32, 33, 35, 38, 41, 42, 46, 49, 53, 55, 56, 62, 75, 77, 81, 83, 84, 85, 86, 87, 88, 89, 91, 95, 97, 100], "anoth": [0, 28, 30, 32, 35, 41, 42, 54, 68, 73, 77, 80, 84, 91, 92, 94, 95, 96, 100], "librari": [0, 1, 58, 80, 100], "e": [0, 1, 2, 7, 9, 25, 27, 28, 30, 32, 35, 41, 42, 43, 51, 54, 55, 58, 62, 63, 64, 76, 77, 79, 84, 87, 89, 90, 92, 96, 99, 100], "numpi": [0, 3, 4, 5, 6, 8, 20, 24, 25, 27, 29, 30, 32, 33, 37, 41, 42, 43, 46, 48, 51, 52, 54, 55, 58, 59, 66, 79, 82, 84, 87, 88, 89, 90, 93, 94, 95, 96, 98, 100], "panda": [0, 28, 32, 33, 35, 43, 52, 55, 58, 69, 71, 79, 84, 85, 89, 91], "scipi": [0, 3, 4, 32, 79], "link": [0, 1, 32, 35, 55, 62, 75, 76], "support": [0, 25, 27, 28, 29, 30, 32, 33, 35, 36, 41, 42, 43, 44, 46, 50, 51, 52, 54, 55, 58, 66, 69, 73, 76, 77, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "document": [0, 1, 57, 58, 59, 63, 64, 66, 71, 77, 78], "refer": [0, 3, 4, 28, 30, 32, 63, 66, 75, 77, 79, 92], "don": [0, 28, 32, 35, 54, 63, 64, 80], "have": [0, 1, 5, 6, 7, 25, 28, 30, 32, 33, 35, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55, 58, 61, 62, 63, 64, 66, 67, 68, 70, 75, 76, 77, 78, 79, 84, 87, 89, 90, 91, 92, 95, 96, 97], "anyth": [0, 32, 42, 62], "mind": [0, 20, 66, 80], "check": [0, 1, 7, 20, 24, 25, 28, 30, 32, 33, 35, 41, 42, 51, 54, 56, 58, 62, 63, 64, 82, 89, 98, 99, 100], "out": [0, 26, 28, 32, 41, 51, 63, 64, 67, 68, 70, 75, 78, 93, 94, 96], "our": [0, 32, 42, 58, 59, 61, 62, 66, 68, 73, 75, 80, 81, 84], "outstand": 0, "filter": [0, 28, 31, 32, 51, 84], "label": [0, 25, 28, 30, 32, 33, 45, 52, 89, 91, 92, 97], "first": [0, 7, 28, 30, 32, 35, 36, 41, 42, 43, 44, 52, 54, 56, 60, 64, 65, 66, 67, 68, 73, 75, 76, 78, 83, 84, 87, 90, 91, 92, 93, 97, 100], "identifi": [0, 7, 25, 32, 35, 42, 95], "befor": [0, 32, 55, 59, 75, 84], "start": [0, 7, 8, 10, 20, 25, 30, 32, 33, 37, 39, 42, 43, 51, 53, 54, 55, 68, 83, 86, 89, 90, 92, 94, 96, 100], "onc": [0, 28, 32, 35, 42, 52, 54, 60, 61, 62, 64, 66, 67, 70, 75, 80], "find": [0, 7, 25, 28, 30, 32, 40, 42, 44, 50, 52, 54, 56, 59, 62, 65, 76, 87, 92, 93, 98, 100], "creat": [0, 24, 25, 27, 28, 30, 32, 33, 35, 36, 40, 42, 43, 45, 51, 52, 54, 55, 57, 58, 59, 62, 64, 68, 70, 73, 75, 76, 77, 78, 79, 80, 83, 84, 88, 89, 91, 92, 93, 95], "intend": [0, 25, 27, 28, 32, 41, 42, 51, 54, 67, 73, 76, 77, 85, 91, 97], "leav": [0, 32, 41, 93], "comment": [0, 63, 78], "indic": [0, 7, 11, 14, 17, 24, 25, 26, 27, 28, 30, 32, 33, 35, 37, 39, 41, 42, 44, 51, 52, 53, 54, 55, 56, 66, 68, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 97, 98, 100], "mention": [0, 64], "bear": [0, 62, 76, 77], "r": [0, 28, 32, 59, 62, 66, 76, 77, 82], "u": [0, 27, 32, 43, 55, 62, 76, 77, 84], "dev": [0, 76, 77, 79], "awar": 0, "assign": [0, 25, 28, 30, 32, 52, 67, 68, 83, 89, 92, 96, 100], "avoid": [0, 61, 64], "anyon": 0, "duplic": [0, 28, 32, 91], "need": [0, 8, 25, 28, 32, 35, 42, 51, 52, 54, 58, 59, 62, 63, 64, 67, 75, 76, 77, 78, 80, 84, 91, 97], "assist": [0, 78], "want": [0, 1, 28, 32, 73, 77, 79, 91], "discuss": 0, "design": [0, 62, 84], "someon": [0, 62], "tag": [0, 32, 35, 38, 62, 64], "reach": 0, "git": [0, 64, 76, 77], "fork": [0, 75, 76, 77, 81], "workflow": [0, 32, 35, 56, 62, 78, 84], "recommend": [0, 32, 41, 46, 48, 60, 64, 70, 76, 79, 80, 81, 91, 96], "simpl": [0, 20, 66, 78, 93], "branch": [0, 58, 59, 62, 75], "own": [0, 1, 32, 55, 96, 100], "standard": [0, 8, 25, 30, 32, 42, 43, 46, 47, 48, 55, 58, 59, 60, 87, 92, 93], "laid": 0, "pep8": 0, "continu": [0, 62], "integr": [0, 30, 32, 35, 42, 43, 47, 48, 62, 84, 90, 92], "ha": [0, 8, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 51, 52, 54, 55, 60, 62, 63, 67, 68, 78, 84, 87, 89, 90, 91, 92, 94, 95, 96, 97], "linter": 0, "flake8": [0, 79], "verifi": [0, 1, 28, 32, 69, 84, 91], "all": [0, 7, 21, 24, 25, 26, 28, 30, 32, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 51, 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], "meet": 0, "requir": [0, 7, 8, 20, 26, 28, 30, 32, 33, 35, 37, 42, 43, 52, 60, 61, 63, 64, 68, 69, 70, 73, 78, 84, 90, 91, 92], "isort": 0, "black": 0, "typic": [0, 27, 32, 58, 63, 64, 89], "order": [0, 3, 4, 24, 25, 27, 28, 30, 32, 35, 41, 42, 43, 44, 51, 52, 53, 54, 56, 60, 68, 70, 75, 83, 86, 88, 89, 90, 91, 92, 93, 94, 96, 97, 100], "ensur": [0, 28, 32, 41, 62, 68, 75, 77, 91, 95], "consist": [0, 28, 32, 41, 66, 87, 91], "util": [0, 32, 35, 57, 62, 75, 76, 77], "line": [0, 36, 63, 67, 73, 78, 88, 99], "length": [0, 7, 25, 30, 32, 33, 35, 37, 39, 43, 44, 47, 48, 50, 51, 52, 54, 59, 68, 82, 87, 90, 92, 96, 97, 98, 100], "105": [0, 26], "paramet": [0, 3, 4, 5, 6, 7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 77, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "example_featur": 0, "py": [0, 1, 58, 59, 63, 75, 78, 79, 82], "fix": [0, 32, 41, 55, 62, 80, 100], "reformat": [0, 84], "done": [0, 28, 32, 64, 75, 78, 91], "1": [0, 1, 3, 4, 5, 6, 7, 10, 18, 23, 24, 25, 26, 28, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 56, 57, 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], "file": [0, 1, 20, 24, 25, 28, 30, 32, 33, 35, 36, 42, 50, 51, 54, 58, 60, 63, 64, 69, 70, 73, 75, 76, 77, 79, 80, 92, 100], "For": [0, 2, 7, 25, 30, 32, 35, 39, 43, 46, 47, 48, 53, 54, 55, 56, 58, 59, 63, 66, 71, 73, 75, 76, 77, 78, 81, 84, 86, 90, 92, 93, 94, 95, 96, 98, 100], "user": [0, 1, 24, 25, 27, 28, 30, 32, 33, 35, 38, 41, 42, 43, 45, 50, 51, 52, 54, 55, 56, 59, 62, 65, 66, 68, 69, 71, 73, 75, 76, 77, 78, 79, 80, 81, 84, 88, 89, 92, 95, 100], "pycharm": 0, "nice": 0, "interoper": 0, "tool": [0, 76, 77], "style": [0, 25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 91, 92, 95], "doc": [0, 3, 4, 28, 32, 58, 75, 76, 88], "string": [0, 1, 3, 4, 7, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44, 50, 51, 52, 53, 55, 56, 57, 58, 59, 62, 78, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98], "look": [0, 1, 58, 62, 63, 66, 78, 84, 99], "similar": [0, 32, 35, 54, 59, 66, 84, 95, 96, 100], "surround": 0, "function": [0, 1, 8, 20, 25, 52, 54, 59, 62, 63, 66, 67, 69, 70, 73, 78, 83, 84, 85, 88, 89, 91, 92, 93, 95, 96, 97, 98, 100], "space": [0, 1, 7, 32, 41, 43, 54, 55, 59, 75, 78, 90, 93, 100], "The": [0, 1, 2, 3, 4, 7, 8, 20, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 41, 42, 43, 44, 46, 47, 48, 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, 94, 96, 97, 98, 99, 100], "ci": 0, "fail": [0, 28, 32, 35, 41, 62, 84, 91, 95], "tab": [0, 62, 75], "ar": [0, 1, 7, 8, 20, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 46, 48, 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, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "lowercamelcas": 0, "variabl": [0, 30, 32, 35, 37, 42, 50, 51, 54, 59, 60, 76, 77, 78, 87, 92, 96, 100], "name": [0, 1, 2, 7, 20, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 38, 42, 43, 46, 47, 48, 51, 52, 54, 55, 56, 59, 60, 62, 66, 67, 68, 70, 75, 77, 78, 79, 83, 84, 85, 89, 90, 91, 92, 97], "procedur": 0, "var": [0, 1, 19, 30, 32, 42, 58, 83, 87, 92, 93], "ax": [0, 15], "0": [0, 3, 4, 5, 6, 7, 10, 15, 19, 20, 24, 25, 26, 28, 30, 32, 33, 35, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 59, 60, 66, 67, 68, 73, 76, 77, 79, 80, 82, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "real": [0, 13, 32, 43, 47, 48, 62, 68], "proc": [0, 58], "printit": 0, "x": [0, 3, 4, 5, 6, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 27, 28, 29, 30, 32, 35, 41, 42, 45, 51, 54, 56, 66, 80, 84, 87, 88, 89, 91, 92, 95, 96, 100], "writeln": 0, "uppercamelcas": 0, "class": [0, 43, 59, 83, 84, 85, 88, 89, 91, 92, 96, 97, 100], "foo": [0, 2, 32], "foopar": 0, "re": [0, 25, 26, 28, 30, 32, 75, 92, 99, 100], "confirm": [0, 62], "again": [0, 64, 66, 67, 75, 76], "realli": [0, 32, 54], "behav": [0, 24, 32, 88], "properli": [0, 63, 68, 76, 77], "thing": [0, 8, 20, 66], "note": [0, 1, 2, 3, 4, 7, 8, 20, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 60, 64, 66, 68, 70, 75, 77, 78, 80, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "test_": 0, "begin": [0, 32, 54, 94, 100], "otherwis": [0, 24, 25, 28, 29, 30, 32, 33, 35, 39, 42, 43, 44, 51, 52, 54, 56, 58, 81, 84, 88, 89, 91, 92, 95, 96, 98, 100], "pytest": [0, 65, 79], "ini": [0, 59], "so": [0, 1, 25, 27, 28, 30, 32, 35, 41, 42, 46, 48, 51, 52, 54, 59, 61, 62, 63, 64, 78, 79, 80, 84, 87, 88, 91, 92, 97, 98], "dure": [0, 1, 32, 35, 56, 64, 66, 68, 69, 78, 79], "wiki": [0, 3, 4, 32], "more": [0, 1, 7, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 24, 25, 28, 32, 33, 35, 41, 42, 52, 54, 55, 58, 59, 60, 62, 63, 64, 66, 68, 70, 71, 73, 75, 76, 77, 79, 84, 88, 89, 91, 95, 96, 100], "info": [0, 1, 25, 28, 32, 34, 38, 42, 54], "how": [0, 24, 25, 27, 28, 32, 33, 35, 41, 42, 51, 54, 58, 59, 62, 67, 79, 88, 92, 95], "http": [0, 3, 4, 11, 28, 32, 56, 58, 76, 77, 88], "com": [0, 3, 4, 32, 76, 77], "unit": [0, 1, 26, 28, 32, 33, 41, 52, 55, 56], "categoricaltest": 0, "v": [0, 51, 62, 76, 82, 96], "print": [0, 1, 25, 26, 28, 32, 34, 42, 49, 54, 80, 99], "m": [0, 32, 33, 39, 41, 51, 55, 59, 75, 80, 100], "categorical_test": 0, "singl": [0, 2, 7, 8, 20, 24, 25, 27, 28, 30, 32, 33, 35, 37, 41, 42, 44, 46, 48, 51, 54, 63, 64, 66, 68, 70, 75, 78, 82, 84, 90, 91, 92, 94, 96, 98], "from": [0, 3, 4, 5, 6, 7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 35, 36, 38, 39, 41, 42, 43, 45, 46, 47, 48, 51, 52, 54, 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], "foo_test": 0, "server_util": [0, 1], "parallel_start_test": 0, "d": [0, 8, 20, 25, 32, 43, 44, 45, 46, 48, 51, 52, 54, 55, 66, 82, 96, 98, 100], "post": [0, 62], "local": [0, 1, 24, 25, 26, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 56, 59, 60, 68, 73, 75, 76, 77, 84, 90, 92, 97, 99], "catch": 0, "common": [0, 7, 30, 32, 44, 58, 80, 84, 92, 98, 100], "failur": [0, 32, 35, 75, 84], "earli": 0, "usual": [0, 30, 32, 58, 92], "mypi": [0, 79], "everi": [0, 1, 28, 32, 59, 91, 100], "should": [0, 1, 8, 20, 25, 28, 29, 30, 32, 35, 41, 42, 43, 52, 54, 56, 58, 62, 63, 64, 66, 67, 68, 69, 73, 75, 76, 77, 79, 84, 91, 92, 95, 99], "least": [0, 27, 28, 32, 42, 51, 53, 54, 86, 96], "one": [0, 1, 2, 7, 8, 20, 25, 28, 29, 30, 32, 33, 35, 36, 41, 42, 43, 44, 46, 48, 51, 52, 54, 58, 59, 62, 64, 66, 67, 68, 70, 73, 76, 77, 78, 79, 80, 84, 87, 89, 90, 91, 92, 96, 98, 100], "associ": [0, 1, 32, 35, 46, 48, 52, 56, 59, 62, 84, 96, 97], "number": [0, 1, 7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 35, 37, 40, 41, 42, 43, 46, 47, 48, 51, 52, 54, 55, 56, 59, 60, 62, 63, 64, 66, 68, 76, 78, 80, 82, 84, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "titl": [0, 32, 54, 62], "bodi": 0, "close": [0, 7, 32, 43, 55, 58, 66, 90], "keyword": [0, 25, 32, 46, 48, 51, 52, 90, 97], "doubt": [0, 62], "take": [0, 14, 27, 30, 32, 38, 42, 46, 48, 60, 61, 63, 64, 66, 69, 84, 92], "some": [0, 8, 25, 28, 32, 60, 66, 70, 75, 76, 89, 91, 96, 100], "99999": 0, "pr": [0, 62], "implement": [0, 8, 25, 26, 27, 31, 32, 41, 42, 44, 46, 50, 51, 54, 58, 67, 73, 87, 90, 99, 100], "arg": [0, 7, 32, 43, 51, 52, 55, 58, 78, 90, 92], "super": 0, "cool": 0, "help": [0, 27, 32, 78], "keep": [0, 7, 28, 32, 66, 77, 80, 84, 91], "part": [0, 8, 20, 32, 51, 54, 80, 100], "those": [0, 8, 20, 32, 53, 66, 76, 78, 86, 94], "As": [0, 32, 41, 42, 52, 62, 67, 69, 76, 77, 84, 87, 95, 97, 100], "person": 0, "who": [0, 76, 77], "left": [0, 7, 27, 28, 32, 41, 42, 53, 54, 55, 86, 93, 100], "feedback": 0, "resolv": [0, 61, 73, 80], "convers": [0, 25, 32, 84, 89, 95, 100], "decid": 0, "author": 0, "address": [0, 26, 27, 32, 99], "try": [0, 29, 32, 33, 35, 42, 80], "feel": 0, "readi": [0, 60, 62, 76, 77], "necessari": [0, 58, 62, 75, 80], "track": [0, 63, 70], "ani": [0, 7, 21, 24, 25, 28, 30, 32, 33, 34, 35, 36, 41, 42, 43, 46, 48, 51, 52, 54, 58, 59, 62, 64, 68, 70, 76, 77, 83, 87, 91, 92, 93, 95, 96, 100], "which": [0, 7, 24, 25, 26, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 55, 58, 59, 61, 62, 64, 66, 75, 76, 77, 78, 82, 84, 86, 87, 88, 89, 90, 91, 92, 95, 96, 98, 99, 100], "outsid": [0, 67, 78], "scope": [0, 78], "member": 0, "quit": [0, 73], "bit": [0, 11, 25, 27, 32, 41, 42, 43, 51, 54, 59, 63, 84, 88, 90, 91, 95], "experi": [0, 84], "unsur": 0, "ask": 0, "2": [0, 3, 4, 5, 6, 7, 24, 25, 28, 30, 32, 33, 35, 39, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 56, 58, 59, 60, 62, 66, 67, 68, 75, 76, 77, 78, 79, 80, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "concurr": [0, 84], "approv": 0, "limit": [0, 8, 24, 25, 32, 37, 42, 43, 54, 55, 67, 70, 73, 84, 88, 89, 91, 95, 100], "except": [0, 7, 32, 42, 58, 66, 76, 100], "after": [0, 25, 28, 32, 54, 62, 64, 75, 91, 100], "pass": [0, 1, 7, 20, 25, 27, 28, 30, 32, 35, 41, 42, 46, 51, 52, 54, 62, 84, 91, 92, 97], "conflict": 0, "ideal": [0, 62], "rebas": 0, "master": [0, 62, 75], "prefer": [0, 77, 79, 81], "wrote": 0, "best": [0, 7, 32], "practic": [0, 30, 32, 42, 78, 87, 92], "els": [0, 58, 62], "To": [0, 1, 28, 30, 32, 41, 46, 48, 55, 58, 59, 60, 64, 67, 73, 75, 77, 78, 88, 89, 91, 93, 95, 100], "commit": [0, 62], "histori": [0, 26, 32, 57, 62], "allow": [0, 3, 4, 25, 27, 28, 32, 33, 35, 38, 42, 43, 46, 47, 48, 51, 54, 56, 59, 60, 66, 68, 69, 71, 78, 80, 84, 90, 96], "easi": [0, 32, 38, 59, 62, 66, 75], "manipul": 0, "squash": 0, "web": [0, 62], "interfac": [0, 62], "pierce314159": 0, "ethan": 0, "debandi99": 0, "consensu": [0, 62], "There": [1, 30, 32, 35, 59, 66, 75, 80, 90, 98], "can": [1, 7, 20, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 47, 48, 50, 51, 52, 54, 55, 58, 59, 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], "role": 1, "develop": [1, 25, 32, 62, 63, 64, 76, 77, 78, 81, 84], "highlight": [1, 62, 66], "variou": [1, 67], "avail": [1, 26, 32, 35, 42, 46, 59, 64, 68, 80, 84, 93], "separ": [1, 8, 27, 28, 32, 33, 35, 36, 42, 54, 59, 67, 68, 78, 84, 95, 100], "section": [1, 32, 41, 59, 61, 62, 63, 64, 66, 68, 73, 75, 79, 87], "These": [1, 20, 66, 68, 71, 73, 84], "env": [1, 63, 73, 75, 76, 77, 79], "arkouda_serv": [1, 26, 29, 32, 60, 63, 64, 73, 75, 78, 99], "arkouda_server_connection_info": 1, "set": [1, 7, 24, 25, 27, 28, 30, 32, 33, 35, 38, 41, 42, 43, 44, 50, 51, 52, 54, 55, 59, 60, 62, 67, 68, 75, 76, 77, 78, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100], "write": [1, 24, 25, 28, 32, 33, 35, 36, 38, 42, 51, 52, 54, 59, 62, 67, 84, 88], "port": [1, 25, 26, 28, 32, 35, 42, 51, 54, 63, 73, 82, 99], "startup": [1, 73, 83], "tune": 1, "buffer": 1, "messag": [1, 24, 25, 26, 28, 32, 33, 38, 42, 43, 51, 54, 58, 73, 84], "aggreg": [1, 28, 30, 32, 51, 56, 66, 83, 84, 92], "sort": [1, 7, 18, 25, 28, 30, 32, 41, 42, 44, 51, 52, 54, 56, 57, 62, 82, 83, 87, 89, 90, 92, 93, 98, 100], "non": [1, 7, 25, 30, 32, 40, 41, 42, 43, 44, 46, 47, 48, 53, 54, 61, 84, 86, 87, 90, 92, 93, 94, 100], "crazi": 1, "system": [1, 24, 25, 32, 42, 50, 54, 58, 59, 77, 78, 79, 80, 81, 84, 87, 88, 89, 95, 99, 100], "thei": [1, 20, 25, 26, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 56, 60, 62, 67, 68, 69, 76, 77, 84, 88, 89, 92, 97], "per": [1, 24, 25, 26, 28, 30, 32, 33, 35, 42, 51, 54, 58, 59, 64, 68, 78, 84, 87, 92], "task": [1, 26], "content": [1, 67, 84], "between": [1, 25, 26, 32, 37, 41, 42, 43, 54, 55, 56, 59, 66, 78, 90, 93, 95, 100], "compet": 1, "arkouda_server_aggregation_dst_buff_s": 1, "commun": [1, 32, 53, 62, 77, 86, 90], "arkouda_server_aggregation_src_buff_s": 1, "arkouda_server_aggregation_yield_frequ": 1, "frequenc": [1, 3, 4, 32, 55], "yield": [1, 24, 25, 28, 32, 33, 35, 42, 51, 54, 91, 94], "default": [1, 3, 4, 7, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 37, 38, 39, 41, 42, 43, 44, 46, 47, 48, 50, 51, 52, 54, 55, 56, 59, 61, 67, 68, 73, 77, 78, 82, 84, 87, 88, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100], "1024": [1, 32, 42], "build": [1, 30, 32, 59, 62, 65, 73, 76, 80, 92, 99], "chpl_flag": [1, 61], "A": [1, 2, 24, 25, 26, 27, 28, 30, 31, 32, 35, 41, 42, 43, 45, 46, 50, 51, 52, 54, 62, 66, 72, 82, 84, 87, 88, 89, 91, 93, 94, 95, 96, 97, 98, 100], "automat": [1, 25, 32, 35, 52, 68, 84, 89, 97], "chpl": [1, 58, 63, 75, 76, 77, 78], "addit": [1, 30, 32, 41, 45, 46, 48, 58, 60, 68, 70, 76, 95, 98, 99], "ones": [1, 10, 26, 28, 32, 41, 43, 59, 63, 82, 83, 87, 90], "here": [1, 32, 54, 56, 59, 60, 63, 64, 65, 66, 68, 70, 75, 77, 78, 79, 80, 81, 99], "smemtrack": 1, "true": [1, 7, 10, 11, 18, 24, 25, 26, 27, 28, 30, 32, 33, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55, 56, 59, 66, 77, 84, 85, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "lhdf5": 1, "lhdf5_hl": 1, "lzmq": 1, "liconv": 1, "lidn2": 1, "fast": [1, 25, 32, 54], "unless": [1, 32, 35, 41, 46, 48, 54, 100], "arkouda_develop": [1, 63], "o1": 1, "mutual": 1, "exclus": [1, 32, 37, 43, 44, 46, 47, 48, 66, 90, 94, 98], "arkouda_quick_compil": [1, 63, 77], "loop": 1, "invari": 1, "code": [1, 3, 4, 25, 32, 33, 35, 53, 58, 62, 63, 66, 68, 73, 78, 83, 86, 89], "motion": 1, "ccflag": 1, "o0": 1, "arkouda_print_passes_fil": 1, "time": [1, 25, 26, 28, 30, 32, 33, 35, 37, 41, 42, 46, 51, 52, 54, 55, 59, 61, 63, 64, 67, 68, 70, 78, 82, 84, 89, 92, 93, 96, 98, 100], "specifi": [1, 7, 8, 11, 15, 24, 27, 28, 30, 32, 33, 35, 36, 42, 43, 45, 46, 47, 48, 51, 52, 54, 55, 56, 59, 63, 69, 84, 87, 88, 90, 91, 92, 96], "mainli": 1, "nightli": 1, "infrastructur": 1, "chpl_debug_flag": 1, "regex_max_captur": 1, "integ": [1, 25, 27, 28, 30, 32, 35, 37, 41, 42, 43, 44, 46, 48, 55, 68, 83, 87, 88, 89, 90, 91, 92, 95, 96, 98, 100], "chang": [1, 27, 28, 32, 33, 35, 42, 46, 59, 62, 64, 73, 76, 77, 79, 84, 87, 91], "maximum": [1, 26, 28, 30, 32, 33, 42, 43, 47, 48, 56, 59, 84, 87, 90, 91, 92, 93], "captur": [1, 39, 100], "group": [1, 25, 28, 30, 32, 39, 51, 52, 53, 54, 59, 66, 68, 83, 86, 89, 91, 92, 97, 98, 100], "access": [1, 2, 26, 32, 35, 50, 52, 54, 66, 71, 77, 83, 84, 99], "match": [1, 20, 24, 25, 28, 30, 32, 33, 35, 40, 41, 42, 43, 51, 52, 54, 55, 57, 59, 83, 84, 87, 88, 90, 92, 95, 97, 99], "20": [1, 3, 4, 7, 28, 32, 41, 46, 48, 62, 66, 79, 80, 87, 88, 94], "folk": 1, "instal": [1, 32, 42, 63, 80, 99], "anaconda": [1, 73, 75, 80, 81], "through": [1, 32, 41, 58, 60, 62, 73, 77], "instruct": [1, 32, 54, 73, 76, 77, 79, 80, 81, 99], "altern": [1, 62, 63, 75, 77, 80], "setup": [1, 75, 80], "them": [1, 28, 32, 35, 44, 54, 62, 76, 84, 91, 98], "explicitli": [1, 28, 32, 44, 78, 98], "arkouda_zmq_path": 1, "zmq": [1, 75], "arkouda_hdf5_path": 1, "hdf5": [1, 24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 67, 69, 70, 71, 75, 79, 84, 92, 100], "arkouda_arrow_path": 1, "arrow": [1, 79], "arkouda_iconv_path": 1, "iconv": [1, 75, 79], "arkouda_idn2_path": 1, "idn2": [1, 75, 79], "ld_library_path": 1, "lib": [1, 75, 80, 98], "arkouda_skip_check_dep": 1, "skip": [1, 30, 32, 35, 54, 76, 84, 92, 98, 100], "autom": [1, 62], "do": [1, 7, 24, 25, 26, 28, 30, 32, 33, 35, 41, 42, 51, 52, 54, 59, 63, 64, 76, 78, 79, 81, 87, 88, 91, 92, 97], "repeat": [1, 25, 32, 51, 89, 96], "sinc": [1, 8, 32, 41, 46, 64, 89, 91, 95, 100], "dep": [1, 75, 76, 77], "been": [1, 25, 26, 28, 32, 35, 42, 44, 51, 54, 60, 61, 62, 75, 78, 87, 89, 90], "up": [1, 7, 25, 26, 28, 30, 32, 35, 41, 42, 44, 51, 54, 58, 61, 64, 65, 75, 76, 77, 78, 84, 87, 88, 89, 90, 98, 100], "arkouda_server_user_modul": [1, 78], "absolut": [1, 32, 41, 55, 78, 87], "must": [1, 5, 6, 7, 25, 26, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 45, 46, 48, 51, 52, 54, 55, 58, 60, 63, 66, 67, 73, 75, 76, 78, 87, 90, 91, 92, 94, 95, 96, 97, 99, 100], "also": [1, 7, 8, 25, 27, 30, 32, 37, 41, 43, 44, 51, 52, 54, 61, 63, 66, 67, 69, 70, 71, 73, 76, 80, 84, 90, 94, 95, 96, 98, 100], "servermodul": [1, 63, 64, 78], "cfg": [1, 63, 64, 78], "regist": [1, 25, 27, 28, 30, 32, 33, 34, 42, 51, 52, 54, 55, 56, 58, 83, 92], "readm": 1, "verbos": [1, 32, 34, 38], "arkouda_verbos": 1, "arkouda_server_host": 1, "hostnam": [1, 25, 26, 28, 32, 35, 42, 51, 54, 63, 73, 82, 99], "arkouda_server_port": 1, "arkouda_client_timeout": 1, "control": [1, 27, 32, 41, 95], "timeout": [1, 26, 99], "arkouda_full_stack_test": 1, "option": [1, 7, 25, 26, 27, 28, 30, 31, 32, 33, 35, 37, 39, 42, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55, 58, 59, 62, 68, 73, 75, 76, 77, 79, 82, 84, 90, 91, 92, 97, 98, 99, 100], "test_data_url": 1, "readalltest": 1, "read_all_test": 1, "arkouda_numlocal": 1, "where": [1, 16, 25, 26, 28, 30, 32, 33, 35, 36, 37, 41, 42, 43, 44, 50, 51, 54, 56, 58, 59, 60, 61, 68, 76, 77, 83, 84, 92, 93, 94, 95, 96, 98, 99, 100], "found": [1, 7, 28, 32, 33, 35, 42, 54, 58, 59, 66, 70, 77, 78, 80], "arkouda_hom": 1, "locat": [1, 30, 32, 33, 41, 42, 50, 52, 54, 59, 62, 64, 75, 80, 87, 92, 97, 100], "execut": [1, 26, 31, 32, 35, 42, 54, 58, 60, 61, 63, 64, 67, 75, 76, 78, 89, 99], "warn": [1, 32, 35, 38, 54, 84, 100], "subject": [1, 32, 55], "futur": [1, 27, 32, 35, 46, 54, 84, 93], "intern": [1, 8, 20, 32, 37, 42, 54, 62], "arkouda_client_directori": [1, 50], "parent": [1, 28, 32, 40], "token": [1, 26, 50, 73, 99], "txt": 1, "arkouda_tunnel_serv": 1, "ssh": 1, "tunnel": 1, "url": [1, 26, 73, 75, 99], "arkouda_key_fil": 1, "keyfil": 1, "arkouda_password": 1, "password": [1, 80], "arkouda_log_level": 1, "side": [1, 24, 25, 26, 28, 30, 32, 33, 34, 35, 39, 42, 43, 46, 48, 51, 52, 54, 55, 58, 62, 63, 73, 78, 80, 84, 87, 88, 89, 92, 93, 94, 95, 96, 99, 100], "log": [1, 3, 4, 5, 6, 13, 30, 32, 38, 41, 43, 45, 54, 83, 87, 92], "level": [1, 32, 38, 44, 52, 59, 63, 67, 68, 75, 76, 77, 78, 81, 84, 97, 98], "arkouda_client_mod": 1, "mode": [1, 24, 25, 27, 30, 32, 33, 35, 42, 51, 54, 83, 90, 92], "ui": 1, "api": [1, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 28, 30, 32, 56, 58, 72, 92, 95], "displai": [1, 27, 28, 32, 45, 52, 56, 75, 80, 91], "splash": 1, "cachedaccessor": [2, 32], "str": [2, 10, 11, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 50, 51, 52, 54, 55, 56, 59, 67, 84, 85, 87, 88, 89, 90, 91, 92, 95, 99, 100], "custom": [2, 32, 38, 58, 67, 75, 93], "properti": [2, 8, 20, 25, 28, 32, 33, 42, 51, 52, 55, 58, 68], "object": [2, 7, 8, 10, 20, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44, 45, 46, 50, 51, 52, 54, 55, 56, 58, 67, 68, 69, 70, 71, 80, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "descriptor": [2, 32, 54], "cach": [2, 25, 32, 54], "param": [2, 25, 32, 33, 35, 42, 51, 54, 59], "namespac": [2, 8, 20, 32, 35], "g": [2, 25, 27, 28, 30, 32, 35, 41, 42, 51, 54, 55, 56, 63, 64, 66, 76, 84, 87, 89, 90, 92, 96, 99, 100], "df": [2, 28, 32, 66, 91], "type": [2, 3, 4, 5, 6, 7, 8, 11, 20, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 59, 69, 75, 79, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 96, 97, 99, 100], "extens": [2, 25, 32, 33, 35, 42, 51, 54, 75, 84], "method": [2, 8, 25, 26, 27, 28, 30, 31, 32, 35, 41, 42, 43, 46, 47, 48, 50, 51, 54, 61, 66, 67, 83, 84, 89, 90, 92, 93, 95], "cl": [2, 32], "__init__": [2, 32], "assum": [2, 28, 30, 32, 35, 43, 44, 52, 62, 67, 68, 69, 76, 77, 81, 84, 91, 92, 97, 98], "seri": [2, 28, 32, 33, 43, 55, 57], "datafram": [2, 32, 33, 35, 45, 49, 52, 57, 69, 84, 97], "index": [2, 7, 10, 24, 25, 27, 28, 30, 32, 35, 37, 39, 42, 43, 44, 51, 52, 54, 57, 59, 66, 75, 82, 83, 84, 87, 89, 92, 93, 96, 97, 100], "argument": [2, 7, 27, 28, 30, 32, 41, 42, 46, 48, 51, 52, 54, 56, 58, 73, 78, 97], "data": [2, 11, 24, 25, 27, 28, 29, 30, 32, 33, 35, 41, 42, 43, 44, 45, 51, 52, 53, 54, 55, 56, 58, 59, 66, 69, 71, 72, 83, 85, 86, 88, 89, 90, 92, 96, 97, 99, 100], "datetimeaccessor": [2, 32], "stringaccessor": [2, 32], "date_oper": [2, 32], "string_oper": [2, 32], "power_divergenceresult": [3, 4, 32], "namedtupl": [3, 4, 17, 32], "statist": [3, 4, 30, 32, 42, 59, 83, 87, 92], "pvalu": [3, 4, 32], "result": [3, 4, 7, 25, 28, 30, 32, 33, 35, 37, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55, 58, 59, 66, 67, 68, 69, 77, 84, 87, 90, 91, 92, 95, 96, 97, 100], "power": [3, 4, 13, 32, 42, 72, 94], "diverg": [3, 4, 32], "test": [3, 4, 7, 25, 28, 32, 35, 44, 60, 62, 63, 64, 66, 73, 78, 91, 98], "float64": [3, 4, 5, 6, 12, 28, 29, 30, 32, 41, 42, 43, 44, 47, 48, 53, 59, 67, 68, 82, 86, 87, 90, 91, 92, 93, 95, 98], "chisquar": [3, 4, 32], "f_ob": [3, 4, 32], "f_exp": [3, 4, 32], "none": [3, 4, 7, 8, 10, 14, 15, 16, 19, 20, 21, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 40, 41, 42, 43, 45, 46, 47, 48, 49, 51, 52, 54, 55, 56, 59, 76, 77, 84, 85, 89, 90, 91, 92, 93, 95, 97, 99], "ddof": [3, 4, 30, 32, 42, 55, 87, 92, 93], "comput": [3, 4, 5, 6, 25, 26, 28, 30, 32, 37, 41, 42, 51, 54, 58, 66, 84, 87, 89, 91, 92, 93, 95, 96, 98, 100], "chi": [3, 4, 32], "squar": [3, 4, 13, 30, 32, 41, 42, 87, 92], "p": [3, 4, 7, 32, 42, 43], "valu": [3, 4, 7, 8, 17, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 37, 41, 42, 43, 44, 46, 47, 48, 51, 52, 54, 55, 56, 59, 66, 68, 70, 77, 82, 83, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 98, 99, 100], "pdarrai": [3, 4, 5, 6, 7, 24, 25, 27, 28, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 100], "int": [3, 4, 7, 8, 10, 11, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 50, 51, 52, 54, 55, 56, 58, 68, 84, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "delta": [3, 4, 30, 32, 37, 42, 87, 92, 93], "degre": [3, 4, 30, 32, 41, 42, 87, 92, 93], "freedom": [3, 4, 30, 32, 42, 87, 92, 93], "return": [3, 4, 5, 6, 7, 11, 20, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 67, 69, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 99, 100], "akstat": [3, 4, 32], "import": [3, 4, 5, 6, 25, 27, 28, 32, 33, 35, 41, 45, 50, 52, 54, 58, 62, 68, 73, 75, 78, 91, 93, 99], "connect": [3, 4, 5, 6, 25, 26, 28, 32, 33, 43, 50, 52, 58, 63, 80, 83, 84, 91], "arrai": [3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 59, 67, 68, 73, 82, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 97, 100], "10": [3, 4, 7, 25, 28, 30, 32, 35, 41, 42, 43, 45, 46, 47, 48, 51, 52, 53, 54, 56, 58, 59, 66, 75, 77, 79, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97], "30": [3, 4, 7, 32, 52, 63, 79, 88], "8": [3, 4, 5, 6, 28, 30, 32, 35, 41, 42, 43, 46, 47, 48, 51, 53, 54, 59, 66, 67, 77, 79, 84, 86, 87, 88, 90, 91, 92, 94, 95, 96], "333333333333334": [3, 4, 32], "03960235520756414": [3, 4, 32], "stat": [3, 4, 32, 59], "power_diverg": [3, 4, 32], "en": [3, 4, 32, 58], "wikipedia": [3, 4, 32], "org": [3, 4, 11, 28, 32, 56, 58, 88], "squared_test": [3, 4, 32], "gener": [3, 4, 11, 20, 25, 26, 28, 31, 32, 37, 38, 41, 42, 43, 45, 46, 47, 48, 50, 52, 55, 57, 58, 59, 63, 64, 66, 67, 68, 70, 75, 76, 80, 82, 84, 87, 90, 97], "html": [3, 4, 11, 28, 32, 56, 58, 75, 88], "lambda_": [3, 4, 32], "lambda": [3, 4, 32], "pearson": [3, 4, 28, 32, 42], "cressi": [3, 4, 32], "read": [3, 4, 24, 25, 28, 32, 33, 35, 36, 42, 52, 54, 67, 68, 69, 70, 88, 100], "likelihood": [3, 4, 30, 32, 42, 87, 92], "freeman": [3, 4, 32], "tukei": [3, 4, 32], "mod": [3, 4, 32, 42], "neyman": [3, 4, 32], "correspond": [3, 4, 7, 25, 27, 28, 30, 32, 33, 35, 36, 37, 39, 41, 42, 43, 50, 51, 52, 54, 58, 68, 70, 84, 87, 89, 91, 92, 93, 94, 96, 97, 100], "5": [3, 4, 5, 6, 7, 24, 25, 26, 28, 30, 32, 33, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 59, 66, 67, 68, 70, 77, 79, 84, 86, 87, 88, 90, 91, 92, 94, 95, 96, 98, 100], "3": [3, 4, 5, 6, 24, 28, 30, 32, 33, 35, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 56, 58, 59, 66, 67, 68, 76, 77, 79, 82, 83, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98, 100], "y": [3, 4, 5, 6, 32, 41, 42, 45, 60, 76], "109302162163285": [3, 4, 32], "04380595350226197": [3, 4, 32], "modifi": [3, 4, 28, 32, 63, 91], "scale": [3, 4, 25, 32, 45, 61, 66, 72], "2024": [3, 4, 32], "v1": [3, 4, 32], "12": [3, 4, 7, 28, 30, 32, 35, 41, 51, 54, 56, 59, 79, 87, 88, 92, 94, 96], "special": [4, 27, 32, 52, 57, 95, 97], "xlogi": [5, 6, 32], "pdarrayclass": [5, 6, 24, 25, 27, 28, 30, 32, 33, 35, 37, 39, 41, 43, 44, 47, 48, 51, 52, 53, 54, 57, 91], "np": [5, 6, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 24, 25, 28, 29, 30, 32, 37, 41, 42, 43, 45, 51, 54, 55, 66, 84, 87, 88, 89, 90, 91, 92, 93, 95, 96, 100], "datatyp": [5, 6, 32, 43, 68], "castabl": [5, 6, 32], "4": [5, 6, 24, 25, 28, 30, 32, 33, 35, 39, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 56, 59, 66, 68, 76, 77, 79, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98, 100], "6": [5, 6, 7, 24, 28, 30, 32, 33, 35, 41, 42, 43, 44, 51, 54, 56, 59, 66, 76, 77, 79, 80, 82, 84, 87, 88, 90, 91, 92, 93, 94, 96, 98, 100], "7": [5, 6, 28, 30, 32, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 56, 66, 76, 77, 79, 84, 86, 87, 88, 90, 91, 92, 94, 96, 98], "6094379124341003": [5, 6, 32], "5835189384561099": [5, 6, 32], "8377304471659395": [5, 6, 32], "317766166719343": [5, 6, 32], "00000000000000000": [5, 6, 28, 32, 91], "4657359027997265": [5, 6, 32], "4930614433405491": [5, 6, 32], "9314718055994531": [5, 6, 32], "nonuniqueerror": [7, 32], "valueerror": [7, 25, 26, 28, 30, 32, 33, 35, 36, 37, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 84, 86, 87, 89, 90, 92, 93, 96, 97, 99, 100], "inappropri": [7, 32], "correct": [7, 19, 28, 32, 58, 63, 76, 80, 82, 91], "map": [7, 25, 26, 27, 28, 32, 35, 36, 46, 48, 52, 54, 56, 84, 91, 100], "multipl": [7, 28, 32, 35, 41, 51, 55, 58, 59, 60, 66, 68, 70, 71, 78, 82, 84, 85, 87, 91, 96], "spars": [7, 30, 32, 56, 92, 95], "sequenc": [7, 25, 27, 32, 33, 41, 42, 43, 44, 51, 53, 56, 86, 90, 95, 96, 98, 100], "dens": [7, 25, 30, 32, 92], "replac": [7, 28, 32, 35, 40, 42, 51, 54, 60, 62, 68, 77, 78, 79, 96, 100], "queri": [7, 32, 84], "item": [7, 25, 28, 32, 42, 43, 44, 52, 56, 89, 91, 97, 98], "search": [7, 25, 32, 39, 44, 54, 83, 89], "each": [7, 24, 25, 26, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 44, 46, 48, 51, 52, 54, 55, 56, 58, 59, 66, 68, 75, 78, 84, 87, 88, 89, 91, 92, 93, 95, 96, 97, 98, 100], "row": [7, 28, 30, 32, 33, 35, 42, 44, 51, 53, 54, 57, 66, 67, 84, 86, 91, 92, 96, 98], "same": [7, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 50, 51, 52, 53, 54, 55, 62, 66, 67, 68, 70, 76, 77, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 100], "shape": [7, 8, 10, 15, 20, 24, 25, 28, 32, 33, 41, 42, 46, 48, 52, 54, 56, 68, 83, 87, 88, 89, 95], "dtype": [7, 8, 10, 11, 19, 20, 24, 25, 28, 30, 32, 33, 35, 37, 40, 41, 42, 43, 44, 46, 47, 48, 51, 53, 54, 55, 57, 58, 59, 66, 82, 83, 84, 87, 88, 90, 91, 92, 93, 94, 95, 98, 100], "its": [7, 11, 13, 14, 15, 16, 17, 18, 21, 25, 29, 32, 33, 41, 42, 51, 52, 54, 62, 68, 77, 87, 95, 96, 97, 100], "int64": [7, 12, 25, 27, 28, 29, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 46, 47, 48, 51, 53, 54, 55, 58, 59, 66, 67, 68, 82, 84, 86, 87, 89, 90, 91, 92, 93, 95, 96, 98, 100], "in1d_interv": [7, 32], "val": [7, 29, 30, 32, 51, 52, 56, 92, 96], "interv": [7, 32, 41, 43, 46, 48, 55, 90, 93], "symmetr": [7, 32, 44, 51, 66, 83, 98], "fals": [7, 16, 18, 19, 21, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 51, 52, 54, 55, 56, 59, 66, 82, 84, 85, 87, 89, 90, 91, 92, 95, 96, 98, 100], "membership": [7, 32, 44, 98], "half": [7, 32, 46, 48], "python": [7, 8, 20, 24, 25, 26, 27, 31, 32, 42, 43, 44, 50, 52, 54, 59, 72, 75, 80, 81, 83, 84, 87, 88, 89, 90, 91, 94, 95, 100], "float": [7, 10, 11, 19, 26, 28, 32, 41, 42, 43, 46, 47, 48, 87, 90, 91, 93, 95], "tupl": [7, 8, 10, 11, 15, 16, 19, 20, 21, 25, 27, 28, 29, 30, 32, 37, 41, 42, 43, 44, 47, 48, 51, 52, 54, 56, 66, 84, 89, 90, 91, 92, 93, 95, 97, 98, 100], "overlap": [7, 28, 32, 40, 54, 100], "lower_bounds_inclus": [7, 32], "upper_bounds_exclus": [7, 32], "bool": [7, 10, 11, 12, 15, 16, 18, 19, 21, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 59, 68, 82, 84, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "boolean": [7, 11, 25, 28, 30, 32, 39, 41, 42, 44, 51, 52, 54, 66, 68, 87, 89, 91, 92, 94, 95, 96, 97, 98, 100], "contain": [7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 39, 41, 42, 43, 44, 45, 51, 52, 53, 54, 55, 57, 58, 59, 63, 64, 66, 67, 68, 73, 78, 82, 83, 84, 86, 87, 89, 90, 91, 92, 95, 96, 97, 98, 100], "rang": [7, 25, 28, 32, 33, 35, 37, 41, 42, 43, 46, 47, 48, 51, 52, 54, 55, 82, 84, 87, 90, 91, 93, 97, 100], "defin": [7, 8, 20, 25, 27, 28, 29, 30, 31, 32, 33, 35, 38, 41, 42, 43, 51, 52, 54, 55, 58, 62, 88, 89, 90, 91, 92, 93, 95], "low": [7, 27, 28, 32, 41, 42, 43, 46, 47, 48, 66, 84, 90], "high": [7, 27, 28, 32, 41, 42, 43, 46, 47, 48, 66, 90], "inclus": [7, 28, 32, 41, 42, 43, 46, 47, 48, 55, 87, 90, 94], "equival": [7, 24, 25, 28, 30, 32, 35, 41, 42, 43, 44, 53, 54, 55, 56, 63, 66, 86, 87, 88, 90, 98], "But": [7, 32], "faster": [7, 25, 32, 44, 63, 89, 98], "mani": [7, 25, 32, 59, 89, 92], "second": [7, 26, 32, 36, 41, 43, 44, 52, 54, 55, 56, 58, 59, 63, 66, 87, 90, 95, 97, 98, 99, 100], "trivial": [7, 32], "size": [7, 8, 20, 24, 25, 28, 29, 30, 32, 33, 35, 37, 41, 42, 43, 46, 47, 48, 51, 52, 53, 54, 55, 56, 59, 66, 68, 69, 70, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 100], "interval_lookup": [7, 32], "kei": [7, 25, 28, 30, 32, 33, 34, 35, 36, 41, 44, 52, 58, 66, 68, 78, 80, 85, 91, 92, 97, 98], "fillvalu": [7, 32], "tiebreak": [7, 32], "hierarch": [7, 32], "appli": [7, 28, 30, 32, 41, 59, 87, 91, 92, 100], "over": [7, 25, 28, 32, 35, 41, 42, 46, 48, 51, 54, 82, 87, 88, 89, 91, 93, 95, 96, 100], "express": [7, 25, 32, 35, 54, 59, 83, 84, 89, 91, 94, 95], "upper_bounds_inclus": [7, 32], "entri": [7, 28, 32, 42, 52, 54, 58, 59, 91], "scalar": [7, 25, 32, 41, 42, 51, 52, 58, 59, 82, 83, 89, 93, 94, 96, 97], "numer": [7, 28, 32, 42, 43, 45, 52, 53, 57, 68, 83, 84, 86, 89, 95, 97, 100], "than": [7, 8, 24, 25, 28, 30, 32, 33, 35, 41, 42, 43, 44, 46, 48, 51, 52, 53, 54, 60, 62, 63, 70, 84, 86, 88, 89, 90, 91, 92, 95, 98, 100], "lowest": [7, 28, 32, 42, 43, 46, 48], "chosen": [7, 32, 41, 42, 87, 95, 96], "given": [7, 20, 25, 28, 30, 32, 35, 42, 43, 44, 46, 48, 54, 55, 56, 59, 79, 84, 89, 90, 91, 92, 100], "valid": [7, 20, 25, 32, 35, 41, 43, 52, 54, 84, 89, 95, 100], "is_cosort": [7, 32], "iff": [7, 25, 32, 33, 42, 52, 54, 55, 87, 93], "cosort": [7, 32], "were": [7, 24, 30, 32, 33, 35, 42, 51, 54, 63, 78, 88, 92, 96, 100], "column": [7, 25, 28, 30, 32, 33, 35, 42, 45, 51, 52, 53, 54, 66, 67, 70, 71, 84, 86, 92, 96, 97], "tabl": [7, 26, 32, 34, 42, 51, 54, 58, 59, 79, 95, 96], "cosorted": [7, 32], "rais": [7, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 47, 48, 50, 51, 52, 53, 54, 55, 58, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "typeerror": [7, 25, 27, 28, 29, 30, 32, 33, 35, 37, 38, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 55, 58, 84, 86, 87, 89, 90, 92, 93, 97, 98, 100], "left_align": [7, 32], "right": [7, 27, 28, 32, 42, 46, 53, 54, 55, 62, 86, 91, 94, 99, 100], "two": [7, 23, 25, 27, 28, 30, 32, 33, 37, 41, 42, 43, 44, 51, 52, 54, 55, 56, 66, 67, 76, 78, 84, 87, 90, 92, 98, 100], "impli": [7, 32, 94], "discard": [7, 25, 32, 89], "appear": [7, 25, 28, 30, 32, 33, 35, 42, 44, 52, 54, 62, 92, 93], "lookup": [7, 32, 33, 52], "domain": [7, 32], "uniqu": [7, 17, 25, 28, 30, 32, 33, 41, 42, 44, 51, 52, 54, 66, 68, 83, 84, 89, 92, 93, 94, 96, 97, 98, 100], "treat": [7, 24, 27, 28, 29, 32, 53, 59, 66, 86, 88, 91], "evalu": [7, 32, 42, 87, 93], "while": [7, 32, 35, 53, 64, 68, 70, 75, 80, 84, 86], "cannot": [7, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 51, 52, 54, 55, 70, 80, 84, 88, 89, 92, 95, 100], "other": [7, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 46, 48, 51, 53, 54, 55, 59, 63, 64, 66, 84, 85, 86, 87, 89, 92, 96, 98, 100], "complex": [7, 32, 73], "achiev": [7, 32, 75], "arang": [7, 10, 24, 28, 30, 32, 35, 41, 42, 43, 44, 45, 51, 52, 58, 66, 83, 84, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98], "desir": [7, 26, 27, 32, 41, 42, 43, 46, 47, 48, 50, 59, 60, 73, 78, 87, 90, 93, 95, 99, 100], "word": [7, 32, 46, 48], "keys1": [7, 32], "twenti": [7, 32], "_": [7, 32, 39, 54, 100], "keys2": [7, 32], "three": [7, 32, 43, 44, 54, 55, 75, 90, 94, 95, 100], "four": [7, 32, 44, 54, 55, 90, 100], "five": [7, 32, 44, 54, 90, 100], "21": [7, 32, 41, 87, 88], "22": [7, 32, 87, 88], "23": [7, 32, 42, 88], "24": [7, 32, 33, 41, 42, 52, 59, 79, 87, 88], "25": [7, 30, 32, 35, 42, 43, 52, 88, 90, 92], "args1": [7, 32], "thirti": [7, 32], "args2": [7, 32], "aku": [7, 32, 33, 49, 85], "direct": [7, 32, 62, 68, 75], "intermedi": [7, 32], "revkei": [7, 32], "revindic": [7, 32], "revarg": [7, 32], "idx": [7, 28, 32, 33, 66], "right_align": [7, 32], "hand": [7, 32, 62, 94], "logic": [7, 24, 25, 32, 41, 43, 47, 48, 51, 54, 58, 83, 88, 90, 93, 96], "surviv": [7, 32], "search_interv": [7, 32], "uint": [7, 28, 32, 35, 42, 43, 54, 67], "compon": [7, 25, 27, 28, 30, 32, 33, 34, 42, 51, 52, 54, 55, 56, 59, 68, 70, 92], "dimens": [7, 24, 25, 28, 32, 41, 42, 54, 66, 68, 88, 89, 95, 96], "multi": [7, 24, 27, 30, 32, 35, 44, 52, 66, 85, 88, 90, 92, 95, 97, 98], "dimension": [7, 24, 32, 41, 43, 52, 84, 88, 95, 97], "satisfi": [7, 28, 32, 35], "condit": [7, 16, 28, 32, 41, 42, 87], "11": [7, 28, 32, 41, 51, 56, 59, 64, 66, 67, 87, 88, 91, 93, 94, 96], "end": [7, 25, 28, 32, 37, 39, 41, 42, 43, 51, 54, 55, 61, 83, 89, 90, 94, 96, 100], "9": [7, 25, 28, 30, 32, 35, 41, 42, 43, 51, 53, 54, 56, 59, 66, 76, 77, 84, 86, 87, 88, 90, 91, 92, 93, 94, 96, 100], "15": [7, 25, 28, 32, 46, 48, 54, 77, 88, 94], "bi_start": [7, 32], "bigint_from_uint_arrai": [7, 32, 42, 43], "cast": [7, 8, 27, 32, 41, 42, 43, 54, 58, 83, 84, 90, 100], "uint64": [7, 12, 27, 29, 30, 32, 41, 42, 43, 47, 48, 53, 59, 68, 82, 86, 87, 90, 91, 93, 95, 100], "bi_end": [7, 32], "bi_val": [7, 32], "92233720368547758091": [7, 32], "92233720368547758090": [7, 32], "166020696663385964564": [7, 32], "36893488147419103233": [7, 32], "92233720368547758085": [7, 32], "92233720368547758095": [7, 32], "110680464442257309696": [7, 32], "110680464442257309708": [7, 32], "166020696663385964574": [7, 32], "unsqueez": [7, 32], "zero_up": [7, 32], "wrapper": [8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 27, 32, 95], "ndarrai": [8, 20, 24, 25, 32, 42, 43, 45, 51, 54, 66, 84, 87, 88, 89, 95, 96, 100], "differ": [8, 25, 26, 27, 28, 30, 32, 33, 35, 37, 41, 42, 43, 44, 50, 51, 52, 54, 55, 56, 58, 59, 64, 66, 67, 68, 70, 76, 77, 83, 84, 88, 90, 91, 92, 93, 98, 99], "particular": [8, 78], "promot": [8, 58], "rule": [8, 32, 41, 95], "subset": [8, 25, 26, 28, 31, 32, 51, 78, 87, 91, 96], "goal": 8, "minim": [8, 28, 32, 63, 64, 90, 91], "compliant": 8, "onli": [8, 20, 25, 28, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 46, 51, 52, 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, 95, 96, 97, 98, 100], "subclass": 8, "n": [8, 20, 25, 28, 30, 32, 35, 41, 42, 43, 44, 46, 47, 48, 51, 52, 54, 55, 67, 77, 79, 82, 87, 88, 89, 90, 91, 92, 96, 97], "docstr": [8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 58], "restrict": [8, 20], "usag": [8, 20, 28, 32, 33, 52, 65, 73, 82, 96, 99], "attribut": [8, 24, 25, 28, 33, 35, 42, 54, 55, 84, 88, 95], "underscor": [8, 20], "construct": [8, 20, 25, 32, 43, 46, 51, 54, 58, 66, 83, 92, 94], "directli": [8, 20, 25, 32, 42, 52, 53, 54, 66, 75, 86, 88, 89, 91, 95, 100], "rather": [8, 20, 25, 28, 32, 54], "creation": [8, 20, 25, 32, 58, 62, 83], "asarrai": [8, 10, 20], "devic": [8, 10, 20], "_type": [8, 10, 11, 19], "mt": [8, 20], "ndim": [8, 20, 24, 25, 32, 42, 54, 83, 88, 89, 95], "ellipsi": [8, 10, 11, 15, 16, 19, 20, 21, 32, 42, 43, 47, 48, 56], "to_devic": [8, 20], "stream": [8, 20, 32, 46, 48, 63], "to_ndarrai": [8, 20, 24, 25, 27, 32, 33, 41, 42, 43, 45, 51, 54, 55, 66, 83, 84, 88, 89, 93, 95, 96, 100], "convert": [8, 20, 24, 25, 27, 28, 32, 33, 41, 42, 43, 51, 52, 54, 55, 56, 67, 84, 88, 89, 91, 95, 96, 97, 98, 100], "tolist": [8, 20], "nest": [8, 20, 32, 35, 68, 84], "inf": [9, 32, 41], "nan": [9, 28, 30, 32, 41, 52, 91, 92, 95], "pi": [9, 32, 41], "stop": [10, 26, 32, 43, 90, 94], "_array_object": [10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 23], "obj": [10, 32, 35, 56], "nestedsequ": 10, "supportsbufferprotocol": [10, 20], "copi": [10, 11, 15, 24, 28, 32, 33, 35, 51, 53, 96], "empti": [10, 27, 28, 30, 32, 35, 41, 42, 44, 51, 52, 54, 75, 87, 90, 91, 93, 97], "empty_lik": 10, "ey": 10, "n_row": 10, "n_col": 10, "k": [10, 32, 42, 59, 87, 93], "from_dlpack": 10, "full": [10, 25, 32, 39, 41, 43, 45, 54, 55, 61, 63, 73, 75, 77, 81, 89, 100], "fill_valu": [10, 32, 43], "full_lik": [10, 32, 43], "linspac": [10, 30, 32, 41, 43, 83, 87, 90, 92, 95], "num": [10, 26, 29, 32, 41], "endpoint": [10, 32, 46, 48], "meshgrid": 10, "xy": 10, "ones_lik": [10, 32, 43, 83, 90], "tril": 10, "triu": 10, "zero": [10, 30, 32, 41, 42, 43, 62, 83, 90, 92, 94, 95], "zeros_lik": [10, 32, 43, 83, 90], "astyp": [11, 28, 32, 42, 54], "can_cast": 11, "from_": 11, "compat": [11, 13, 14, 15, 16, 17, 18, 21, 25, 28, 32, 42, 51, 55, 56, 91, 92], "finfo_object": 11, "ep": 11, "max": [11, 19, 30, 32, 41, 42, 51, 54, 59, 83, 87, 92, 93, 100], "min": [11, 19, 30, 32, 41, 42, 51, 59, 83, 87, 92, 93], "smallest_norm": 11, "iinfo_object": 11, "isdtyp": 11, "kind": [11, 29, 32], "whether": [11, 25, 28, 30, 32, 35, 37, 39, 41, 44, 51, 52, 54, 55, 66, 84, 89, 96, 97, 98, 100], "latest": [11, 32, 56, 58, 76, 77, 80], "api_specif": [11, 32, 56], "result_typ": 11, "arrays_and_dtyp": 11, "complex128": [12, 29, 32], "complex64": [12, 29, 32], "float32": [12, 29, 32, 87, 90, 93], "int16": [12, 29, 32, 87, 90, 93, 95, 100], "int32": [12, 29, 32, 87, 90, 93, 95, 100], "int8": [12, 29, 32, 87, 90, 93, 95, 100], "uint16": [12, 29, 32, 87, 90, 93, 95, 100], "uint32": [12, 29, 32, 35, 84, 87, 90, 93, 95, 100], "uint8": [12, 29, 32, 41, 54, 68, 87, 90, 93, 95, 100], "ab": [13, 32, 41, 55, 83, 87], "aco": 13, "arcco": [13, 32, 41], "acosh": 13, "arccosh": [13, 32, 41], "x1": [13, 16, 23], "x2": [13, 16, 23], "asin": 13, "arcsin": [13, 32, 41], "asinh": 13, "arcsinh": [13, 32, 41], "atan": 13, "arctan": [13, 32, 41], "atan2": 13, "arctan2": [13, 32, 41], "atanh": 13, "arctanh": [13, 32, 41], "bitwise_and": 13, "bitwise_invert": 13, "invert": [13, 30, 32, 44, 98], "bitwise_left_shift": 13, "left_shift": 13, "bitwise_or": 13, "bitwise_right_shift": 13, "right_shift": 13, "bitwise_xor": 13, "ceil": [13, 32, 41], "conj": 13, "co": [13, 30, 32, 41, 43, 83, 87, 92], "cosh": [13, 32, 41], "divid": [13, 32, 42], "equal": [13, 28, 32, 37, 41, 46, 48, 68, 70, 93, 96], "exp": [13, 32, 41, 43, 83, 87], "expm1": [13, 32, 41], "floor": [13, 32, 41, 42], "floor_divid": [13, 32, 42], "greater": [13, 32, 43, 46, 48, 90], "greater_equ": 13, "imag": 13, "isfinit": [13, 32, 41], "isinf": [13, 32, 41], "isnan": [13, 32, 41], "less": [13, 25, 30, 32, 33, 42, 46, 48, 51, 54], "less_equ": 13, "log10": [13, 32, 41], "log1p": [13, 32, 41], "log2": [13, 32, 41], "logaddexp": 13, "logical_and": 13, "logical_not": 13, "logical_or": 13, "logical_xor": 13, "multipli": [13, 30, 32, 46, 48, 58, 92], "neg": [13, 32, 43, 46, 51, 61, 90, 94, 96], "not_equ": 13, "posit": [13, 28, 32, 39, 40, 42, 52, 54, 94, 97, 100], "pow": 13, "remaind": [13, 32, 42, 54, 100], "round": [13, 32, 41, 59], "sign": [13, 32, 35, 41, 42, 46, 48, 84, 91, 95], "sin": [13, 32, 41, 83, 87], "sinh": [13, 32, 41], "sqrt": [13, 30, 32, 42, 87, 92], "subtract": 13, "tan": [13, 32, 41], "tanh": [13, 32, 41], "trunc": [13, 32, 41], "axi": [14, 15, 16, 18, 19, 21, 23, 28, 32, 33, 45, 51, 52, 53, 86, 91, 96, 97], "broadcast_arrai": 15, "broadcast_to": 15, "broadcast": [15, 30, 32, 41, 42, 56, 83, 87, 92], "concat": [15, 28, 32, 33, 51, 52, 91, 97], "concaten": [15, 25, 28, 32, 44, 51, 52, 54, 56, 58, 83, 96, 97, 100], "expand_dim": 15, "flip": 15, "permute_dim": 15, "transpos": [15, 51, 84], "reshap": [15, 24, 32, 42, 83, 88], "roll": 15, "shift": 15, "squeez": 15, "stack": [15, 100], "argmax": [16, 30, 32, 42, 51, 83, 87, 92, 93], "keepdim": [16, 19, 21], "argmin": [16, 30, 32, 42, 51, 83, 87, 92, 93], "nonzero": [16, 30, 32, 40, 54, 100], "uniqueallresult": 17, "count": [17, 28, 30, 32, 40, 41, 42, 51, 52, 54, 59, 66, 83, 87, 92, 96, 100], "inverse_indic": 17, "uniquecountsresult": 17, "uniqueinverseresult": 17, "unique_al": 17, "unique_count": 17, "unique_invers": 17, "unique_valu": [17, 32, 41, 42, 93], "argsort": [18, 25, 26, 28, 30, 32, 33, 42, 53, 83, 86, 87, 89, 91, 92, 100], "descend": [18, 28, 32, 43, 52, 90, 91, 97], "stabl": [18, 32, 53, 86, 88], "mean": [19, 26, 28, 30, 32, 35, 42, 43, 46, 48, 50, 51, 54, 59, 83, 84, 87, 92, 93], "prod": [19, 30, 32, 42, 51, 83, 87, 92, 93], "prod_sum_dtyp": 19, "std": [19, 30, 32, 42, 55, 83, 87, 92, 93], "sum": [19, 28, 30, 32, 41, 42, 51, 55, 56, 83, 87, 92, 93], "annot": 20, "aren": [20, 76, 77], "signatur": [20, 31, 58], "input": [20, 25, 27, 28, 30, 41, 42, 43, 44, 51, 53, 55, 58, 62, 84, 86, 87, 89, 92, 95, 97, 98], "pycapsul": 20, "supportsdlpack": 20, "protocol": 20, "proto": 20, "def": [20, 58, 67, 78], "meth": 20, "self": [20, 25, 28, 32, 42, 51, 54, 84, 85, 88, 89, 91, 95, 96, 97, 100], "Such": 20, "primarili": [20, 84], "static": [20, 25, 28, 30, 32, 33, 42, 51, 52, 54, 92], "checker": 20, "recogn": 20, "structur": [20, 25, 28, 32, 51, 66, 70, 91, 92, 95, 96, 100], "subtyp": 20, "duck": 20, "c": [20, 24, 25, 28, 32, 33, 42, 43, 44, 45, 51, 52, 54, 59, 61, 63, 76, 82, 88, 91, 95, 96, 98, 100], "func": 20, "pep": 20, "544": 20, "decor": 20, "runtime_check": 20, "act": [20, 32, 42, 58], "runtim": [20, 26, 61], "presenc": 20, "ignor": [20, 28, 30, 32, 35, 41, 55, 84, 91, 95], "genproto": 20, "linalg": [22, 32, 57], "matmul": 23, "matrix": [23, 28, 30, 32, 56, 92], "product": [23, 30, 32, 41, 42, 43, 84, 87, 88, 92, 93], "matrix_transpos": 23, "tensordot": 23, "vecdot": 23, "arrayview": [24, 32, 35, 41, 42, 83, 84, 95], "row_major": [24, 32, 42, 88], "view": [24, 32, 62, 66, 71, 75, 81, 88, 95], "arraryview": [24, 32, 88], "similarli": [24, 32, 59, 66, 88], "store": [24, 27, 28, 30, 32, 33, 35, 43, 47, 48, 50, 54, 59, 67, 68, 71, 80, 84, 88, 89, 90, 92, 96, 100], "being": [24, 28, 32, 33, 35, 41, 42, 52, 66, 68, 69, 70, 78, 84, 88, 91, 94, 97], "element": [24, 25, 28, 30, 32, 36, 37, 39, 41, 42, 43, 44, 51, 52, 54, 55, 58, 66, 78, 83, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 100], "int_scalar": [24, 25, 28, 29, 30, 32, 35, 41, 42, 43, 47, 48, 51, 53, 54, 55, 86, 87, 88, 90, 92, 93, 95], "items": [24, 32, 42, 43, 54, 83, 84, 88, 95], "byte": [24, 25, 28, 29, 32, 33, 35, 37, 42, 43, 52, 54, 56, 68, 73, 84, 88, 89, 91, 95, 100], "By": [24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 44, 51, 54, 55, 88, 92, 98, 100], "f": [24, 25, 32, 41, 42, 43, 54, 73, 76, 77, 79, 84, 87, 88, 100], "column_major": [24, 32, 42, 88], "objtyp": [24, 25, 28, 30, 32, 33, 42, 51, 52, 54, 68], "to_hdf": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54, 68, 71, 83, 84, 92], "prefix_path": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54, 92], "dataset": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54, 67, 68, 70, 71, 92, 100], "truncat": [24, 25, 27, 30, 32, 33, 35, 41, 42, 51, 54, 68, 70, 92], "file_typ": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54, 92], "distribut": [24, 25, 27, 28, 30, 32, 33, 35, 42, 43, 45, 46, 47, 48, 51, 54, 73, 76, 77, 84, 87, 88, 89, 90, 92, 95, 98, 100], "save": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 59, 60, 62, 63, 68, 69, 70, 84, 89, 92, 98], "path": [24, 28, 32, 33, 35, 36, 42, 50, 59, 64, 75, 76, 77, 78, 80, 84], "append": [24, 25, 28, 30, 32, 33, 35, 42, 44, 51, 54, 68, 70, 83, 90, 92, 100], "overwrit": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 92, 95], "exist": [24, 25, 26, 28, 30, 32, 33, 35, 36, 42, 43, 51, 54, 68, 70, 75, 90, 91, 92, 99], "format": [24, 25, 26, 27, 28, 32, 33, 34, 35, 42, 50, 51, 54, 58, 66, 68, 69, 70, 78, 91, 96, 99, 100], "date": [24, 32, 55, 62], "to_list": [24, 25, 27, 32, 33, 42, 51, 52, 54, 66, 84, 88, 95, 96, 100], "transfer": [24, 25, 28, 32, 35, 42, 51, 54, 59, 84, 88, 89, 91, 95, 96, 100], "client": [24, 25, 28, 32, 42, 43, 54, 55, 57, 69, 75, 76, 77, 78, 79, 80, 83, 88, 89, 91, 95, 96, 100], "exce": [24, 25, 28, 32, 42, 43, 47, 48, 54, 55, 56, 84, 88, 89, 90, 91, 95, 100], "maxtransferbyt": [24, 25, 28, 32, 42, 43, 54, 55, 84, 88, 89, 91, 95, 100], "runtimeerror": [24, 25, 26, 28, 30, 32, 33, 34, 35, 39, 41, 42, 43, 44, 51, 52, 54, 55, 84, 87, 88, 89, 90, 92, 93, 95, 98, 99, 100], "error": [24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 38, 39, 41, 42, 43, 51, 52, 54, 55, 58, 68, 70, 80, 84, 87, 88, 89, 91, 92, 93, 95, 99, 100], "thrown": [24, 25, 28, 32, 33, 34, 35, 39, 42, 43, 51, 52, 54, 84, 87, 88, 89, 93, 95, 100], "receiv": [24, 25, 26, 28, 32, 33, 35, 42, 51, 54, 84, 88, 95, 99], "doe": [24, 25, 26, 28, 30, 32, 33, 35, 36, 42, 43, 45, 51, 52, 54, 63, 66, 68, 70, 84, 88, 89, 90, 91, 92, 95, 97, 99, 100], "protect": [24, 25, 32, 42, 43, 54, 84, 88, 89, 95, 100], "overflow": [24, 25, 32, 41, 42, 54, 84, 88, 89, 95, 100], "memori": [24, 25, 26, 28, 32, 33, 35, 42, 51, 52, 54, 64, 65, 68, 73, 84, 88, 89, 95, 100], "run": [24, 25, 26, 28, 32, 35, 41, 42, 51, 54, 63, 64, 66, 73, 75, 76, 77, 79, 80, 82, 84, 88, 89, 95, 96, 99, 100], "assumpt": [24, 25, 32, 42, 43, 54, 84, 88, 89, 95, 100], "mai": [24, 25, 28, 32, 33, 35, 42, 43, 44, 46, 54, 66, 68, 73, 75, 77, 79, 80, 84, 88, 89, 90, 91, 95, 100], "overrid": [24, 25, 27, 32, 42, 43, 54, 63, 84, 88, 89, 95, 100], "larger": [24, 25, 32, 42, 43, 54, 62, 66, 84, 88, 89, 95, 100], "proce": [24, 25, 32, 42, 43, 54, 84, 88, 89, 95, 100], "caution": [24, 25, 32, 42, 43, 54, 84, 88, 89, 95, 100], "update_hdf": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54], "repack": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54], "ad": [24, 25, 27, 28, 32, 33, 35, 38, 42, 51, 54, 63, 65, 66, 70, 75, 84, 99], "directori": [24, 25, 28, 30, 32, 33, 35, 36, 42, 50, 51, 54, 59, 60, 63, 64, 73, 75, 76, 77, 78, 79, 80, 81, 82, 92], "filenam": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 59, 84, 92], "prefix": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 55, 83, 92, 100], "share": [24, 25, 28, 30, 32, 33, 42, 51, 54, 62, 80, 92], "releas": [24, 25, 28, 32, 33, 35, 42, 51, 54, 59, 64, 65, 76, 77], "delet": [24, 25, 26, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 59, 64, 73, 92], "inaccess": [24, 25, 28, 32, 33, 35, 42, 51, 54], "overwritten": [24, 25, 28, 32, 33, 35, 42, 51, 54, 68, 70], "remov": [24, 25, 28, 32, 33, 35, 42, 51, 54, 59, 63, 79, 91, 96, 100], "remain": [24, 25, 28, 32, 33, 35, 42, 51, 54, 76, 84, 85, 91, 97], "better": [24, 25, 28, 32, 33, 35, 42, 51, 54], "perform": [24, 25, 28, 30, 32, 33, 35, 37, 41, 42, 44, 51, 54, 59, 61, 62, 63, 66, 67, 69, 75, 83, 84, 87, 90, 91, 92, 95], "caus": [24, 25, 28, 32, 33, 35, 42, 51, 54, 73, 75], "expand": [24, 25, 28, 32, 33, 35, 42, 51, 54, 56, 84], "success": [24, 25, 26, 28, 32, 33, 35, 37, 41, 42, 51, 54, 95, 99], "file_format": [24, 25, 28, 32, 33, 35, 42, 51, 54], "_local": [24, 25, 28, 32, 33, 35, 42, 51, 54, 68], "determin": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 56, 62, 68, 78, 84, 89, 91, 92], "becaus": [24, 25, 28, 32, 33, 35, 41, 43, 47, 48, 51, 54, 63, 66, 67, 68, 69, 73, 84, 89, 90, 91, 96, 100], "kwarg": [25, 30, 32, 43, 49, 55, 56, 89, 92], "repres": [25, 27, 30, 32, 51, 52, 54, 55, 59, 68, 89, 92, 100], "belong": [25, 32, 89], "often": [25, 32, 89, 93], "speed": [25, 32, 44, 61, 65, 78, 89, 90, 98], "oper": [25, 26, 27, 28, 30, 32, 33, 35, 42, 50, 51, 53, 54, 58, 59, 62, 69, 73, 79, 81, 82, 83, 86, 91, 92, 94, 99], "cost": [25, 32, 89], "initi": [25, 26, 32, 42, 43, 46, 47, 48, 59, 77, 82, 89, 90, 95, 99], "navalu": [25, 32, 89], "miss": [25, 28, 32, 89], "null": [25, 32, 35, 54, 68, 89, 100], "permut": [25, 28, 30, 32, 53, 54, 56, 68, 83, 86, 89, 92, 98], "segment": [25, 30, 32, 35, 37, 51, 54, 56, 68, 83, 84, 89, 92, 96, 98, 100], "offset": [25, 30, 32, 35, 43, 54, 68, 84, 89, 98, 100], "union": [25, 26, 28, 32, 34, 35, 37, 41, 42, 43, 44, 47, 48, 51, 53, 54, 66, 83, 84, 86, 87, 89, 90, 93, 98, 100], "nlevel": [25, 32, 83, 89], "distinct": [25, 28, 32, 89], "rank": [25, 32, 42, 43, 54, 68, 83, 84, 89, 90, 94], "nbyte": [25, 28, 32, 33, 42, 43, 52, 54, 56, 84], "binop": [25, 28, 32, 35, 42, 51, 54], "registerablepiec": [25, 32], "requiredpiec": [25, 32], "attach": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 56, 83, 92], "user_defined_nam": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 92], "deprec": [25, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 62, 84, 92], "is_regist": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 56, 83, 92], "unregist": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 56, 83, 92], "unregister_categorical_by_nam": [25, 32], "merg": [25, 28, 32, 56, 62], "synchron": [25, 32], "interleav": [25, 28, 32, 44, 90], "greatli": [25, 32, 44, 90], "improv": [25, 32, 44, 62, 63, 78, 90], "determinist": [25, 32, 44, 90], "expens": [25, 32], "slower": [25, 32, 100], "substr": [25, 27, 32, 54, 83, 89], "str_scalar": [25, 29, 32, 40, 54, 89, 100], "regex": [25, 32, 54, 89, 100], "regular": [25, 32, 54, 83, 89], "handl": [25, 26, 28, 32, 41, 54, 69, 84, 89, 91, 95, 100], "re2": [25, 32, 54, 75, 89, 100], "lookahead": [25, 32, 54, 89, 100], "lookbehind": [25, 32, 54, 89, 100], "rasi": [25, 32, 54, 89, 100], "startswith": [25, 32, 54, 83, 89, 100], "endswith": [25, 32, 54, 83, 89, 100], "significantli": [25, 32, 63, 89], "instead": [25, 27, 28, 30, 32, 35, 42, 46, 48, 54, 59, 82, 84, 87, 89, 92, 100], "classmethod": [25, 27, 28, 32, 33, 51, 52, 89], "from_cod": [25, 32, 83, 89], "pre": [25, 32, 56, 89], "constructor": [25, 32, 46, 48, 51, 66, 89], "normal": [25, 26, 27, 28, 30, 32, 42, 43, 46, 47, 48, 55, 58, 87, 89, 91, 92], "from_return_msg": [25, 27, 28, 30, 32, 33, 51, 52, 54], "rep_msg": [25, 27, 28, 30, 32, 33, 51, 54, 78], "place": [25, 27, 28, 30, 32, 33, 35, 38, 42, 50, 51, 52, 54, 55, 56, 60, 64, 87, 91, 92], "togeth": [25, 28, 30, 32, 54, 56, 91, 92, 98], "instanc": [25, 27, 28, 30, 32, 42, 43, 52, 54, 59, 70, 75, 78, 84, 87, 91, 92, 93, 95, 100], "guarante": [25, 32, 53, 54, 86, 100], "lie": [25, 32, 54], "contigu": [25, 32, 37, 54], "necessarili": [25, 32, 52, 54], "groupbi": [25, 28, 30, 32, 35, 51, 54, 56, 83, 89, 100], "simpli": [25, 26, 32, 41, 90], "even": [25, 28, 30, 32, 42, 68, 87, 91, 92, 99], "128": [25, 32, 41, 51, 54], "hash": [25, 32, 41, 51, 53, 54, 86], "ith": [25, 32, 51, 54], "siphash128": [25, 32, 54], "balanc": [25, 32, 54], "dictionari": [25, 26, 28, 30, 32, 35, 36, 46, 48, 54, 56, 78, 84, 91, 92], "realist": [25, 32, 54], "about": [25, 26, 32, 34, 42, 54, 55, 58, 59, 63, 73, 78, 87, 88, 100], "probabl": [25, 32, 46, 48, 54], "collis": [25, 32, 41, 54], "neglig": [25, 32, 54], "in1d": [25, 32, 44, 58, 66, 83, 89, 98, 100], "against": [25, 32, 51, 54, 59, 66, 84, 96, 100], "intersect1d": [25, 32, 44, 51, 58, 66, 83, 96, 98], "union1d": [25, 32, 44, 51, 58, 66, 83, 96, 98], "consid": [25, 32, 62, 100], "wise": [25, 32, 41, 42, 83, 88], "b": [25, 26, 28, 30, 32, 33, 35, 37, 41, 42, 43, 44, 45, 46, 48, 51, 52, 53, 54, 56, 66, 82, 86, 87, 91, 92, 93, 94, 95, 96, 98, 100], "arbitrarili": [25, 32], "larg": [25, 32, 59, 87], "cat": [25, 32, 35, 80], "cattwo": [25, 32], "json": [25, 26, 32, 34, 42, 50, 54], "bool_": [25, 32, 42, 54, 55, 87, 93], "registri": [25, 28, 30, 32, 33, 34, 42, 52, 54, 55, 56, 92], "registrationerror": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 92], "mi": [25, 32, 33, 52, 55], "immun": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 92], "until": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 64, 92], "isna": [25, 32], "parse_hdf_categor": [25, 32], "dict": [25, 26, 28, 30, 32, 34, 35, 36, 46, 48, 49, 52, 56, 91, 92], "conjunct": [25, 32, 84, 89, 100], "load_al": [25, 28, 32, 33, 35, 42, 54, 71], "reconstitut": [25, 32], "convent": [25, 32], "In": [25, 28, 30, 32, 35, 41, 42, 46, 48, 54, 58, 59, 60, 62, 63, 66, 73, 75, 76, 78, 80, 84, 87, 92, 93, 94, 96, 99, 100], "call": [25, 26, 27, 28, 30, 32, 35, 42, 43, 46, 47, 48, 51, 52, 54, 58, 66, 70, 73, 75, 77, 78, 84, 87, 88, 90, 91, 92, 95, 99], "pretty_print_info": [25, 32, 42, 54], "human": [25, 32, 34, 42, 54], "readabl": [25, 32, 34, 35, 42, 54, 68, 84], "underli": [25, 27, 28, 30, 32, 33, 41, 51, 52, 55, 92], "root": [25, 27, 28, 30, 32, 33, 42, 52, 55, 59, 68, 76, 84, 87, 92], "now": [25, 27, 28, 30, 32, 33, 42, 46, 51, 52, 54, 55, 56, 58, 63, 64, 67, 70, 75, 76, 77, 92], "updat": [25, 27, 28, 30, 32, 33, 35, 42, 45, 51, 52, 54, 55, 70, 75, 80, 84, 92], "modif": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 78, 91, 92], "origin": [25, 27, 28, 30, 32, 33, 35, 39, 41, 42, 44, 51, 52, 54, 55, 87, 89, 90, 91, 92, 96, 100], "fluid": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 92], "unabl": [25, 27, 28, 30, 32, 33, 42, 52, 54, 55, 92], "reset_categori": [25, 32], "recomput": [25, 32, 35], "unus": [25, 32, 35, 84], "slice": [25, 28, 32, 42, 66, 83, 88, 89, 91, 96, 100], "case": [25, 26, 30, 32, 33, 35, 41, 42, 46, 48, 52, 54, 55, 59, 61, 66, 67, 68, 70, 75, 76, 78, 80, 87, 97], "elimin": [25, 32, 70], "categorical_arrai": [25, 32], "compress": [25, 28, 32, 33, 35, 42, 51, 54, 59, 94, 96], "parquet": [25, 28, 30, 32, 33, 35, 42, 51, 54, 59, 67, 69, 71, 84, 92], "collect": [25, 28, 30, 32, 33, 35, 42, 49, 51, 54, 76, 92], "chunk": [25, 32, 33, 35, 42, 51, 54], "within": [25, 26, 28, 30, 31, 32, 33, 35, 42, 43, 46, 48, 51, 54, 58, 59, 68, 70, 90, 91, 92, 96], "written": [25, 28, 30, 32, 33, 35, 36, 38, 42, 51, 52, 54, 67, 68, 69, 70, 71, 75, 84, 92, 95], "impact": [25, 30, 32, 33, 42, 51, 61, 62, 64, 92], "snappi": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70, 75], "gzip": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70], "brotli": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70], "zstd": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70], "lz4": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70], "neither": [25, 32, 33, 42, 43, 54, 55, 90, 100], "nor": [25, 32, 33, 42, 43, 54, 90, 100], "state": [25, 32, 46, 48, 54, 62], "charact": [25, 26, 27, 31, 32, 43, 54, 78, 100], "set_categori": [25, 32], "new_categori": [25, 32], "old": [25, 32, 62], "unchang": [25, 32], "na": [25, 32, 68], "standardize_categori": [25, 32], "remap": [25, 32], "load": [25, 28, 32, 33, 35, 42, 51, 54, 67, 68, 70, 71, 80, 84], "produc": [25, 32, 54, 89, 100], "to_parquet": [25, 28, 32, 33, 35, 42, 51, 54, 70, 71, 84], "On": [25, 26, 32, 99], "due": [25, 28, 32, 35, 67, 70, 84], "issu": [25, 28, 30, 32, 58, 62, 75, 80, 92, 96], "visibl": [25, 26, 32, 33, 35, 42, 51, 54, 99], "permiss": [25, 32, 33, 42, 51, 54], "form": [25, 29, 32, 33, 42, 50, 51, 54, 62, 78, 100], "numlocal": [25, 26, 28, 32, 33, 35, 42, 51, 54, 99], "effici": [25, 28, 32, 33, 42, 54, 96, 100], "o": [25, 28, 32, 33, 42, 50, 51, 54, 81, 83], "reli": [25, 32, 33, 42, 51, 54, 92], "to_str": [25, 32], "isinst": [25, 32, 58], "send": [25, 26, 28, 32, 35, 42, 43, 51, 54, 58, 84, 91, 99], "node": [25, 28, 32, 35, 42, 51, 54, 59, 68, 82, 84], "1234": [25, 28, 32, 35, 42, 51, 54, 62], "1235": [25, 28, 32, 35, 42, 51, 54], "1236": [25, 28, 32, 35, 42, 51, 54], "1237": [25, 28, 32, 35, 42, 51, 54], "receive_arrai": [25, 28, 32, 42, 51, 54], "complet": [25, 26, 28, 32, 42, 51, 54, 58, 60, 62, 75, 77, 99, 100], "op": [25, 27, 28, 32, 35, 42, 51, 54, 59], "previous": [25, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 92], "attempt": [25, 28, 30, 32, 33, 35, 42, 51, 52, 53, 54, 55, 75, 84, 91, 92], "without": [25, 28, 32, 35, 42, 64, 73, 75, 84, 91], "localhost": [26, 73, 99], "5555": [26, 73, 99], "access_token": [26, 99], "connect_url": [26, 73, 99], "access_channel": [26, 99], "channel": [26, 99], "machin": [26, 59, 60, 63, 73, 76, 77, 99], "whicn": [26, 99], "interpret": [26, 32, 35, 59, 84, 99], "socket": [26, 99], "enabl": [26, 32, 38, 42, 50, 63, 75, 76, 78, 84, 99], "authent": [26, 50, 73, 99], "tcp": [26, 73, 99], "token_valu": [26, 99], "zmqchannel": [26, 99], "connectionerror": [26, 99], "pars": [26, 27, 32, 33, 42, 58, 99], "seen": [26, 99], "disconnect": [26, 32, 42], "generate_histori": 26, "num_command": [26, 31], "command_filt": [26, 31], "command": [26, 31, 32, 42, 58, 59, 60, 62, 64, 73, 75, 77, 78, 79, 80, 99], "shell": [26, 31, 32, 35, 77, 84], "jupyt": [26, 31, 73], "notebook": [26, 31, 73], "ipython": [26, 31, 73], "cmd_filter": 26, "retriev": [26, 31, 32, 34, 42, 50, 52, 62], "select": [26, 28, 31, 32, 35, 51, 52, 58, 62, 75, 81, 91, 96], "10000": 26, "randint": [26, 30, 32, 41, 43, 47, 48, 53, 66, 83, 86, 87, 90, 92, 93], "500": [26, 60, 63], "457": 26, "647": 26, "9362": 26, "9602": 26, "9683": 26, "get": [26, 28, 29, 31, 32, 35, 41, 51, 58, 59, 62, 63, 64, 76, 80, 84, 88, 95, 96], "serverhostnam": 26, "serverport": 26, "numpu": 26, "processor": [26, 59], "maxtaskpar": 26, "physicalmemori": 26, "get_mem_avail": 26, "as_perc": 26, "amount": [26, 28, 32, 42, 78, 91, 100], "kb": [26, 28, 32, 33, 52, 56], "mb": [26, 28, 32, 33, 52, 56], "gb": [26, 28, 32, 33, 52, 56], "tb": 26, "pb": 26, "percent": 26, "get_mem_statu": 26, "statu": 26, "total_mem": 26, "total": [26, 28, 30, 32, 35, 54, 59, 84, 92], "physic": [26, 39, 100], "host": [26, 50, 75], "avail_mem": 26, "arkouda_mem_alloc": 26, "alloc": 26, "chapel": [26, 32, 41, 46, 58, 61, 63, 68, 72, 73, 75, 78, 79, 80, 81, 95, 99, 100], "process": [26, 32, 34, 35, 52, 58, 65, 68, 73, 80, 84, 96, 100], "pct_avail_mem": 26, "percentag": [26, 56], "locale_id": 26, "id": [26, 59, 80, 92], "locale_hostnam": 26, "get_mem_us": 26, "symbol": [26, 32, 34, 42, 51, 54, 58, 95], "get_server_command": 26, "commandmap": [26, 58, 78], "print_server_command": 26, "ruok": 26, "imok": 26, "imnotok": 26, "occur": [26, 28, 30, 32, 35, 40, 41, 42, 52, 54, 58, 75, 92, 93, 97, 100], "basic": [26, 32, 33, 42, 50, 62, 80, 88, 95], "wai": [26, 59, 63, 68, 73, 78, 87, 89, 90, 91, 95, 100], "quick": [26, 63], "healthcheck": 26, "respons": [26, 28, 32, 54, 58], "both": [26, 28, 32, 35, 37, 42, 44, 55, 63, 66, 68, 69, 73, 75, 84, 89, 98, 100], "latter": [26, 100], "shutdown": [26, 63, 64, 78], "symtabl": 26, "shut": [26, 73, 78], "down": [26, 61, 62, 64, 73, 75, 78], "bitvector": [27, 32], "width": [27, 32, 100], "64": [27, 32, 41, 42, 43, 47, 48, 59, 90, 91, 95], "revers": [27, 30, 32], "vector": [27, 30, 32, 83, 92], "flag": [27, 32, 35, 45, 59, 64, 78, 99], "field": [27, 32, 43, 54, 62, 84, 100], "signific": [27, 32, 41, 42, 53, 62, 78, 86, 87], "binari": [27, 32, 43, 76, 77, 87], "thin": [27, 32], "mostli": [27, 32], "affect": [27, 32, 46, 48], "conserv": [27, 32], "special_objtyp": [27, 32, 55], "opeq": [27, 32, 42], "export": [27, 32, 35, 41, 60, 63, 75, 76, 77, 80, 93], "callback": [27, 32], "callabl": [27, 28, 32, 91], "msb_left": [27, 32], "pad": [27, 32, 62], "show_int": [27, 32], "back": [27, 30, 32, 56, 58, 61, 64, 84, 92], "represent": [27, 28, 32, 42], "accord": [27, 28, 32, 41, 52, 91, 95], "ipv4": [27, 32, 35, 84], "ip": [27, 32], "export_uint": [27, 32], "ipaddress": [27, 32], "ip_address": [27, 32, 33, 85], "helper": [27, 32, 56], "proof": [27, 32], "made": [27, 28, 32, 54, 100], "accomod": [27, 32], "ipv6": [27, 32], "prevent": [27, 32, 35, 42, 51, 67, 68, 76, 96], "inadvert": [27, 32], "is_ipv4": [27, 32], "ip2": [27, 32], "well": [27, 32, 59, 66, 79], "deal": [27, 32], "is_ipv6": [27, 32], "initialdata": [28, 32, 91], "userdict": [28, 32, 49], "homogen": [28, 32, 91], "frame": [28, 32, 52, 91, 97], "stringifi": [28, 32, 91], "usernam": [28, 32, 50, 91], "alic": [28, 32, 91], "bob": [28, 32, 91], "carol": [28, 32, 91], "userid": [28, 32, 91, 92], "111": [28, 32, 54, 91], "222": [28, 32, 91], "333": [28, 32, 91], "dai": [28, 32, 55, 62, 91, 92], "slightli": [28, 32, 35, 91], "stride": [28, 32, 37, 43, 90, 91, 94], "col1": [28, 32, 91], "col2": [28, 32, 91], "u0": [28, 32, 33], "multiindex": [28, 32, 33, 52, 85, 97], "use_seri": [28, 32, 91], "as_index": [28, 32, 91], "dropna": [28, 30, 32, 83, 91, 92], "groupbyclass": [28, 32, 44, 52, 57, 91, 98], "drop": [28, 30, 32, 42, 62, 87, 92], "kept": [28, 30, 32, 51, 91, 92], "0x7f2cf23e10c0": [28, 32, 91], "onto": [28, 32, 54, 100], "sens": [28, 32], "whose": [28, 32, 51, 52, 54, 97], "df1": [28, 32], "df2": [28, 32], "apply_permut": [28, 32, 91], "perm": [28, 32, 53, 56, 86, 91], "entir": [28, 32, 51, 54, 59, 64, 91, 96], "unsort": [28, 32, 91], "arbitrari": [28, 32, 91], "invers": [28, 32, 41, 56, 91], "perm_arri": [28, 32, 91], "ascend": [28, 30, 32, 33, 41, 42, 52, 85, 91, 93, 97], "coargsort": [28, 32, 53, 83, 86, 89, 91, 100], "sorted_df1": [28, 32, 91], "sorted_df2": [28, 32, 91], "my_table_nam": [28, 32], "col3": [28, 32, 91], "essenti": [28, 32, 42, 51, 54, 91, 96], "deep": [28, 32, 51, 91], "reflect": [28, 32, 77, 91, 96], "shallow": [28, 32, 91], "vice": [28, 32, 84, 91], "versa": [28, 32, 84, 91], "caller": [28, 32, 52, 91], "df_deep": [28, 32, 91], "df_shallow": [28, 32, 91], "corr": [28, 32, 42], "pairwis": [28, 32], "correl": [28, 32, 42], "inplac": [28, 32, 91], "datefram": [28, 32, 91], "drop_dupl": [28, 32, 91], "duplcat": [28, 32, 91], "iter": [28, 32, 35, 43, 53, 59, 83, 84, 86], "dedup": [28, 32, 91], "last": [28, 32, 42, 43, 52, 53, 54, 62, 78, 86, 91, 97, 99, 100], "filter_by_rang": [28, 32], "highest": [28, 32, 42, 43], "unlimit": [28, 32], "qualifi": [28, 32], "filtered_df": [28, 32], "from_panda": [28, 32], "pd_df": [28, 32, 66, 91], "pd": [28, 32, 35, 43, 55, 56, 66, 84, 91], "core": [28, 31, 32, 59, 62, 91], "ak_df": [28, 32, 45, 91], "alia": [28, 30, 32, 51, 55, 91, 92], "head": [28, 32, 52, 62], "quickli": [28, 32, 60, 91], "tail": [28, 32, 43, 52], "mismatch": [28, 30, 32, 75, 92], "unregister_dataframe_by_nam": [28, 32], "isin": [28, 32, 52], "show": [28, 32, 35, 45, 75, 84, 88, 92], "col_a": [28, 32], "col_b": [28, 32], "position": [28, 32], "other_df": [28, 32], "col_c": [28, 32], "infer": [28, 29, 30, 32, 35, 43, 68, 84], "my_dir": [28, 32], "my_data_locale0000": [28, 32], "my_data": [28, 32], "pathlib": [28, 32, 36, 50], "my_path": [28, 32], "join": [28, 32, 51, 54, 57, 58, 83], "getcwd": [28, 32], "hdf5_output": [28, 32], "mkdir": [28, 32], "exist_ok": [28, 32], "memory_usag": [28, 32, 33, 52], "contribut": [28, 32, 52, 58], "One": [28, 30, 32, 33, 42, 52, 56, 66, 92, 97], "5000": [28, 32], "40000": [28, 32], "39": [28, 32, 59], "0625": [28, 32], "88281": [28, 32], "approxim": [28, 32], "memory_usage_info": [28, 32], "1000": [28, 32, 33, 37, 85, 93], "00": [28, 32, 59], "inner": [28, 32, 37], "left_suffix": [28, 32], "_x": [28, 32], "right_suffix": [28, 32], "_y": [28, 32], "convert_int": [28, 32], "databas": [28, 32], "pydata": [28, 32], "intersect": [28, 32, 44, 51, 66, 83, 98], "suffix": [28, 32, 35, 51, 54, 68, 83, 100], "effect": [28, 32, 55, 64, 98], "left_df": [28, 32], "right_df": [28, 32], "col2_x": [28, 32], "col2_i": [28, 32], "outer": [28, 32, 94], "read_csv": [28, 32, 35, 67, 71], "col_delim": [28, 32, 33, 35, 42, 54], "csv": [28, 32, 33, 35, 42, 54, 71, 84], "header": [28, 32, 33, 35, 42, 54, 84], "delimit": [28, 32, 33, 35, 36, 42, 52, 54, 59, 62, 67, 84, 100], "allow_error": [28, 32, 33, 35, 42, 54, 84], "unknown": [28, 32, 33, 35, 42, 43, 54], "arkouda_typ": [28, 32, 33, 35, 42, 54], "to_csv": [28, 32, 33, 35, 42, 54, 67, 71], "newlin": [28, 32, 33, 35, 42, 54, 67], "unlik": [28, 32, 35, 54, 55], "utf": [28, 32, 35, 54], "csv_output": [28, 32], "_locale0000": [28, 32], "renam": [28, 32], "mapper": [28, 32, 91], "nonexist": [28, 32, 91], "99": [28, 32, 59, 91], "lower": [28, 32, 46, 48, 54, 68, 91], "reset_index": [28, 32, 91], "longer": [28, 32, 43, 68, 79, 91], "correctli": [28, 32, 80, 91], "perm_df": [28, 32, 91], "sampl": [28, 32, 41, 43, 46, 47, 48], "random": [28, 32, 43, 45, 57, 59, 82, 83], "disk": [28, 32, 33, 35, 42, 54, 100], "preserv": [28, 32, 52, 97, 100], "sort_index": [28, 32, 52, 97], "sort_valu": [28, 32, 52, 91, 97], "denot": [28, 32, 33, 35, 42, 54, 55], "NOT": [28, 32, 33, 35, 41, 42, 54, 75, 84, 95], "across": [28, 32, 35, 68, 84], "hdf_output": [28, 32], "to_panda": [28, 32, 33, 52, 55, 66, 91, 97], "datalimit": [28, 32, 91], "retain_index": [28, 32, 91], "megabyt": [28, 32, 91], "request": [28, 30, 32, 36, 42, 43, 54, 58, 62, 90, 91, 92], "estim": [28, 30, 32, 42, 87, 91, 92], "convert_categor": [28, 32, 35], "categor": [28, 30, 32, 33, 35, 41, 44, 52, 53, 56, 57, 83, 84, 85, 86, 87, 90, 91, 92, 93, 95, 97, 98], "parquet_output": [28, 32], "update_nrow": [28, 32], "diffaggreg": [28, 32], "differenc": [28, 32], "14": [28, 30, 32, 46, 48, 59, 66, 67, 76, 87, 88, 92, 94], "16": [28, 32, 41, 46, 48, 56, 59, 60, 61, 76, 77, 87, 88, 94], "18": [28, 32, 42, 46, 48, 59, 87, 88, 94], "intx": [28, 32], "ident": [28, 32, 56, 87, 95], "point": [28, 32, 33, 37, 41, 42, 43, 47, 48, 52, 80, 90, 91, 95], "intersect_df": [28, 32], "invert_permut": [28, 32, 56], "arkouda_supported_dtyp": [29, 32], "dtypeobject": [29, 32], "scalardtyp": [29, 32], "all_scalar": [29, 32, 43, 90], "enum": [29, 32, 38, 41, 68], "bigint": [29, 32, 41, 42, 43, 59, 84, 90, 95], "bittyp": [29, 32], "bool_scalar": [29, 32], "check_np_dtyp": [29, 32], "dt": [29, 32, 37, 41, 52, 95], "assert": [29, 32], "float_scalar": [29, 32, 42, 43, 47, 48], "get_byteord": [29, 32], "concret": [29, 32], "byteord": [29, 32], "turn": [29, 32, 52, 63, 73, 97], "get_server_byteord": [29, 32], "inttyp": [29, 32], "issupportednumb": [29, 32], "numeric_scalar": [29, 32, 41, 42, 43, 46, 47, 48, 87, 90], "numpy_scalar": [29, 32, 42, 87], "resolve_scalar_dtyp": [29, 32], "str_": [29, 32, 87, 89, 93, 100], "translate_np_dtyp": [29, 32], "split": [29, 32, 40, 54, 62, 83], "unsupport": [29, 30, 32, 35, 50, 53, 84, 98], "groupby_reduction_typ": [30, 32], "groupabl": [30, 32, 44, 92, 98], "assume_sort": [30, 32, 92, 98], "prepar": [30, 32, 75, 92], "nkei": [30, 32, 52, 83, 92], "unique_kei": [30, 32, 83, 92], "ngroup": [30, 32, 83, 92], "logger": [30, 32, 54, 57, 83, 92], "arkoudalogg": [30, 32, 38, 54, 92], "nativ": [30, 32, 69, 70, 77, 84, 92, 96], "inherit": [30, 32, 92, 95], "overload": [30, 32, 92], "_get_grouping_kei": [30, 32, 92], "reduct": [30, 32, 42, 82, 83, 92, 93], "AND": [30, 32, 51, 83, 92], "bitwis": [30, 32, 92, 95], "reduc": [30, 32, 63, 65, 92], "OR": [30, 32, 51, 62, 83, 92], "xor": [30, 32, 42, 51, 83, 92], "skipna": [30, 32, 92], "calcul": [30, 32, 35, 42, 44, 59, 68, 84, 87, 92, 93, 98], "77777777777777768": [30, 32, 92], "55555555555555536": [30, 32, 92], "33333333333333348": [30, 32, 92], "11111111111111116": [30, 32, 92], "77777777777777779": [30, 32, 92], "55555555555555558": [30, 32, 92], "33333333333333337": [30, 32, 92], "33333333333333326": [30, 32, 92], "group_ani": [30, 32, 92], "group_argmaxima": [30, 32, 92], "minimum": [30, 32, 42, 43, 76, 87, 92, 93], "group_argminima": [30, 32, 92], "unregister_groupby_by_nam": [30, 32, 83, 92], "fill": [30, 32, 42, 43, 46, 48, 59, 82, 90, 92], "constant": [30, 32, 42, 83, 92], "put": [30, 32, 64, 92], "analog": [30, 32, 55, 92], "tensor": [30, 32, 92], "replic": [30, 32, 92], "With": [30, 32, 78, 88, 92, 94], "build_from_compon": [30, 32, 83, 92], "init": [30, 32, 77, 92], "rebuild": [30, 32, 58, 61, 63, 64, 92], "orig_kei": [30, 32, 92], "groupable_element_typ": [30, 32, 52, 92, 97], "maxima": [30, 32, 92], "group_maxima": [30, 32, 92], "averag": [30, 32, 42, 43, 59, 87, 92], "group_mean": [30, 32, 92], "6666666666666665": [30, 32, 92], "7999999999999998": [30, 32, 92], "median": [30, 32, 59, 83, 92], "group_median": [30, 32, 92], "75": [30, 32, 43, 90, 92], "minima": [30, 32, 92], "group_minima": [30, 32, 92], "modal": [30, 32, 92], "most_common": [30, 32, 56, 83, 92], "nuniqu": [30, 32, 51, 83, 92], "group_nuniqu": [30, 32, 92], "group_product": [30, 32, 92], "108": [30, 32, 92], "00000000000003": [30, 32, 92], "9999999999999982": [30, 32, 92], "deviat": [30, 32, 42, 43, 55, 87, 92, 93], "group_std": [30, 32, 92], "len": [30, 32, 42, 51, 54, 87, 92, 94, 96, 100], "howev": [30, 32, 41, 42, 68, 75, 79, 80, 87, 89, 92], "divisor": [30, 32, 42, 87, 92], "unbias": [30, 32, 42, 87, 92], "varianc": [30, 32, 42, 87, 92, 93], "infinit": [30, 32, 41, 42, 87, 92], "popul": [30, 32, 36, 40, 42, 87, 92], "se": [30, 32, 42, 87, 92], "5275252316519465": [30, 32, 92], "0954451150103321": [30, 32, 92], "group_sum": [30, 32, 92], "segarrai": [30, 32, 35, 41, 57, 83, 84, 91, 92], "group_var": [30, 32, 92], "hypothet": [30, 32, 37, 42, 87, 92], "333333333333333": [30, 32, 92], "go": [30, 32, 62, 64, 76, 80, 90], "suppli": [30, 32, 35, 43, 51, 68, 70, 71, 90, 91], "row_start": [30, 32], "nnz": [30, 32], "row_numb": [30, 32], "pda": [30, 32, 41, 42, 43, 53, 55, 58, 86, 87, 90, 93, 95, 98], "return_group": [30, 32, 98], "return_indic": [30, 32, 98], "come": [30, 32, 64, 84, 90, 98], "applic": [30, 32, 41, 84, 90, 92, 98], "along": [30, 32, 41, 43, 90, 98], "consider": [30, 32, 98, 100], "historyretriev": 31, "abstract": 31, "_filter_arkouda_command": 31, "repl": [31, 32, 40, 54, 100], "notebookhistoryretriev": 31, "historyaccessor": 31, "shellhistoryretriev": 31, "akscipi": [32, 57], "array_api": [32, 57], "accessor": [32, 57], "align": [32, 33, 57], "array_view": [32, 35, 57, 88], "client_dtyp": [32, 35, 57], "infoclass": [32, 57], "io": [32, 57, 58, 59, 69, 70, 71], "io_util": [32, 57], "matcher": [32, 57], "pdarraycr": [32, 42, 57], "pdarraysetop": [32, 51, 57, 58, 96], "plot": [32, 41, 57, 84, 93], "secur": [32, 41, 57], "timeclass": [32, 35, 57], "allsymbol": [32, 34], "__allsymbols__": [32, 34], "datetim": [32, 35, 43, 55, 59, 84], "_base_unit": [32, 55], "_abstractbasetim": [32, 55], "datetimeindex": [32, 55], "timeseri": [32, 55], "datetime64": [32, 43, 55], "carri": [32, 55], "Not": [32, 35, 41, 52, 55, 59, 91], "sensit": [32, 55], "sec": [32, 55, 59], "accept": [32, 52, 55, 59, 97], "week": [32, 55, 92], "w": [32, 39, 55, 100], "hour": [32, 55], "h": [32, 41, 45, 55, 82, 93, 99], "minut": [32, 55], "millisecond": [32, 55], "l": [32, 35, 55, 60, 62, 66, 67, 75, 84], "microsecond": [32, 55], "nanosecond": [32, 43, 55], "combin": [32, 54, 55, 56, 64], "mix": [32, 54, 55, 59, 88], "day_of_week": [32, 55], "day_of_year": [32, 55], "dayofweek": [32, 55, 92], "dayofyear": [32, 55], "is_leap_year": [32, 55], "month": [32, 55, 62], "weekdai": [32, 55], "weekofyear": [32, 55], "year": [32, 55], "supported_opeq": [32, 55], "supported_with_datetim": [32, 55], "supported_with_pdarrai": [32, 55], "supported_with_r_datetim": [32, 55], "supported_with_r_pdarrai": [32, 55], "supported_with_r_timedelta": [32, 55], "supported_with_timedelta": [32, 55], "isocalendar": [32, 55], "errormod": [32, 41, 95], "enumer": [32, 38, 41], "deriv": [32, 35, 36, 38, 41, 54, 95], "return_valid": [32, 41, 95], "strict": [32, 41, 95], "name_dict": [32, 46, 48], "seed": [32, 43, 46, 47, 48, 59, 82, 90], "expos": [32, 46, 48, 95], "drawn": [32, 43, 46, 47, 48, 90], "varieti": [32, 46, 48], "mimic": [32, 46, 48], "default_rng": [32, 46, 48], "akint64": [32, 43, 46, 47, 48], "discret": [32, 46, 48], "uniform": [32, 41, 43, 46, 47, 48, 53, 84, 86, 87, 90], "abov": [32, 46, 48, 59, 64, 66, 73, 75, 76, 91, 100], "largest": [32, 42, 46, 48, 52, 87, 97], "uniformli": [32, 43, 46, 47, 48, 90], "rng": [32, 46, 48, 55], "13": [32, 41, 46, 48, 56, 59, 76, 79, 87, 88, 93, 94], "47108547995356098": [32, 46, 48], "055256829926011691": [32, 46, 48], "62511314008006458": [32, 46, 48], "16400145561571539": [32, 46, 48], "standard_norm": [32, 43, 46, 47, 48], "draw": [32, 43, 46, 47, 48], "stdev": [32, 46, 48], "mu": [32, 43, 46, 47, 48], "sigma": [32, 43, 46, 47, 48], "1923875335537315": [32, 46, 48], "8797352989638163": [32, 46, 48], "7085325853376141": [32, 46, 48], "021728052940979934": [32, 46, 48], "boundari": [32, 46, 48, 55], "upper": [32, 46, 48, 54, 62], "030785499755523249": [32, 46, 48], "08505865366367038": [32, 46, 48], "38552048588998722": [32, 46, 48], "allow_list": [32, 33, 85], "max_list_s": [32, 33, 85], "maintain": [32, 33, 35, 51, 69, 84], "older": [32, 33, 42, 68, 76], "is_uniqu": [32, 33], "rtype": [32, 33, 52], "abc": [32, 33, 67], "factori": [32, 33, 54], "consum": [32, 33, 52], "insensit": [32, 33, 42, 54, 59], "save_al": [32, 33, 35, 42, 71], "set_dtyp": [32, 33, 85], "repons": [32, 33, 42, 54], "to_dict": [32, 33], "loglevel": [32, 38], "critic": [32, 38], "debug": [32, 38, 58, 60, 64], "48": [32, 33, 52], "registeredsymbol": [32, 34], "__registeredsymbols__": [32, 34], "individu": [32, 49, 60, 100], "1d": [32, 44, 51, 52, 96, 97, 98], "enter": [32, 52, 84, 97], "_locindex": [32, 52], "supported_scalar": [32, 52], "iat": [32, 52], "_ilocindex": [32, 52], "iloc": [32, 52], "loc": [32, 52], "str_acc": [32, 52], "registerd": [32, 52], "index_label": [32, 52], "value_label": [32, 52], "horizont": [32, 51, 52, 96, 97], "vertic": [32, 51, 52, 96], "verticl": [32, 52, 97], "diff": [32, 52], "consecut": [32, 43, 52, 90], "repmsg": [32, 52, 58], "has_repeat_label": [32, 52], "lst": [32, 52], "scaler": [32, 52, 97], "s2": [32, 41, 52, 87], "give": [32, 42, 52, 67, 79, 97, 99], "rest": [32, 52], "smaller": [32, 52, 62, 67, 84], "3000": [32, 52], "46": [32, 41, 52, 87], "875": [32, 52], "pdconcat": [32, 52, 97], "smallest": [32, 42, 52, 87, 97], "to_datafram": [32, 52], "topn": [32, 52, 97], "top": [32, 52, 58, 63, 68, 75, 76, 77, 81, 97], "validate_kei": [32, 52], "might": [32, 52, 75, 77, 78], "keyerror": [32, 52], "indexerror": [32, 52], "validate_v": [32, 52], "value_count": [32, 41, 42, 52, 83, 93, 97], "frequent": [32, 52, 78, 97], "strings_pdarrai": [32, 54], "bytes_s": [32, 54], "resid": [32, 42, 54, 95], "encapsul": [32, 43, 50, 54], "composit": [32, 54], "raw": [32, 54, 100], "compos": [32, 43, 54, 73, 84], "shorthand": [32, 42, 54], "cached_regex_pattern": [32, 54], "pattern": [32, 39, 40, 54, 62, 66, 92, 100], "capit": [32, 54], "letter": [32, 54], "capitilz": [32, 54], "lowercas": [32, 43, 54], "decod": [32, 54], "fromencod": [32, 54], "toencod": [32, 54], "encod": [32, 54, 59, 100], "strings_start": [32, 54, 100], "ing": [32, 54, 100], "strings_end": [32, 54, 100], "find_loc": [32, 40, 54, 83, 100], "postit": [32, 54, 100], "positon": [32, 54, 100], "findal": [32, 40, 54, 83, 100], "num_match": [32, 54, 100], "return_match_origin": [32, 39, 40, 54, 100], "conta": [32, 54, 100], "1_2___": [32, 39, 54, 100], "____": [32, 39, 54, 100], "__4___5____6___7": [32, 39, 54, 100], "___": [32, 54, 100], "__": [32, 39, 54, 100], "flatten": [32, 37, 51, 54, 68, 83, 96], "return_seg": [32, 40, 54, 100], "unpack": [32, 54, 73, 77, 100], "flat": [32, 54, 100], "peel": [32, 54, 83, 100], "rpeel": [32, 54, 83, 100], "orig": [32, 54, 100], "six": [32, 54, 100], "one_two": [32, 54, 100], "three_____four____f": [32, 54, 100], "under_flat": [32, 54, 100], "under_map": [32, 54, 100], "from_part": [32, 51, 54], "offset_attrib": [32, 54], "bytes_attrib": [32, 54], "assembl": [32, 54], "entiti": [32, 54], "could": [32, 42, 45, 51, 54, 63, 78, 100], "fullmatch": [32, 54, 83, 100], "whole": [32, 54, 62, 100], "span": [32, 54, 100], "get_byt": [32, 54], "getter": [32, 54], "110": [32, 54], "101": [32, 54], "116": [32, 54], "119": [32, 54], "104": [32, 54], "114": [32, 54], "get_length": [32, 54], "get_offset": [32, 54], "get_prefix": [32, 51, 54, 83, 96], "return_origin": [32, 51, 54, 96], "proper": [32, 41, 51, 54, 56, 96], "long": [32, 51, 54, 64, 96], "enough": [32, 51, 54, 68, 76, 77, 96], "mask": [32, 51, 54, 96], "origin_indic": [32, 51, 54, 96], "get_suffix": [32, 51, 54, 83, 96], "compil": [32, 54, 61, 64, 65, 75, 76, 77, 78, 80], "ssegmentedstr": [32, 54], "usehash": [32, 54], "mere": [32, 54], "isalnum": [32, 54], "alphanumer": [32, 54], "islow": [32, 54], "isupp": [32, 54], "istitl": [32, 54], "not_alnum": [32, 54], "alnum": [32, 54], "strings0": [32, 54], "strings1": [32, 54], "strings2": [32, 54], "isalpha": [32, 54], "alphabet": [32, 54], "not_alpha": [32, 54], "alpha": [32, 54, 59, 82], "stringa": [32, 54], "stringb": [32, 54], "stringc": [32, 54], "isdigit": [32, 54], "digit": [32, 53, 54, 86], "not_digit": [32, 54], "120": [32, 54], "121": [32, 54], "122": [32, 54], "isempti": [32, 54], "not_empti": [32, 54], "isspac": [32, 54], "whitespac": [32, 35, 54], "not_spac": [32, 54], "u0009": [32, 54], "u000b": [32, 54], "u000c": [32, 54], "u000d": [32, 54], "u0009nu000bu000cu000d": [32, 54], "titlecas": [32, 54], "uppercas": [32, 43, 54], "lstick": [32, 54, 83, 100], "insert": [32, 54, 100], "experiment": [32, 54, 100], "stick": [32, 54, 64, 83, 100], "includedelimit": [32, 54, 100], "keepparti": [32, 54, 100], "fromright": [32, 54, 100], "off": [32, 54, 63, 100], "partit": [32, 54, 100], "sought": [32, 54, 100], "prepend": [32, 51, 54, 83, 100], "purge_cached_regex_pattern": [32, 54], "purg": [32, 54], "later": [32, 42, 54, 79], "former": [32, 42, 54, 100], "free": [32, 42, 54], "registr": [32, 42, 54], "rpartit": [32, 54, 100], "compar": [32, 54, 62, 82, 84, 100], "strings_arrai": [32, 54, 68], "save_offset": [32, 54], "upon": [32, 41, 54, 77, 78, 81, 87], "maxsplit": [32, 40, 54, 100], "occurr": [32, 40, 41, 42, 54, 87, 93, 100], "5____6___7": [32, 54, 100], "ior": [32, 54, 100], "toleft": [32, 54, 100], "strip": [32, 54], "char": [32, 54], "lead": [32, 42, 54], "trail": [32, 42, 54], "omit": [32, 54, 55, 59, 68], "1string": [32, 54], "sub": [32, 40, 51, 54, 83, 100], "obtain": [32, 40, 54, 100], "substitut": [32, 40, 54, 73, 75, 100], "substitu": [32, 54, 100], "subn": [32, 54, 83, 100], "new_str": [32, 54, 100], "number_of_substit": [32, 54, 100], "segstr": [32, 54], "hello": [32, 54, 84, 100], "my": [32, 54, 63, 84, 100], "world": [32, 54, 84, 100], "u5": [32, 54, 84, 100], "unregister_strings_by_nam": [32, 54], "timedelta": [32, 35, 43, 55, 84], "durat": [32, 55], "timedeltaindex": [32, 55], "timedelta64": [32, 55], "total_second": [32, 55], "akab": 32, "akbool": 32, "akcast": 32, "target": [32, 36, 41, 43, 59, 61, 62, 75, 84, 90, 94, 95], "never": [32, 41, 95], "uninterpret": [32, 41, 95], "63": [32, 41, 42, 95], "succeed": [32, 41, 95], "safe": [32, 41, 62, 95], "underflow": [32, 41, 95], "precis": [32, 35, 41, 84, 95], "capac": [32, 41, 95], "hold": [32, 41, 95], "akfloat64": 32, "akuint64": 32, "third": [32, 43, 62, 90], "max_bit": [32, 42, 43, 59, 84, 90, 95], "zerodivisionerror": [32, 42, 43, 90], "decreas": [32, 42, 43, 63, 87, 90, 93], "cosin": [32, 41, 87], "At": [32, 41, 42, 87], "elsewher": [32, 41, 42, 87], "retain": [32, 41, 42, 56, 87], "hyperbol": [32, 41], "sine": [32, 41, 87], "tangent": [32, 41], "denom": [32, 41], "pair": [32, 36, 37, 41, 51, 96], "angl": [32, 41], "radian": [32, 41], "rai": [32, 41], "denomin": [32, 41, 42], "placement": [32, 41], "circl": [32, 41], "argmaxk": [32, 42, 83, 87, 93], "maxmum": [32, 42, 87], "outperform": [32, 42, 87], "grow": [32, 42, 87], "beyond": [32, 42, 66, 87], "certain": [32, 42, 60, 78, 87], "depend": [32, 42, 68, 76, 77, 80, 81, 87, 96], "million": [32, 41, 42, 87], "degrad": [32, 42, 87], "argmink": [32, 42, 83, 87, 93], "algorithm": [32, 41, 53, 56, 73, 86], "sortingalgorithm": [32, 53, 86], "radixsortlsd": [32, 53, 86], "radix": [32, 53, 86], "resili": [32, 53, 86], "intens": [32, 53, 66, 86, 90], "dequ": [32, 43, 84], "malform": [32, 43, 84], "overwhelm": [32, 43, 84], "bandwidth": [32, 43, 84], "pdrrai": [32, 41, 43, 84], "twice": [32, 43, 84], "recurs": [32, 43, 84], "respect": [32, 41, 42, 43, 44, 55, 62, 84, 90], "attach_al": [32, 56], "attach_pdarrai": [32, 42], "bound": [32, 42, 43, 47, 48, 51, 55, 90, 96], "unregister_pdarray_by_nam": [32, 42], "list_registri": [32, 34, 42], "100": [32, 41, 42, 45, 56, 59, 66, 87], "my_zero": [32, 42], "potenti": [32, 42], "reconnect": [32, 42], "bigint_to_uint_arrai": [32, 42, 43], "18446744073709551616": [32, 42, 43], "18446744073709551617": [32, 42, 43], "18446744073709551618": [32, 42, 43], "18446744073709551619": [32, 42, 43], "18446744073709551620": [32, 42, 43], "broadcast_dim": [32, 56], "sa": [32, 56], "sb": [32, 56], "broadcast_to_shap": [32, 42], "clear": [32, 42], "clz": [32, 42], "lz": [32, 42], "62": [32, 42, 59], "61": [32, 42], "60": [32, 42], "move": [32, 53, 56, 64, 66, 86, 90, 96], "forward": [32, 53, 80, 86, 96], "thu": [32, 35, 43, 53, 58, 68, 69, 86, 96], "lexicograph": [32, 53, 62, 86], "compute_join_s": [32, 37], "convert_if_categor": [32, 56], "cov": [32, 42], "covari": [32, 42], "create_pdarrai": [32, 58], "gpu": [32, 42], "ctz": [32, 42], "cumprod": [32, 41, 83, 87], "cumul": [32, 41, 45, 82, 87], "th": [32, 41, 51, 87, 96], "5728783400481925": [32, 41, 87], "0472855509390593": [32, 41, 87], "33": [32, 41, 87], "78523998586553": [32, 41, 87], "134": [32, 41, 87], "05309592737584": [32, 41, 87], "450": [32, 41, 87], "21589865655358": [32, 41, 87], "cumsum": [32, 41, 83, 87], "1598310770203937": [32, 41, 87], "4110385860243131": [32, 41, 87], "1622479306453748": [32, 41, 87], "710615785506533": [32, 41, 87], "945880905466208": [32, 41, 87], "date_rang": [32, 55], "period": [32, 55], "freq": [32, 55], "tz": [32, 55], "impos": [32, 55], "dateoffset": [32, 55], "5h": [32, 55], "offset_alias": [32, 55], "alias": [32, 55], "tzinfo": [32, 55], "zone": [32, 55], "asia": [32, 55], "hong_kong": [32, 55], "timezon": [32, 55], "naiv": [32, 55], "midnight": [32, 55], "Of": [32, 55], "exactli": [32, 55], "linearli": [32, 43, 55, 90], "learn": [32, 55, 58, 73], "deg2rad": [32, 41], "disableverbos": [32, 38], "disabl": [32, 38, 60], "defaultt": [32, 38], "divmod": [32, 42], "dividend": [32, 42], "floordivis": [32, 42], "modular": [32, 42, 64], "divis": [32, 42], "quotient": [32, 42], "No": [32, 42, 75, 80], "div": [32, 42], "dot": [32, 42, 62], "pda1": [32, 42, 44, 98], "pda2": [32, 42, 44, 98], "elementwis": [32, 42], "singleton": [32, 42], "enableverbos": [32, 38], "exponenti": [32, 41, 87], "7182818284590451": [32, 41, 87], "3890560989306504": [32, 41, 87], "085536923187668": [32, 41, 87], "54": [32, 41, 87], "598150033144236": [32, 41, 87], "84010843172504": [32, 41, 87], "454368507659211": [32, 41, 87], "5571769623557188": [32, 41, 87], "494295836924771": [32, 41, 87], "478894913238722": [32, 41, 87], "minu": [32, 41], "exp1m": [32, 41], "19": [32, 41, 56, 88, 94], "53": [32, 41], "45": [32, 41], "32": [32, 41, 42, 50, 59, 66, 68, 76, 77], "read_path": [32, 35, 84], "dataset_nam": [32, 35, 84], "ak_data": [32, 35, 84], "write_fil": [32, 35, 84], "return_obj": [32, 35, 84], "read_parquet": [32, 35, 71, 84], "read_hdf": [32, 35, 51, 71, 84], "import_data": [32, 35, 69, 84], "fmod": [32, 42], "from_seri": [32, 43], "overridden": [32, 43, 50], "situat": [32, 43], "57600036956445599": [32, 43], "41619265571741659": [32, 43], "6615356693784662": [32, 43], "choic": [32, 43, 75], "to_datetim": [32, 43], "2018": [32, 43], "01": [32, 43, 59, 62, 64], "1514764800000000000": [32, 43], "parseabl": [32, 43, 90], "deleg": [32, 41, 43, 47, 48, 90, 93], "accordingli": [32, 43, 68, 90], "gen_rang": [32, 37], "return_length": [32, 37], "actual": [32, 37, 58, 67], "generic_concat": [32, 56], "get_callback": [32, 56], "get_column": [32, 35, 67, 71], "get_dataset": [32, 35, 67, 71, 84], "column_delim": [32, 35, 84], "read_nest": [32, 35, 84], "get_filetyp": [32, 35], "get_null_indic": [32, 35], "datasetnam": [32, 35, 84], "siphash": [32, 41], "risk": [32, 41, 68], "few": [32, 41, 66], "small": [32, 41, 68, 84], "strongli": [32, 41], "cryptograph": [32, 41], "emploi": [32, 41], "adversari": [32, 41], "engin": [32, 41], "linear": [32, 41, 100], "subsequ": [32, 41, 68], "xore": [32, 41], "cancel": [32, 41], "henc": [32, 41], "rotat": [32, 41, 42], "ordin": [32, 41], "hist_al": [32, 45], "col": [32, 45], "grid": [32, 45], "histogram": [32, 41, 45, 83], "visual": [32, 45], "randn": [32, 45], "bin": [32, 41, 42, 45, 75, 76, 77, 80, 93], "evenli": [32, 41, 43, 90, 93], "edg": [32, 41, 45, 93], "notimplementederror": [32, 41, 58, 93], "histogram2d": [32, 41, 93], "matplotlib": [32, 41, 45, 79, 93], "pyplot": [32, 41, 45, 93], "plt": [32, 41, 45, 93], "nbin": [32, 41, 93], "bi": [32, 41], "coordin": [32, 41, 88], "nx": [32, 41, 59], "ny": [32, 41], "hist": [32, 41], "x_edg": [32, 41], "y_edg": [32, 41], "histogramdd": [32, 41], "multidimension": [32, 41], "nd": [32, 41], "z": [32, 41], "glob": [32, 35, 84], "runtimewarn": [32, 35, 84], "assume_uniqu": [32, 44, 98], "indexof1d": [32, 44], "arr": [32, 44], "multia": [32, 44, 98], "multib": [32, 44, 98], "issupportedint": 32, "as_compon": [32, 56], "is_sort": [32, 42, 83, 87, 93], "monoton": [32, 42, 87, 93], "finit": [32, 41], "join_on_eq_with_dt": [32, 37], "a1": [32, 37, 41, 87], "a2": [32, 37, 41, 87], "t1": [32, 37], "t2": [32, 37], "pred": [32, 37], "result_limit": [32, 37], "window": [32, 37, 50, 73, 81], "predic": [32, 37], "timestamp": [32, 37], "milli": [32, 37], "result_array_on": [32, 37], "true_dt": [32, 37], "abs_dt": [32, 37], "pos_dt": [32, 37], "list_symbol_t": [32, 34], "path_prefix": [32, 35], "calc_string_offset": [32, 35, 84], "detect": [32, 35, 68, 84], "termin": [32, 35, 68, 73, 80, 99], "invalid": [32, 35, 84], "filenotfound": [32, 35], "cwd": [32, 35, 42], "name_prefix_local": [32, 35, 42], "filetyp": [32, 35, 84], "datsetnam": [32, 35], "read_": [32, 35], "natur": [32, 41, 87], "logarithm": [32, 41, 87], "3025850929940459": [32, 41, 87], "6051701859880918": [32, 41, 87], "3219280948873626": [32, 41, 87], "6438561897747253": [32, 41, 87], "plu": [32, 41], "h5l": [32, 35], "imit": [32, 35], "technic": [32, 35], "ls_csv": [32, 35, 67, 71], "maxk": [32, 42, 78, 83, 87, 93], "degred": [32, 42, 87], "mink": [32, 42, 78, 83, 87, 93], "complementari": [32, 42], "Ones": [32, 43, 90], "pariti": [32, 42], "odd": [32, 42], "mydtyp": [32, 42, 95], "attributi": [32, 42, 95], "opeqop": [32, 42], "coeffici": [32, 42], "format_oth": [32, 42], "itself": [32, 42, 62], "popcount": [32, 42], "fastest": [32, 42], "fortran": [32, 42, 95], "rotl": [32, 42], "rotr": [32, 42], "h5": [32, 35, 42, 84], "slice_bit": [32, 42], "bottom": [32, 42, 62], "65": [32, 42], "0b101111111111111111111111111111111111111111111111111111111111111111": [32, 42], "0b10": [32, 42], "numeric_and_bool_scalar": [32, 42], "to_cuda": [32, 42], "numba": [32, 42], "devicend": [32, 42], "builtin": [32, 42], "devicendarrai": [32, 42], "importerror": [32, 42], "cuda": [32, 42], "modulenotfounderror": [32, 42], "cours": [32, 42], "name_prefix": [32, 35, 42, 84], "to_parqet": [32, 42], "attahc": [32, 42], "plot_dist": [32, 45], "xlabel": [32, 45], "newfig": [32, 45], "graph": [32, 45, 92], "figur": [32, 45, 64], "below": [32, 45, 59, 60, 66, 75, 76, 77, 79, 84, 91], "pwr": [32, 42], "uniniti": [32, 42], "vari": [32, 42, 66, 75, 77, 79, 81, 96], "27": [32, 42, 59, 66, 88], "pretty_print_inform": [32, 34], "rad2deg": [32, 41], "pull": [32, 35, 43, 62, 68], "undefin": [32, 43, 47, 48, 90], "92176432277231968": [32, 43, 47, 48, 90], "083130710959903542": [32, 43, 47, 48, 90], "68894208386667544": [32, 43, 47, 48, 90], "9160772326374946": [32, 43, 47, 48, 90], "353429832157099": [32, 43, 47, 48, 90], "5392023718621486": [32, 43, 47, 48, 90], "random_strings_lognorm": [32, 43], "logmean": [32, 43], "logstd": [32, 43], "printabl": [32, 43], "lognorm": [32, 43], "heavi": [32, 43], "toward": [32, 43], "tvkjte": [32, 43], "abocorhfm": [32, 43], "ludmmgtb": [32, 43], "kwoqnphz": [32, 43], "vsxrrl": [32, 43], "fp": [32, 43], "3q4kc": [32, 43], "hf": [32, 43], "ie": [32, 43], "djkba": [32, 43], "5oz1": [32, 43], "random_strings_uniform": [32, 43], "minlen": [32, 43], "maxlen": [32, 43], "tvkj": [32, 43], "ewab": [32, 43], "hfmd": [32, 43], "4k": [32, 43], "hff": [32, 43], "stricttyp": [32, 35, 84], "tell": [32, 35, 59, 84], "versu": [32, 35, 84], "independ": [32, 35, 50, 84], "sequenti": [32, 35, 84], "dset_nam": [32, 35], "strict_typ": [32, 35], "tag_data": [32, 35], "tagdata": [32, 35], "read_tagged_data": [32, 35], "record": [32, 35], "filename_cod": [32, 35], "filname_cod": [32, 35], "col_nam": [32, 35], "sent": [32, 35, 69], "receive_datafram": [32, 35], "send_arrai": [32, 35], "register_al": [32, 56], "myarrai": [32, 56], "restor": [32, 35], "snapshot": [32, 35], "alongsid": [32, 35], "rot": [32, 42], "160": [32, 42], "384": [32, 42], "896": [32, 42], "2048": [32, 42], "4608": [32, 42], "512": [32, 42], "256": [32, 42, 59], "96": [32, 42], "56": [32, 42, 67], "nearest": [32, 41], "14159": [32, 41], "wrong": [32, 35, 99], "setdiff1d": [32, 44, 51, 58, 66, 83, 96, 98], "setxor1d": [32, 44, 51, 58, 66, 83, 96, 98], "skew": 32, "bia": 32, "weight": 32, "9442193396379163": 32, "4142135623730951": [32, 42], "7320508075688772": [32, 42], "68586185091150265": [32, 43, 47, 48], "1723810583573375": [32, 43, 47, 48], "567584107142031": [32, 43, 47, 48], "timedelta_rang": [32, 55], "invok": [32, 43, 47, 48], "30013431967121934": [32, 43, 47, 48], "47383036230759112": [32, 43, 47, 48], "0441791878997098": [32, 43, 47, 48], "unregister_al": [32, 56], "return_count": [32, 41, 93], "choos": [32, 41, 62, 77, 80, 87, 99], "claus": [32, 41, 87], "unequ": [32, 41, 87], "cond": [32, 41, 87], "s1": [32, 41, 87], "c1": [32, 41, 87], "c2": [32, 41, 87], "write_log": [32, 38], "log_msg": [32, 38], "clientgeneratedlog": [32, 38], "log_lvl": [32, 38], "identif": [32, 38], "delimited_file_to_dict": 36, "unsupportedoper": 36, "dict_to_delimited_fil": 36, "oerror": 36, "get_directori": 36, "write_line_to_fil": 36, "unsupportedopt": 36, "parent_entry_nam": [39, 40], "match_typ": [39, 40, 83, 100], "matchtyp": [39, 40, 100], "find_match": [39, 83, 100], "group_num": [39, 100], "return_group_origin": [39, 100], "isaac": [39, 100], "newton": [39, 100], "calculu": [39, 100], "gottfri": [39, 100], "leibniz": [39, 100], "math": [39, 100], "indici": [39, 100], "locationsinfo": 40, "get_match": 40, "return_num_sub": 40, "pcg64": 46, "manner": [46, 58], "unstabl": 46, "unalt": 46, "generate_token": 50, "secret": 50, "token_hex": 50, "hexidecim": 50, "generate_username_token_json": 50, "get_arkouda_client_directori": 50, "platform": 50, "artifact": 50, "home": [50, 75, 78], "environ": [50, 59, 73, 78, 79], "get_home_directori": 50, "expandus": 50, "get_usernam": 50, "environmenterror": 50, "linux": [50, 59, 75, 80, 81], "maco": [50, 73, 76, 81], "aka": 50, "darwin": [50, 77], "username_token": 50, "len_suffix": 51, "_length": 51, "seg_suffix": 51, "_segment": [51, 68], "non_empti": 51, "increas": [51, 96], "append_singl": [51, 83, 96], "unord": 51, "yet": [51, 75, 84, 88], "discard_empti": 51, "from_multi_arrai": 51, "face": [51, 62, 95], "get_jth": [51, 83, 96], "j": [51, 60, 61, 76, 77, 96], "backward": [51, 56, 96], "get_length_n": [51, 83, 96], "get_ngram": [51, 83, 96], "gram": [51, 96], "came": [51, 96], "ngram": [51, 83], "seg_a": [51, 96], "seg_b": [51, 96], "segment_nam": 51, "value_nam": 51, "prepend_singl": [51, 83, 96], "remove_repeat": [51, 83, 96], "return_multipl": [51, 96], "condens": [51, 96], "norepeat": [51, 96], "set_jth": [51, 83, 96], "setdiff": [51, 83, 96], "setxor": [51, 83, 96], "segarr": [51, 96], "unregister_segarray_by_nam": 51, "val_suffix": 51, "_valu": [51, 68], "convert_byt": 56, "enrich_inplac": 56, "keynam": 56, "seg": 56, "earlier": [56, 66], "report_mem": 56, "sparse_sum_help": 56, "idx1": 56, "idx2": 56, "val1": 56, "val2": 56, "percent_transfer_limit": 56, "matric": 56, "would": [56, 60, 64, 69, 84, 87, 92], "vals1": 56, "vals2": 56, "inds2": 56, "28": [56, 88], "page": [57, 62, 75], "auto": [57, 62], "arkouda": [57, 59, 62, 64, 65, 69, 71, 79, 80, 81, 82, 83, 84, 86, 87, 89, 90, 92, 93, 94, 95, 98], "sphinx": [57, 75, 79], "autoapi": [57, 79], "guid": [58, 73, 75, 76, 77], "describ": [58, 62], "walk": [58, 60, 73], "times2": 58, "conform": 58, "somewher": 58, "subdirectori": 58, "numpydoc": 58, "readthedoc": 58, "generic_msg": [58, 78], "repli": 58, "possibli": 58, "typecheck": 58, "doubl": 58, "cmd": [58, 78], "arg1": 58, "__all__": 58, "machineri": 58, "broken": 58, "dispatch": 58, "arraysetop": [58, 98], "arraysetopsmsg": 58, "modul": [58, 63, 64, 73, 84, 100], "sake": 58, "simplic": 58, "happen": [58, 62], "serverdaemon": 58, "times2msg": 58, "gensymentri": 58, "getgenerictypearrayentri": 58, "tosymentri": 58, "symentri": 58, "st": 58, "addentri": 58, "servererrorstr": 58, "src": [58, 78], "respond": 58, "reqmsg": 58, "msgarg": 58, "borrow": 58, "messagearg": 58, "symtab": 58, "msgtupl": 58, "throw": 58, "vname": 58, "nextnam": 58, "gent": 58, "getgenerictypedarrayentri": 58, "getvalueof": 58, "av": 58, "createsymentri": 58, "attrib": 58, "aslogg": 58, "getmodulenam": [58, 78], "getroutinenam": 58, "getlinenumb": 58, "msgtype": 58, "errormsg": 58, "ret": 58, "final": [58, 59, 62, 75], "resisterfunct": 58, "abl": [58, 62, 68, 69, 75, 84], "launch": [58, 80, 83], "script": [58, 63, 77, 78, 82], "undoubl": 58, "overview": 59, "simplest": 59, "navig": [59, 62, 75, 76, 77, 79], "python3": [59, 63, 75, 76], "autosav": 59, "storag": 59, "benchmark_v2": 59, "commandlin": 59, "0001_0d4865d7c9453adc6af6409568da326845c358b9_20230406_165330": 59, "Will": 59, "counter_nam": 59, "trial": [59, 82], "comma": [59, 67, 75], "NO": 59, "comparison": [59, 67, 89, 95, 96, 100], "maxbit": 59, "wraparound": 59, "unaffect": 59, "index_s": [59, 82], "gather": [59, 83], "scatter": [59, 83], "value_s": [59, 82], "idna": 59, "ascii": 59, "io_only_writ": 59, "io_only_read": 59, "io_only_delet": 59, "io_files_per_loc": 59, "io_compress": 59, "io_path": 59, "ak_io_benchmark": 59, "measur": [59, 82], "rate": 59, "encoding_benchmark": 59, "arkouda_root": 59, "cpython": 59, "64bit": 59, "0014_31de39be8b19c76d073a8999def6673a305c250d_20230405_145759_uncommit": 59, "strings_encodedecod": 59, "stddev": 59, "iqr": 59, "outlier": 59, "bench_encod": 59, "3304": 59, "2561": 59, "7544": 59, "5306": 59, "8075": 59, "9012": 59, "210": 59, "3306": 59, "79": 59, "3805": 59, "02": 59, "8800": 59, "7336": 59, "6465": 59, "58": 59, "4231": 59, "5246": 59, "267": 59, "8380": 59, "bench_decod": 59, "4444": 59, "03": 59, "4177": 59, "7852": 59, "4097": 59, "5622": 59, "04": [59, 80], "5837": 59, "264": 59, "1882": 59, "4621": 59, "9177": 59, "2250": 59, "6125": 59, "50": [59, 66], "0197": 59, "17": [59, 66, 88, 94], "9991": 59, "90": 59, "236": 59, "6864": 59, "88": 59, "0015_31de39be8b19c76d073a8999def6673a305c250d_20230405_145947_uncommit": 59, "4298": 59, "6450": 59, "5541": 59, "0889": 59, "5801": 59, "1436": 59, "281": 59, "3620": 59, "4875": 59, "5255": 59, "7912": 59, "07": 59, "4328": 59, "87": 59, "5652": 59, "4869": 59, "263": 59, "7659": 59, "94": 59, "lot": 59, "benefici": [59, 70], "purpos": [59, 62, 85, 91, 97], "main": [59, 62, 68], "area": 59, "care": 59, "lesser": 59, "extent": 59, "cpu": 59, "architectur": 59, "ran": [59, 63], "350": 59, "relat": [59, 62, 66], "machine_info": 59, "msi": 59, "x86_64": [59, 76, 80], "python_compil": 59, "gcc": [59, 76], "python_implement": 59, "python_implementation_vers": 59, "python_vers": 59, "python_build": 59, "nov": 59, "26": [59, 88], "2020": 59, "57": 59, "microsoft": [59, 80], "wsl2": [59, 81], "cpuinfo_vers": 59, "cpuinfo_version_str": 59, "arch": 59, "arch_string_raw": 59, "vendor_id_raw": 59, "genuineintel": 59, "brand_raw": 59, "intel": 59, "tm": 59, "i7": 59, "8750h": 59, "20ghz": 59, "hz_advertised_friendli": 59, "2000": 59, "ghz": 59, "hz_actual_friendli": 59, "2080": 59, "hz_advertis": 59, "2200000000": 59, "hz_actual": 59, "2207999000": 59, "model": 59, "158": 59, "famili": 59, "3dnowprefetch": 59, "abm": 59, "adx": 59, "ae": 59, "apic": 59, "arch_cap": 59, "avx": 59, "avx2": 59, "bmi1": 59, "bmi2": 59, "clflush": 59, "clflushopt": 59, "cmov": 59, "constant_tsc": 59, "cpuid": 59, "cx16": 59, "cx8": 59, "de": 59, "erm": 59, "f16c": 59, "flush_l1d": 59, "fma": 59, "fpu": 59, "fsgsbase": 59, "fxsr": 59, "ht": 59, "hypervisor": 59, "ibpb": 59, "ibr": 59, "invpcid": 59, "invpcid_singl": 59, "lahf_lm": 59, "lm": 59, "mca": 59, "mce": 59, "mmx": 59, "movb": 59, "msr": 59, "mtrr": 59, "nopl": 59, "osxsav": 59, "pae": 59, "pat": 59, "pcid": 59, "pclmulqdq": 59, "pdpe1gb": 59, "pge": 59, "pni": 59, "popcnt": 59, "pse": 59, "pse36": 59, "pti": 59, "rdrand": 59, "rdrnd": 59, "rdseed": 59, "rdtscp": 59, "rep_good": 59, "sep": 59, "smap": 59, "smep": 59, "ss": 59, "ssbd": 59, "sse": 59, "sse2": 59, "sse4_1": 59, "sse4_2": 59, "ssse3": 59, "stibp": 59, "syscal": 59, "tsc": 59, "vme": 59, "xgetbv1": 59, "xsave": 59, "xsavec": 59, "xsaveopt": 59, "xtopologi": 59, "l3_cache_s": 59, "9437184": 59, "l2_cache_s": 59, "mib": 59, "l1_data_cache_s": 59, "196608": 59, "l1_instruction_cache_s": 59, "l2_cache_line_s": 59, "l2_cache_associ": 59, "commit_info": 59, "31de39be8b19c76d073a8999def6673a305c250d": 59, "2023": [59, 73, 76], "04t16": 59, "author_tim": 59, "04t12": 59, "dirti": 59, "2324_pytest_benchmark_doc": 59, "fullnam": 59, "extra_info": 59, "descript": [59, 62, 66, 83], "problem_s": 59, "transfer_r": 59, "0002": 59, "gib": 59, "disable_gc": 59, "timer": 59, "perf_count": 59, "min_round": 59, "max_tim": 59, "min_tim": 59, "5e": 59, "06": 59, "warmup": 59, "004066600000442122": 59, "007168699999965611": 59, "0048064200000226265": 59, "001326192548940973": 59, "004246700000294368": 59, "0009575499998391024": 59, "q1": 59, "004131924999910552": 59, "q3": 59, "005089474999749655": 59, "iqr_outli": 59, "stddev_outli": 59, "ld15iqr": 59, "hd15iqr": 59, "208": 59, "0550596900172": 59, "024032100000113132": 59, "00383609999971668": 59, "0043372999998609885": 59, "004057779999857303": 59, "00018361238254747651": 59, "0040258999997604406": 59, "0002090000002681336": 59, "0039507749997937935": 59, "004159775000061927": 59, "246": 59, "44017172817806": 59, "020288899999286514": 59, "05t15": 59, "09": [59, 76], "097392": 59, "pai": 59, "attent": 59, "featur": [60, 61, 62, 63, 65, 75, 78, 84, 92], "chpl_comm": [60, 76, 77], "gasnet_spawnfn": 60, "gasnet_route_output": 60, "chpl_gasnet_cfg_opt": 60, "ibv": 60, "gasnet_quiet": 60, "gasnet_masterip": 60, "127": 60, "gasnet_workerip": 60, "chpl_test_timeout": 60, "chpl_rt_oversubscrib": 60, "ye": 60, "gasnetsetup": 60, "cd": [60, 73, 76, 77, 79], "chpl_home": [60, 76, 77], "nl": [60, 73, 99], "too": [61, 84], "backend": [61, 75], "parallel": [61, 84, 95, 98], "leverag": [61, 76], "increment": [61, 62], "everyth": [61, 62], "cut": [61, 62, 64], "somewhat": 61, "heroic": 61, "acceler": 61, "makebinari": 61, "bottleneck": 61, "tend": 61, "chpl_target_compil": 61, "clang": [61, 76], "gnu": [61, 80], "j16": 61, "outlin": [62, 68], "taken": [62, 78], "evolv": 62, "gain": 62, "team": 62, "action": 62, "click": [62, 75, 81], "draft": 62, "button": 62, "bring": 62, "text": [62, 67, 84], "box": 62, "publish": 62, "scheme": 62, "yyyi": 62, "mm": 62, "dd": 62, "v2022": 62, "31": [62, 80], "hei": 62, "mistak": 62, "ok": 62, "dash": 62, "etc": [62, 76, 80], "underneath": 62, "excel": 62, "next": [62, 64, 75, 78, 99], "major": [62, 67, 85, 91, 97], "minor": 62, "review": 62, "Or": 62, "straight": 62, "green": 62, "believ": 62, "loos": 62, "remot": [62, 76, 77, 99], "upstream": [62, 76, 77], "someth": [62, 63, 99], "fetch": [62, 64], "previou": [62, 64, 77], "recent": 62, "ellips": 62, "prev": 62, "onlin": [62, 80], "concis": 62, "onelin": 62, "graphic": 62, "gitk": 62, "push": [62, 75], "strive": 62, "hyperlink": 62, "reason": [62, 64, 77], "guidelin": [62, 100], "substanti": 62, "bug": [62, 65], "coupl": 63, "unset": [63, 77], "optim": 63, "wors": 63, "matter": 63, "hit": 63, "chpl_develop": [63, 77], "rebuilt": 63, "homebrew": [63, 75], "shouldn": [63, 64], "worri": 63, "biggest": 63, "involv": [63, 81], "focus": 63, "just": [63, 64, 95], "crucial": 63, "saveusedmodul": [63, 64, 78], "piec": 63, "benchmark": [63, 65, 78, 82], "interact": [63, 67, 71, 72, 73, 77, 79], "session": [63, 73], "usedmodul": [63, 64, 78], "ctrl": 63, "easiest": 63, "mv": [63, 64], "arkouda_config_fil": [63, 78], "know": 63, "ll": [63, 64, 75], "suggest": [64, 80], "gasnet": [64, 65, 76, 77], "report": 64, "pretti": 64, "frustrat": 64, "past": 64, "recompil": 64, "checkout": 64, "v2023": [64, 73], "isn": 64, "mine": 64, "wherev": 64, "rememb": [64, 66], "won": 64, "overnight": 64, "hog": 64, "ve": [64, 76, 77], "got": 64, "forget": [64, 80], "techniqu": 64, "unnecessari": 64, "tip": [65, 75], "aim": 66, "introduct": 66, "commonli": 66, "exhaust": [66, 68], "ak_arr": 66, "easili": 66, "np_arr": 66, "52": 66, "84": 66, "80": 66, "71": 66, "aid": [66, 68], "transit": 66, "toolset": 66, "IN": 66, "ak_in1d": 66, "ak_int": 66, "m1": 66, "m2": 66, "ak_in1dmult": 66, "ak_in1dmulti": 66, "ak_intmult": 66, "though": 66, "extrem": [66, 68, 70], "let": 66, "sever": [66, 68, 84, 87, 90], "column_nam": 66, "column_data": 66, "fname": 66, "john": 66, "jane": 66, "jake": 66, "lname": 66, "smith": 66, "brown": 66, "ag": 66, "37": 66, "35": 66, "salari": 66, "75000": 66, "77000": 66, "100000": 66, "35000": 66, "f_name": 66, "l_name": 66, "notic": 66, "demo": 66, "computation": 66, "interest": 66, "cola": 67, "colb": 67, "colc": 67, "ghi": 67, "arkodua": [67, 68], "flexibl": 68, "adher": 68, "portion": 68, "isbool": 68, "file_vers": 68, "arkouda_vers": 68, "c_string": 68, "mark": 68, "therefor": 68, "unflatten": 68, "reconstruct": 68, "number_of_dimens": 68, "array_of_size_rank": 68, "current_arkouda_vers": 68, "na_cod": 68, "unique_key_idx": 68, "key_": 68, "notifi": 68, "elect": [68, 69], "ONE": 68, "explicit": [68, 95], "still": [68, 100], "orient": [70, 89, 91, 95, 100], "writ": 70, "paruqet": 70, "ineffiec": 70, "fact": 70, "analyt": 72, "supercomput": 72, "visit": [73, 76, 77], "conda": [73, 75, 76, 77, 79], "yml": [73, 76, 77, 79], "download": [73, 76, 77, 81], "05": 73, "tar": [73, 75, 76, 77], "xzf": [73, 77], "gz": [73, 75, 76, 77], "listen": [73, 99], "your_machin": 73, "chapel_vers": 73, "15461882265": 73, "token_str": 73, "node01": [73, 99], "hang": 73, "exit": [73, 80], "prerequisit": [75, 76, 77], "proceed": 75, "manag": [75, 76, 77, 79, 81], "mac": [75, 77], "makefil": 75, "zeromq": [75, 79], "eval": 75, "anaconda3": [75, 76, 77], "pip": [75, 76, 77], "grep": [75, 80], "opt": [75, 76, 77], "caskroom": [75, 77], "miniforg": 75, "site": 75, "rpath": 75, "boost": 75, "cpp": 75, "thrift": 75, "utf8proc": 75, "virtual": 75, "venv": [75, 76], "activ": [75, 76, 77, 92], "upgrad": [75, 79], "wheel": 75, "clean": 75, "deactiv": 75, "rm": 75, "rf": 75, "dist": 75, "whl": 75, "chpldoc": [75, 76], "frontend": 75, "browser": 75, "ghpage": 75, "scroll": 75, "folder": 75, "homepag": 75, "md": [75, 76, 77], "sudo": [76, 80], "apt": 76, "m4": 76, "perl": 76, "bash": [76, 77], "mawk": 76, "pkg": 76, "config": [76, 78], "cmake": [76, 79], "llvm": [76, 77, 80], "libclang": 76, "cpp14": 76, "libedit": 76, "repo": [76, 77, 81], "encourag": [76, 77], "your_fork": [76, 77], "further": [76, 77, 81], "highli": 76, "archiv": 76, "x86": 76, "wget": 76, "sh": [76, 77], "bashrc": [76, 77, 80], "packag": [76, 77, 79, 81], "pythonpath": [76, 77], "live": [76, 77], "pwd": [76, 77], "conveni": [76, 77, 84], "quickstart": [76, 77, 81], "particularli": [76, 78], "regard": 76, "distro": 76, "cento": 76, "consequ": 76, "newer": 76, "devtoolset": 76, "softwar": 76, "explod": 76, "lang": 76, "xvf": 76, "setchplenv": [76, 77], "chplconfig": 76, "chpl_re2": [76, 77], "bundl": [76, 77], "chpl_llvm": [76, 77], "chpl_gmp": [76, 77], "linux64": 76, "yum": 76, "devel": 76, "gawk": 76, "curl": 76, "incompat": 76, "el7": 76, "scl": 76, "rh": 76, "cm_version": 76, "kitwar": 76, "licens": 76, "subdir": 76, "simul": [76, 77], "manual": 77, "brew": 77, "cask": 77, "exact": 77, "chipset": 77, "2022": 77, "macosx": 77, "arm64": 77, "progress": 77, "life": [77, 79], "cycl": [77, 79], "sync": 77, "zsh": 77, "gmp": 77, "rc": 77, "path_to_chpl": 77, "chpl_target_cpu": 77, "path_to_ark": 77, "reactiv": 77, "zshrc": 77, "successfulli": 77, "hello3": 77, "datapar": 77, "defautl": 77, "funcion": 78, "prior": 78, "exclud": 78, "valuabl": 78, "switch": [78, 88], "totestmsg": 78, "testmsg": 78, "addition": [78, 85], "kextrememsg": 78, "registerfunct": 78, "minkmsg": 78, "maxkmsg": 78, "accomplish": [78, 84], "approach": [78, 96], "test_command": 78, "__dict__": 78, "sometim": [78, 88, 95], "difficult": 78, "discov": 78, "inspect": [78, 84], "wish": 78, "pyzmq": 79, "typeguard": 79, "tabul": 79, "pyfiglet": 79, "h5py": [79, 84], "pyarrow": [79, 84], "pexpect": 79, "argpars": 79, "furo": 79, "myst": 79, "parser": 79, "linkifi": 79, "ast": 79, "931": 79, "990": 79, "yaml": 79, "env_nam": 79, "yaml_fil": 79, "prune": 79, "path_to_arkouda": 79, "strategi": [79, 80, 84], "eager": 79, "subsystem": 80, "wsl": 80, "rout": 80, "ubuntu": 80, "tutori": 80, "app": 80, "account": 80, "symlink": 80, "lt": 80, "tblgen": 80, "libtinfow": 80, "ln": 80, "libtic": 80, "plan": [80, 81, 93, 95], "powershel": 80, "vcxsrv": 80, "x410": 80, "whichev": 80, "firewal": 80, "xserver": 80, "hous": 80, "conf": 80, "nameserv": 80, "awk": 80, "serv": 81, "clone": 81, "100000000": 82, "arithmet": [83, 95], "scan": 83, "summar": [83, 84], "dedupl": 83, "setop": 83, "columnar": 84, "spread": 84, "mpi": 84, "layer": 84, "pipelin": [84, 100], "aggress": 84, "hundr": 84, "thousand": 84, "ingest": [84, 100], "customiz": 84, "schema": 84, "taht": 84, "autoclass": 85, "offer": [85, 91, 97, 100], "mathemat": 87, "multiplex": 87, "29": 88, "advanc": 88, "talk": 88, "cartesian": 88, "wherea": [88, 100], "discourag": [88, 89, 91, 95, 96, 100], "forc": [88, 89, 91, 95, 100], "concept": 89, "almost": [89, 91, 95, 100], "liter": [89, 100], "alon": [89, 100], "unrel": 90, "movement": 90, "unsign": 91, "ieee": [91, 95], "1073741824": 91, "workhors": 92, "scienc": 92, "extract": 92, "imagin": 92, "bydayofweek": 92, "numid": 92, "013": 93, "36": 93, "934176000000015": 93, "07734942223993": 93, "syntax": 94, "assig": 94, "42": 94, "ind": 94, "matlab": 94, "touch": 94, "expans": 94, "lim": 94, "backbon": 95, "And": 95, "incorpor": 95, "implicit": 95, "loss": 96, "functioanl": 96, "strucutur": 96, "abil": 96, "shown": 99, "sai": 99, "went": 99, "reachabl": 99, "wide": 100, "compris": 100, "whenev": 100, "threshold": 100, "pipe": 100, "googl": 100, "sacrific": 100, "notabl": 100, "exchang": 100}, "objects": {"": [[32, 0, 0, "-", "arkouda"]], "arkouda": [[32, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [32, 1, 1, "", "AllSymbols"], [88, 2, 1, "", "ArrayView"], [32, 2, 1, "", "BitVector"], [32, 5, 1, "", "BitVectorizer"], [32, 2, 1, "", "CachedAccessor"], [89, 2, 1, "", "Categorical"], [32, 1, 1, "", "DTypeObjects"], [32, 1, 1, "", "DTypes"], [91, 2, 1, "", "DataFrame"], [32, 2, 1, "id182", "Datetime"], [32, 2, 1, "", "DatetimeAccessor"], [32, 2, 1, "", "DiffAggregate"], [32, 2, 1, "", "ErrorMode"], [32, 2, 1, "", "Fields"], [32, 1, 1, "", "GROUPBY_REDUCTION_TYPES"], [32, 2, 1, "", "Generator"], [92, 2, 1, "", "GroupBy"], [32, 2, 1, "", "IPv4"], [85, 2, 1, "", "Index"], [32, 2, 1, "", "LogLevel"], [32, 2, 1, "", "MultiIndex"], [32, 7, 1, "", "NonUniqueError"], [32, 2, 1, "", "Power_divergenceResult"], [32, 2, 1, "", "Properties"], [32, 1, 1, "", "RegisteredSymbols"], [32, 7, 1, "id396", "RegistrationError"], [32, 2, 1, "", "Row"], [32, 1, 1, "", "ScalarDTypes"], [97, 2, 1, "", "Series"], [32, 2, 1, "", "StringAccessor"], [32, 2, 1, "id533", "Strings"], [32, 2, 1, "id601", "Timedelta"], [87, 5, 1, "", "abs"], [2, 0, 0, "-", "accessor"], [32, 5, 1, "", "akabs"], [32, 1, 1, "", "akbool"], [32, 5, 1, "id623", "akcast"], [32, 1, 1, "id624", "akfloat64"], [32, 1, 1, "id625", "akint64"], [4, 0, 0, "-", "akscipy"], [32, 1, 1, "id626", "akuint64"], [32, 5, 1, "", "align"], [7, 0, 0, "-", "alignment"], [87, 5, 1, "", "all"], [32, 1, 1, "", "all_scalars"], [87, 5, 1, "", "any"], [90, 5, 1, "", "arange"], [32, 5, 1, "", "arccos"], [32, 5, 1, "", "arccosh"], [32, 5, 1, "", "arcsin"], [32, 5, 1, "", "arcsinh"], [32, 5, 1, "", "arctan"], [32, 5, 1, "", "arctan2"], [32, 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"], [22, 0, 0, "-", "array_api"], [24, 0, 0, "-", "array_view"], [32, 5, 1, "", "attach"], [32, 5, 1, "", "attach_all"], [32, 5, 1, "", "attach_pdarray"], [32, 1, 1, "id635", "bigint"], [32, 5, 1, "", "bigint_from_uint_arrays"], [32, 1, 1, "id636", "bitType"], [32, 1, 1, "", "bool"], [32, 1, 1, "", "bool_scalars"], [32, 5, 1, "id638", "broadcast"], [32, 5, 1, "", "broadcast_dims"], [32, 5, 1, "", "broadcast_to_shape"], [95, 5, 1, "", "cast"], [25, 0, 0, "-", "categorical"], [32, 5, 1, "", "ceil"], [32, 5, 1, "", "check_np_dtype"], [32, 5, 1, "", "chisquare"], [32, 5, 1, "", "clear"], [26, 0, 0, "-", "client"], [27, 0, 0, "-", "client_dtypes"], [32, 5, 1, "", "clz"], [86, 5, 1, "", "coargsort"], [32, 1, 1, "", "complex128"], [32, 1, 1, "", "complex64"], [32, 5, 1, "", "compute_join_size"], [90, 5, 1, "", "concatenate"], [99, 5, 1, "", "connect"], [32, 5, 1, "", "convert_if_categorical"], [32, 5, 1, "", "corr"], [87, 5, 1, "", "cos"], [32, 5, 1, "", "cosh"], [32, 5, 1, "", "cov"], [32, 5, 1, "id644", "create_pdarray"], [32, 5, 1, "", "ctz"], [87, 5, 1, "", "cumprod"], [87, 5, 1, "", "cumsum"], [28, 0, 0, "-", "dataframe"], [32, 5, 1, "", "date_operators"], [32, 5, 1, "id645", "date_range"], [32, 5, 1, "", "deg2rad"], [32, 5, 1, "", "disableVerbose"], [32, 5, 1, "", "divmod"], [32, 5, 1, "", "dot"], [32, 5, 1, "", "dtype"], [29, 0, 0, "-", "dtypes"], [32, 5, 1, "", "enableVerbose"], [87, 5, 1, "", "exp"], [32, 5, 1, "", "expm1"], [84, 5, 1, "", "export"], [32, 5, 1, "", "find"], [32, 1, 1, "", "float32"], [32, 1, 1, "", "float64"], [32, 1, 1, "", "float_scalars"], [32, 5, 1, "", "floor"], [32, 5, 1, "", "fmod"], [32, 5, 1, "id646", "from_series"], [32, 5, 1, "id647", "full"], [32, 5, 1, "", "full_like"], [32, 5, 1, "", "gen_ranges"], [32, 5, 1, "", "generic_concat"], [32, 5, 1, "", "get_byteorder"], [32, 5, 1, "", "get_callback"], [32, 5, 1, "", "get_columns"], [84, 5, 1, "", "get_datasets"], [32, 5, 1, "", "get_filetype"], [32, 5, 1, "", "get_null_indices"], [32, 5, 1, "", "get_server_byteorder"], [30, 0, 0, "-", "groupbyclass"], [32, 5, 1, "", "hash"], [32, 5, 1, "", "hist_all"], [93, 5, 1, "", "histogram"], [32, 5, 1, "", "histogram2d"], [32, 5, 1, "", "histogramdd"], [31, 0, 0, "-", "history"], [84, 5, 1, "", "import_data"], [98, 5, 1, "", "in1d"], [32, 5, 1, "", "in1d_intervals"], [33, 0, 0, "-", "index"], [32, 5, 1, "", "indexof1d"], [34, 0, 0, "-", "infoclass"], [32, 5, 1, "", "information"], [32, 1, 1, "", "int16"], [32, 1, 1, "", "int32"], [32, 1, 1, "id653", "int64"], [32, 1, 1, "", "int8"], [32, 1, 1, "id655", "intTypes"], [32, 1, 1, "id656", "int_scalars"], [32, 5, 1, "", "intersect"], [98, 5, 1, "", "intersect1d"], [32, 5, 1, "", "interval_lookup"], [32, 5, 1, "", "intx"], [32, 5, 1, "", "invert_permutation"], [35, 0, 0, "-", "io"], [36, 0, 0, "-", "io_util"], [32, 5, 1, "", "ip_address"], [32, 5, 1, "id657", "isSupportedInt"], [32, 5, 1, "", "isSupportedNumber"], [32, 5, 1, "", "is_cosorted"], [32, 5, 1, "", "is_ipv4"], [32, 5, 1, "", "is_ipv6"], [32, 5, 1, "", "is_registered"], [87, 5, 1, "", "is_sorted"], [32, 5, 1, "", "isfinite"], [32, 5, 1, "", "isinf"], [32, 5, 1, "id658", "isnan"], [37, 0, 0, "-", "join"], [32, 5, 1, "", "join_on_eq_with_dt"], [32, 5, 1, "", "left_align"], [90, 5, 1, "", "linspace"], [32, 5, 1, "", "list_registry"], [32, 5, 1, "", "list_symbol_table"], [32, 5, 1, "", "load"], [32, 5, 1, "", "load_all"], [87, 5, 1, "", "log"], [32, 5, 1, "", "log10"], [32, 5, 1, "", "log1p"], [32, 5, 1, "", "log2"], [38, 0, 0, "-", "logger"], [32, 5, 1, "", "lookup"], [32, 5, 1, "", "ls"], [32, 5, 1, "", "ls_csv"], [39, 0, 0, "-", "match"], [40, 0, 0, "-", "matcher"], [87, 5, 1, "", "max"], [87, 5, 1, "", "maxk"], [87, 5, 1, "", "mean"], [32, 5, 1, "", "merge"], [87, 5, 1, "", "min"], [87, 5, 1, "", "mink"], [32, 5, 1, "", "mod"], [41, 0, 0, "-", "numeric"], [32, 1, 1, "", "numeric_scalars"], [32, 1, 1, "", "numpy_scalars"], [90, 5, 1, "", "ones"], [90, 5, 1, "", "ones_like"], [32, 5, 1, "", "parity"], [95, 2, 1, "", "pdarray"], [42, 0, 0, "-", "pdarrayclass"], [43, 0, 0, "-", "pdarraycreation"], [44, 0, 0, "-", "pdarraysetops"], [32, 5, 1, "", "plot_dist"], [45, 0, 0, "-", "plotting"], [32, 5, 1, "", "popcount"], [32, 5, 1, "", "power"], [32, 5, 1, "", "power_divergence"], [32, 5, 1, "", "pretty_print_information"], [87, 5, 1, "", "prod"], [32, 5, 1, "", "rad2deg"], [90, 5, 1, "", "randint"], [48, 0, 0, "-", "random"], [32, 5, 1, "", "random_strings_lognormal"], [32, 5, 1, "", "random_strings_uniform"], [84, 5, 1, "", "read"], [32, 5, 1, "", "read_csv"], [32, 5, 1, "", "read_hdf"], [32, 5, 1, "", "read_parquet"], [32, 5, 1, "", "read_tagged_data"], [32, 5, 1, "", "receive"], [32, 5, 1, "", "receive_dataframe"], [32, 5, 1, "", "register_all"], [32, 5, 1, "", "resolve_scalar_dtype"], [32, 5, 1, "", "restore"], [32, 5, 1, "", "right_align"], [32, 5, 1, "", "rotl"], [32, 5, 1, "", "rotr"], [32, 5, 1, "", "round"], [49, 0, 0, "-", "row"], [32, 5, 1, "", "save_all"], [32, 5, 1, "", "search_intervals"], [50, 0, 0, "-", "security"], [51, 0, 0, "-", "segarray"], [52, 0, 0, "-", "series"], [98, 5, 1, "", "setdiff1d"], [98, 5, 1, "", "setxor1d"], [32, 5, 1, "", "sign"], [87, 5, 1, "", "sin"], [32, 5, 1, "", "sinh"], [32, 5, 1, "", "skew"], [32, 5, 1, "", "snapshot"], [32, 5, 1, "", "sort"], [53, 0, 0, "-", "sorting"], [32, 5, 1, "", "sqrt"], [32, 5, 1, "", "square"], [32, 5, 1, "id908", "standard_normal"], [87, 5, 1, "", "std"], [32, 1, 1, "", "str_"], [32, 1, 1, "", "str_scalars"], [32, 5, 1, "", "string_operators"], [54, 0, 0, "-", "strings"], [87, 5, 1, "", "sum"], [32, 5, 1, "", "tan"], [32, 5, 1, "", "tanh"], [55, 0, 0, "-", "timeclass"], [32, 5, 1, "id909", "timedelta_range"], [32, 5, 1, "", "to_csv"], [32, 5, 1, "", "to_hdf"], [32, 5, 1, "", "to_parquet"], [32, 5, 1, "", "translate_np_dtype"], [32, 5, 1, "", "trunc"], [32, 1, 1, "", "uint16"], [32, 1, 1, "", "uint32"], [32, 1, 1, "", "uint64"], [32, 1, 1, "", "uint8"], [32, 5, 1, "id910", "uniform"], [98, 5, 1, "", "union1d"], [98, 5, 1, "", "unique"], [32, 5, 1, "", "unregister"], [32, 5, 1, "", "unregister_all"], [32, 5, 1, "", "unregister_pdarray_by_name"], [32, 5, 1, "", "unsqueeze"], [32, 5, 1, "", "update_hdf"], [56, 0, 0, "-", "util"], [93, 5, 1, "", "value_counts"], [87, 5, 1, "", "var"], [87, 5, 1, "", "where"], [32, 5, 1, "", "write_log"], [32, 5, 1, "", "xlogy"], [32, 5, 1, "", "zero_up"], [90, 5, 1, "", "zeros"], [90, 5, 1, "", "zeros_like"]], "arkouda.ArrayView": [[88, 3, 1, "", "base"], [88, 3, 1, "", "dtype"], [88, 3, 1, "", "itemsize"], [88, 3, 1, "", "ndim"], [32, 3, 1, "", "objType"], [88, 3, 1, "", "order"], [88, 3, 1, "", "shape"], [88, 3, 1, "", "size"], [32, 4, 1, "", "to_hdf"], [32, 4, 1, "", "to_list"], [88, 5, 1, "", "to_ndarray"], [32, 4, 1, "", "update_hdf"]], "arkouda.BitVector": [[32, 3, 1, "", "conserves"], [32, 4, 1, "", "format"], [32, 4, 1, "", "from_return_msg"], [32, 4, 1, "", "opeq"], [32, 4, 1, "", "register"], [32, 3, 1, "", "special_objType"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_ndarray"]], "arkouda.Categorical": [[32, 3, 1, "id61", "BinOps"], [32, 3, 1, "id62", "RegisterablePieces"], [32, 3, 1, "id63", "RequiredPieces"], [32, 4, 1, "id68", "argsort"], [32, 4, 1, "id69", "attach"], [89, 3, 1, "", "categories"], [89, 3, 1, "", "codes"], [32, 4, 1, "id70", "concatenate"], [89, 4, 1, "", "contains"], [32, 3, 1, "id64", "dtype"], [89, 4, 1, "", "endswith"], [89, 4, 1, "", "from_codes"], [32, 4, 1, "id74", "from_return_msg"], [32, 4, 1, "id75", "group"], [32, 4, 1, "id76", "hash"], [32, 4, 1, "id77", "in1d"], [32, 4, 1, "id78", "info"], [32, 4, 1, "id79", "is_registered"], [32, 4, 1, "id80", "isna"], [32, 6, 1, "id60", "nbytes"], [89, 3, 1, "", "ndim"], [89, 3, 1, "", "nlevels"], [32, 3, 1, "id65", "objType"], [32, 4, 1, "id81", "parse_hdf_categoricals"], [89, 3, 1, "", "permutation"], [32, 4, 1, "id82", "pretty_print_info"], [32, 4, 1, "id83", "register"], [32, 4, 1, "id84", "reset_categories"], [32, 4, 1, "id85", "save"], [89, 3, 1, "", "segments"], [32, 4, 1, "id86", "set_categories"], [89, 3, 1, "", "shape"], [89, 3, 1, "", "size"], [32, 4, 1, "id87", "sort"], [32, 4, 1, "id88", "standardize_categories"], [89, 4, 1, "", "startswith"], [32, 4, 1, "id90", "to_hdf"], [32, 4, 1, "id91", "to_list"], [89, 5, 1, "", "to_ndarray"], [32, 4, 1, "id93", "to_parquet"], [32, 4, 1, "id94", "to_strings"], [32, 4, 1, "id95", "transfer"], [32, 4, 1, "id96", "unique"], [32, 4, 1, "id97", "unregister"], [32, 4, 1, "id98", "unregister_categorical_by_name"], [32, 4, 1, "id99", "update_hdf"]], "arkouda.DataFrame": [[32, 4, 1, "id109", "GroupBy"], [32, 4, 1, "id110", "append"], [91, 5, 1, "", "apply_permutation"], [91, 5, 1, "", "argsort"], [32, 4, 1, "id113", "attach"], [91, 5, 1, "", "coargsort"], [32, 6, 1, "id101", "columns"], [91, 5, 1, "", "concat"], [91, 5, 1, "", "copy"], [32, 4, 1, "id117", "corr"], [91, 5, 1, "", "drop"], [91, 5, 1, "", "drop_duplicates"], [32, 6, 1, "id102", "dtypes"], [32, 6, 1, "id103", "empty"], [32, 4, 1, "id120", "filter_by_range"], [32, 4, 1, "id121", "from_pandas"], [32, 4, 1, "id122", "from_return_msg"], [91, 5, 1, "", "groupby"], [91, 5, 1, "", "head"], [32, 6, 1, "id104", "index"], [32, 6, 1, "id105", "info"], [32, 4, 1, "id125", "is_registered"], [32, 4, 1, "id126", "isin"], [32, 4, 1, "id127", "load"], [32, 4, 1, "id128", "memory_usage"], [32, 4, 1, "id129", "memory_usage_info"], [32, 4, 1, "id130", "merge"], [32, 3, 1, "id108", "objType"], [32, 4, 1, "id131", "read_csv"], [32, 4, 1, "id132", "register"], [91, 5, 1, "", "rename"], [91, 5, 1, "", "reset_index"], [32, 4, 1, "id135", "sample"], [32, 4, 1, "id136", "save"], [32, 6, 1, "id106", "shape"], [32, 6, 1, "id107", "size"], [32, 4, 1, "id137", "sort_index"], [91, 5, 1, "", "sort_values"], [91, 5, 1, "", "tail"], [32, 4, 1, "id140", "to_csv"], [32, 4, 1, "id141", "to_hdf"], [91, 5, 1, "", "to_pandas"], [32, 4, 1, "id143", "to_parquet"], [32, 4, 1, "id144", "transfer"], [32, 4, 1, "id145", "unregister"], [32, 4, 1, "id146", "unregister_dataframe_by_name"], [32, 4, 1, "id147", "update_hdf"], [32, 4, 1, "id148", "update_nrows"]], "arkouda.Datetime": [[32, 6, 1, "id183", "date"], [32, 6, 1, "id184", "day"], [32, 6, 1, "id185", "day_of_week"], [32, 6, 1, "id186", "day_of_year"], [32, 6, 1, "id187", "dayofweek"], [32, 6, 1, "id188", "dayofyear"], [32, 6, 1, "id189", "hour"], [32, 6, 1, "id190", "is_leap_year"], [32, 4, 1, "id209", "is_registered"], [32, 4, 1, "id210", "isocalendar"], [32, 6, 1, "id191", "microsecond"], [32, 6, 1, "id192", "millisecond"], [32, 6, 1, "id193", "minute"], [32, 6, 1, "id194", "month"], [32, 6, 1, "id195", "nanosecond"], [32, 4, 1, "id211", "register"], [32, 6, 1, "id196", "second"], [32, 3, 1, "id201", "special_objType"], [32, 4, 1, "id212", "sum"], [32, 3, 1, "id202", "supported_opeq"], [32, 3, 1, "id203", "supported_with_datetime"], [32, 3, 1, "id204", "supported_with_pdarray"], [32, 3, 1, "id205", "supported_with_r_datetime"], [32, 3, 1, "id206", "supported_with_r_pdarray"], [32, 3, 1, "id207", "supported_with_r_timedelta"], [32, 3, 1, "id208", "supported_with_timedelta"], [32, 4, 1, "id213", "to_pandas"], [32, 4, 1, "id214", "unregister"], [32, 6, 1, "id197", "week"], [32, 6, 1, "id198", "weekday"], [32, 6, 1, "id199", "weekofyear"], [32, 6, 1, "id200", "year"]], "arkouda.DiffAggregate": [[32, 3, 1, "", "gb"], [32, 3, 1, "", "values"]], "arkouda.ErrorMode": [[32, 3, 1, "", "ignore"], [32, 3, 1, "", "return_validity"], [32, 3, 1, "", "strict"]], "arkouda.Fields": [[32, 4, 1, "", "format"], [32, 4, 1, "", "opeq"]], "arkouda.Generator": [[32, 4, 1, "", "integers"], [32, 4, 1, "", "random"], [32, 4, 1, "", "standard_normal"], [32, 4, 1, "", "uniform"]], "arkouda.GroupBy": [[92, 4, 1, "", "AND"], [92, 4, 1, "", "OR"], [32, 3, 1, "id357", "Reductions"], [92, 4, 1, "", "XOR"], [92, 4, 1, "", "aggregate"], [92, 4, 1, "", "all"], [92, 4, 1, "", "any"], [92, 4, 1, "", "argmax"], [92, 4, 1, "", "argmin"], [92, 4, 1, "", "attach"], [92, 4, 1, "", "broadcast"], [92, 4, 1, "", "build_from_components"], [92, 4, 1, "", "count"], [92, 3, 1, "", "dropna"], [92, 4, 1, "", "first"], [32, 4, 1, "id372", "from_return_msg"], [92, 4, 1, "", "is_registered"], [92, 3, 1, "", "logger"], [92, 4, 1, "", "max"], [92, 4, 1, "", "mean"], [92, 4, 1, "", "median"], [92, 4, 1, "", "min"], [92, 4, 1, "", "mode"], [92, 4, 1, "", "most_common"], [92, 3, 1, "", "ngroups"], [92, 3, 1, "", "nkeys"], [92, 4, 1, "", "nunique"], [32, 3, 1, "id358", "objType"], [92, 3, 1, "", "permutation"], [92, 4, 1, "", "prod"], [92, 4, 1, "", "register"], [92, 3, 1, "", "segments"], [92, 4, 1, "id0", "size"], [92, 4, 1, "", "std"], [92, 4, 1, "", "sum"], [92, 4, 1, "", "to_hdf"], [92, 4, 1, "", "unique"], [92, 3, 1, "", "unique_keys"], [92, 4, 1, "", "unregister"], [92, 4, 1, "", "unregister_groupby_by_name"], [32, 4, 1, "id390", "update_hdf"], [92, 4, 1, "", "var"]], "arkouda.IPv4": [[32, 4, 1, "", "export_uint"], [32, 4, 1, "", "format"], [32, 4, 1, "", "normalize"], [32, 4, 1, "", "opeq"], [32, 4, 1, "", "register"], [32, 3, 1, "", "special_objType"], [32, 4, 1, "", "to_hdf"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_ndarray"], [32, 4, 1, "", "update_hdf"]], "arkouda.Index": [[85, 5, 1, "", "argsort"], [85, 5, 1, "", "concat"], [32, 4, 1, "", "factory"], [32, 4, 1, "", "from_return_msg"], [32, 6, 1, "", "index"], [32, 4, 1, "", "is_registered"], [32, 6, 1, "", "is_unique"], [85, 5, 1, "", "lookup"], [32, 4, 1, "", "memory_usage"], [32, 3, 1, "", "objType"], [32, 4, 1, "", "register"], [32, 4, 1, "", "save"], [85, 5, 1, "", "set_dtype"], [32, 6, 1, "", "shape"], [32, 4, 1, "", "to_csv"], [32, 4, 1, "", "to_dict"], [32, 4, 1, "", "to_hdf"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_ndarray"], [32, 4, 1, "", "to_pandas"], [32, 4, 1, "", "to_parquet"], [32, 4, 1, "", "unregister"], [32, 4, 1, "", "update_hdf"]], "arkouda.LogLevel": [[32, 3, 1, "", "CRITICAL"], [32, 3, 1, "", "DEBUG"], [32, 3, 1, "", "ERROR"], [32, 3, 1, "", "INFO"], [32, 3, 1, "", "WARN"]], "arkouda.MultiIndex": [[85, 5, 1, "", "argsort"], [85, 5, 1, "", "concat"], [32, 6, 1, "", "index"], [32, 4, 1, "", "is_registered"], [85, 5, 1, "", "lookup"], [32, 4, 1, "", "memory_usage"], [32, 3, 1, "", "objType"], [32, 4, 1, "", "register"], [85, 5, 1, "", "set_dtype"], [32, 4, 1, "", "to_dict"], [32, 4, 1, "", "to_hdf"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_ndarray"], [32, 4, 1, "", "to_pandas"], [32, 4, 1, "", "unregister"], [32, 4, 1, "", "update_hdf"]], "arkouda.Power_divergenceResult": [[32, 3, 1, "", "pvalue"], [32, 3, 1, "", "statistic"]], "arkouda.SegArray": [[96, 5, 1, "", "append"], [96, 5, 1, "", "append_single"], [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"], [96, 5, 1, "", "intersect"], [96, 5, 1, "", "prepend_single"], [96, 5, 1, "", "remove_repeats"], [96, 5, 1, "", "set_jth"], [96, 5, 1, "", "setdiff"], [96, 5, 1, "", "setxor"], [96, 5, 1, "", "to_ndarray"], [96, 5, 1, "", "union"]], "arkouda.Series": [[32, 4, 1, "", "add"], [32, 6, 1, "", "at"], [32, 4, 1, "", "attach"], [32, 4, 1, "", "concat"], [32, 4, 1, "", "diff"], [32, 3, 1, "", "dt"], [32, 4, 1, "", "from_return_msg"], [32, 4, 1, "", "has_repeat_labels"], [97, 5, 1, "", "head"], [32, 6, 1, "", "iat"], [32, 6, 1, "", "iloc"], [32, 4, 1, "", "is_registered"], [32, 4, 1, "", "isin"], [32, 6, 1, "", "loc"], [97, 5, 1, "id0", "locate"], [32, 4, 1, "", "map"], [32, 4, 1, "", "memory_usage"], [32, 3, 1, "", "objType"], [97, 5, 1, "", "pdconcat"], [32, 4, 1, "", "register"], [32, 6, 1, "", "shape"], [97, 5, 1, "", "sort_index"], [97, 5, 1, "", "sort_values"], [32, 3, 1, "", "str_acc"], [97, 5, 1, "", "tail"], [32, 4, 1, "", "to_dataframe"], [32, 4, 1, "", "to_list"], [97, 5, 1, "", "to_pandas"], [97, 5, 1, "", "topn"], [32, 4, 1, "", "unregister"], [32, 4, 1, "", "validate_key"], [32, 4, 1, "", "validate_val"], [97, 5, 1, "", "value_counts"]], "arkouda.Strings": [[32, 3, 1, "id541", "BinOps"], [32, 4, 1, "id543", "astype"], [32, 4, 1, "id544", "attach"], [32, 4, 1, "id545", "cached_regex_patterns"], [32, 4, 1, "id546", "capitalize"], [100, 4, 1, "", "contains"], [32, 4, 1, "id548", "decode"], [32, 3, 1, "id539", "dtype"], [32, 4, 1, "id549", "encode"], [100, 4, 1, "", "endswith"], [32, 3, 1, "id534", "entry"], [100, 4, 1, "", "find_locations"], [100, 4, 1, "", "findall"], [100, 4, 1, "", "flatten"], [32, 4, 1, "id554", "from_parts"], [32, 4, 1, "id555", "from_return_msg"], [100, 4, 1, "", "fullmatch"], [32, 4, 1, "id557", "get_bytes"], [32, 4, 1, "id558", "get_lengths"], [32, 4, 1, "id559", "get_offsets"], [32, 4, 1, "id560", "get_prefixes"], [32, 4, 1, "id561", "get_suffixes"], [32, 4, 1, "id562", "group"], [32, 4, 1, "id563", "hash"], [32, 4, 1, "id564", "info"], [32, 4, 1, "id565", "is_registered"], [32, 4, 1, "id566", "isalnum"], [32, 4, 1, "id567", "isalpha"], [32, 4, 1, "id568", "isdigit"], [32, 4, 1, "id569", "isempty"], [32, 4, 1, "id570", "islower"], [32, 4, 1, "id571", "isspace"], [32, 4, 1, "id572", "istitle"], [32, 4, 1, "id573", "isupper"], [32, 3, 1, "id540", "logger"], [32, 4, 1, "id574", "lower"], [100, 4, 1, "", "lstick"], [100, 4, 1, "", "match"], [32, 3, 1, "id536", "nbytes"], [32, 3, 1, "id537", "ndim"], [32, 3, 1, "id542", "objType"], [100, 4, 1, "", "peel"], [32, 4, 1, "id578", "pretty_print_info"], [32, 4, 1, "id579", "purge_cached_regex_patterns"], [32, 4, 1, "id580", "register"], [100, 4, 1, "", "rpeel"], [32, 4, 1, "id582", "save"], [100, 4, 1, "", "search"], [32, 3, 1, "id538", "shape"], [32, 3, 1, "id535", "size"], [100, 4, 1, "", "split"], [100, 4, 1, "", "startswith"], [100, 4, 1, "", "stick"], [32, 4, 1, "id587", "strip"], [100, 4, 1, "", "sub"], [100, 4, 1, "", "subn"], [32, 4, 1, "id590", "title"], [32, 4, 1, "id591", "to_csv"], [32, 4, 1, "id592", "to_hdf"], [32, 4, 1, "id593", "to_list"], [100, 5, 1, "", "to_ndarray"], [32, 4, 1, "id595", "to_parquet"], [32, 4, 1, "id596", "transfer"], [32, 4, 1, "id597", "unregister"], [32, 4, 1, "id598", "unregister_strings_by_name"], [32, 4, 1, "id599", "update_hdf"], [32, 4, 1, "id600", "upper"]], "arkouda.Timedelta": [[32, 4, 1, "id615", "abs"], [32, 6, 1, "id602", "components"], [32, 6, 1, "id603", "days"], [32, 4, 1, "id616", "is_registered"], [32, 6, 1, "id604", "microseconds"], [32, 6, 1, "id605", "nanoseconds"], [32, 4, 1, "id617", "register"], [32, 6, 1, "id606", "seconds"], [32, 3, 1, "id607", "special_objType"], [32, 4, 1, "id618", "std"], [32, 4, 1, "id619", "sum"], [32, 3, 1, "id608", "supported_opeq"], [32, 3, 1, "id609", "supported_with_datetime"], [32, 3, 1, "id610", "supported_with_pdarray"], [32, 3, 1, "id611", "supported_with_r_datetime"], [32, 3, 1, "id612", "supported_with_r_pdarray"], [32, 3, 1, "id613", "supported_with_r_timedelta"], [32, 3, 1, "id614", "supported_with_timedelta"], [32, 4, 1, "id620", "to_pandas"], [32, 4, 1, "id621", "total_seconds"], [32, 4, 1, "id622", "unregister"]], "arkouda.accessor": [[2, 2, 1, "", "CachedAccessor"], [2, 2, 1, "", "DatetimeAccessor"], [2, 2, 1, "", "Properties"], [2, 2, 1, "", "StringAccessor"], [2, 5, 1, "", "date_operators"], [2, 5, 1, "", "string_operators"]], "arkouda.akscipy": [[4, 2, 1, "", "Power_divergenceResult"], [3, 0, 0, "-", "_stats_py"], [4, 5, 1, "", "chisquare"], [4, 5, 1, "", "power_divergence"], [6, 0, 0, "-", "special"]], "arkouda.akscipy.Power_divergenceResult": [[4, 3, 1, "", "pvalue"], [4, 3, 1, "", "statistic"]], "arkouda.akscipy._stats_py": [[3, 2, 1, "", "Power_divergenceResult"], [3, 5, 1, "", "chisquare"], [3, 5, 1, "", "power_divergence"]], "arkouda.akscipy._stats_py.Power_divergenceResult": [[3, 3, 1, "", "pvalue"], [3, 3, 1, "", "statistic"]], "arkouda.akscipy.special": [[5, 0, 0, "-", "_math"], [6, 5, 1, "", "xlogy"]], "arkouda.akscipy.special._math": [[5, 5, 1, "", "xlogy"]], "arkouda.alignment": [[7, 7, 1, "", "NonUniqueError"], [7, 5, 1, "", "align"], [7, 5, 1, "", "find"], [7, 5, 1, "", "in1d_intervals"], [7, 5, 1, "", "interval_lookup"], [7, 5, 1, "", "is_cosorted"], [7, 5, 1, "", "left_align"], [7, 5, 1, "", "lookup"], [7, 5, 1, "", "right_align"], [7, 5, 1, "", "search_intervals"], [7, 5, 1, "", "unsqueeze"], [7, 5, 1, "", "zero_up"]], "arkouda.array_api": [[8, 0, 0, "-", "_array_object"], [9, 0, 0, "-", "_constants"], [10, 0, 0, "-", "_creation_functions"], [11, 0, 0, "-", "_data_type_functions"], [12, 0, 0, "-", "_dtypes"], [13, 0, 0, "-", "_elementwise_functions"], [14, 0, 0, "-", "_indexing_functions"], [15, 0, 0, "-", "_manipulation_functions"], [16, 0, 0, "-", "_searching_functions"], [17, 0, 0, "-", "_set_functions"], [18, 0, 0, "-", "_sorting_functions"], [19, 0, 0, "-", "_statistical_functions"], [20, 0, 0, "-", "_typing"], [21, 0, 0, "-", "_utility_functions"], [23, 0, 0, "-", "linalg"]], "arkouda.array_api._array_object": [[8, 2, 1, "", "Array"]], "arkouda.array_api._array_object.Array": [[8, 6, 1, "", "T"], [8, 6, 1, "", "device"], [8, 6, 1, "", "dtype"], [8, 6, 1, "", "mT"], [8, 6, 1, "", "ndim"], [8, 6, 1, "", "shape"], [8, 6, 1, "", "size"], [8, 4, 1, "", "to_device"], [8, 4, 1, "", "to_ndarray"], [8, 4, 1, "", "tolist"]], "arkouda.array_api._constants": [[9, 1, 1, "", "e"], [9, 1, 1, "", "inf"], [9, 1, 1, "", "nan"], [9, 1, 1, "", "pi"]], "arkouda.array_api._creation_functions": [[10, 5, 1, "", "arange"], [10, 5, 1, "", "asarray"], [10, 5, 1, "", "empty"], [10, 5, 1, "", "empty_like"], [10, 5, 1, "", "eye"], [10, 5, 1, "", "from_dlpack"], [10, 5, 1, "", "full"], [10, 5, 1, "", "full_like"], [10, 5, 1, "", "linspace"], [10, 5, 1, "", "meshgrid"], [10, 5, 1, "", "ones"], [10, 5, 1, "", "ones_like"], [10, 5, 1, "", "tril"], [10, 5, 1, "", "triu"], [10, 5, 1, "", "zeros"], [10, 5, 1, "", "zeros_like"]], "arkouda.array_api._data_type_functions": [[11, 5, 1, "", "astype"], [11, 5, 1, "", "can_cast"], [11, 2, 1, "", "finfo_object"], [11, 2, 1, "", "iinfo_object"], [11, 5, 1, "", "isdtype"], [11, 5, 1, "", "result_type"]], "arkouda.array_api._data_type_functions.finfo_object": [[11, 3, 1, "", "bits"], [11, 3, 1, "", "dtype"], [11, 3, 1, "", "eps"], [11, 3, 1, "", "max"], [11, 3, 1, "", "min"], [11, 3, 1, "", "smallest_normal"]], "arkouda.array_api._data_type_functions.iinfo_object": [[11, 3, 1, "", "bits"], [11, 3, 1, "", "dtype"], [11, 3, 1, "", "max"], [11, 3, 1, "", "min"]], "arkouda.array_api._dtypes": [[12, 1, 1, "", "bool"], [12, 1, 1, "", "complex128"], [12, 1, 1, "", "complex64"], [12, 1, 1, "", "float32"], [12, 1, 1, "", "float64"], [12, 1, 1, "", "int16"], [12, 1, 1, "", "int32"], [12, 1, 1, "", "int64"], [12, 1, 1, "", "int8"], [12, 1, 1, "", "uint16"], [12, 1, 1, "", "uint32"], [12, 1, 1, "", "uint64"], [12, 1, 1, "", "uint8"]], "arkouda.array_api._elementwise_functions": [[13, 5, 1, "", "abs"], [13, 5, 1, "", "acos"], [13, 5, 1, "", "acosh"], [13, 5, 1, "", "add"], [13, 5, 1, "", "asin"], [13, 5, 1, "", "asinh"], [13, 5, 1, "", "atan"], [13, 5, 1, "", "atan2"], [13, 5, 1, "", "atanh"], [13, 5, 1, "", "bitwise_and"], [13, 5, 1, "", "bitwise_invert"], [13, 5, 1, "", "bitwise_left_shift"], [13, 5, 1, "", "bitwise_or"], [13, 5, 1, "", "bitwise_right_shift"], [13, 5, 1, "", "bitwise_xor"], [13, 5, 1, "", "ceil"], [13, 5, 1, "", "conj"], [13, 5, 1, "", "cos"], [13, 5, 1, "", "cosh"], [13, 5, 1, "", "divide"], [13, 5, 1, "", "equal"], [13, 5, 1, "", "exp"], [13, 5, 1, "", "expm1"], [13, 5, 1, "", "floor"], [13, 5, 1, "", "floor_divide"], [13, 5, 1, "", "greater"], [13, 5, 1, "", "greater_equal"], [13, 5, 1, "", "imag"], [13, 5, 1, "", "isfinite"], [13, 5, 1, "", "isinf"], [13, 5, 1, "", "isnan"], [13, 5, 1, "", "less"], [13, 5, 1, "", "less_equal"], [13, 5, 1, "", "log"], [13, 5, 1, "", "log10"], [13, 5, 1, "", "log1p"], [13, 5, 1, "", "log2"], [13, 5, 1, "", "logaddexp"], [13, 5, 1, "", "logical_and"], [13, 5, 1, "", "logical_not"], [13, 5, 1, "", "logical_or"], [13, 5, 1, "", "logical_xor"], [13, 5, 1, "", "multiply"], [13, 5, 1, "", "negative"], [13, 5, 1, "", "not_equal"], [13, 5, 1, "", "positive"], [13, 5, 1, "", "pow"], [13, 5, 1, "", "real"], [13, 5, 1, "", "remainder"], [13, 5, 1, "", "round"], [13, 5, 1, "", "sign"], [13, 5, 1, "", "sin"], [13, 5, 1, "", "sinh"], [13, 5, 1, "", "sqrt"], [13, 5, 1, "", "square"], [13, 5, 1, "", "subtract"], [13, 5, 1, "", "tan"], [13, 5, 1, "", "tanh"], [13, 5, 1, "", "trunc"]], "arkouda.array_api._indexing_functions": [[14, 5, 1, "", "take"]], "arkouda.array_api._manipulation_functions": [[15, 5, 1, "", "broadcast_arrays"], [15, 5, 1, "", "broadcast_to"], [15, 5, 1, "", "concat"], [15, 5, 1, "", "expand_dims"], [15, 5, 1, "", "flip"], [15, 5, 1, "", "permute_dims"], [15, 5, 1, "", "reshape"], [15, 5, 1, "", "roll"], [15, 5, 1, "", "squeeze"], [15, 5, 1, "", "stack"]], "arkouda.array_api._searching_functions": [[16, 5, 1, "", "argmax"], [16, 5, 1, "", "argmin"], [16, 5, 1, "", "nonzero"], [16, 5, 1, "", "where"]], "arkouda.array_api._set_functions": [[17, 2, 1, "", "UniqueAllResult"], [17, 2, 1, "", "UniqueCountsResult"], [17, 2, 1, "", "UniqueInverseResult"], [17, 5, 1, "", "unique_all"], [17, 5, 1, "", "unique_counts"], [17, 5, 1, "", "unique_inverse"], [17, 5, 1, "", "unique_values"]], "arkouda.array_api._set_functions.UniqueAllResult": [[17, 3, 1, "", "counts"], [17, 3, 1, "", "indices"], [17, 3, 1, "", "inverse_indices"], [17, 3, 1, "", "values"]], "arkouda.array_api._set_functions.UniqueCountsResult": [[17, 3, 1, "", "counts"], [17, 3, 1, "", "values"]], "arkouda.array_api._set_functions.UniqueInverseResult": [[17, 3, 1, "", "inverse_indices"], [17, 3, 1, "", "values"]], "arkouda.array_api._sorting_functions": [[18, 5, 1, "", "argsort"], [18, 5, 1, "", "sort"]], "arkouda.array_api._statistical_functions": [[19, 5, 1, "", "max"], [19, 5, 1, "", "mean"], [19, 5, 1, "", "min"], [19, 5, 1, "", "prod"], [19, 5, 1, "", "prod_sum_dtype"], [19, 5, 1, "", "std"], [19, 5, 1, "", "sum"], [19, 5, 1, "", "var"]], "arkouda.array_api._typing": [[20, 2, 1, "", "Array"], [20, 1, 1, "", "Device"], [20, 1, 1, "", "Dtype"], [20, 1, 1, "", "PyCapsule"], [20, 1, 1, "", "SupportsBufferProtocol"], [20, 2, 1, "", "SupportsDLPack"]], "arkouda.array_api._typing.Array": [[20, 6, 1, "", "T"], [20, 6, 1, "", "device"], [20, 6, 1, "", "dtype"], [20, 6, 1, "", "mT"], [20, 6, 1, "", "ndim"], [20, 6, 1, "", "shape"], [20, 6, 1, "", "size"], [20, 4, 1, "", "to_device"], [20, 4, 1, "", "to_ndarray"], [20, 4, 1, "", "tolist"]], "arkouda.array_api._utility_functions": [[21, 5, 1, "", "all"], [21, 5, 1, "", "any"]], "arkouda.array_api.linalg": [[23, 5, 1, "", "matmul"], [23, 5, 1, "", "matrix_transpose"], [23, 5, 1, "", "tensordot"], [23, 5, 1, "", "vecdot"]], "arkouda.array_view": [[24, 2, 1, "", "ArrayView"]], "arkouda.array_view.ArrayView": [[24, 3, 1, "", "base"], [24, 3, 1, "", "dtype"], [24, 3, 1, "", "itemsize"], [24, 3, 1, "", "ndim"], [24, 3, 1, "", "objType"], [24, 3, 1, "", "order"], [24, 3, 1, "", "shape"], [24, 3, 1, "", "size"], [24, 4, 1, "", "to_hdf"], [24, 4, 1, "", "to_list"], [24, 4, 1, "", "to_ndarray"], [24, 4, 1, "", "update_hdf"]], "arkouda.categorical": [[25, 2, 1, "", "Categorical"]], "arkouda.categorical.Categorical": [[25, 3, 1, "", "BinOps"], [25, 3, 1, "", "RegisterablePieces"], [25, 3, 1, "", "RequiredPieces"], [25, 4, 1, "", "argsort"], [25, 4, 1, "", "attach"], [25, 3, 1, "", "categories"], [25, 3, 1, "", "codes"], [25, 4, 1, "", "concatenate"], [25, 4, 1, "", "contains"], [25, 3, 1, "", "dtype"], [25, 4, 1, "", "endswith"], [25, 4, 1, "", "from_codes"], [25, 4, 1, "", "from_return_msg"], [25, 4, 1, "", "group"], [25, 4, 1, "", "hash"], [25, 4, 1, "", "in1d"], [25, 4, 1, "", "info"], [25, 4, 1, "", "is_registered"], [25, 4, 1, "", "isna"], [25, 6, 1, "", "nbytes"], [25, 3, 1, "", "ndim"], [25, 3, 1, "", "nlevels"], [25, 3, 1, "", "objType"], [25, 4, 1, "", "parse_hdf_categoricals"], [25, 3, 1, "id0", "permutation"], [25, 4, 1, "", "pretty_print_info"], [25, 4, 1, "", "register"], [25, 4, 1, "", "reset_categories"], [25, 4, 1, "", "save"], [25, 3, 1, "id1", "segments"], [25, 4, 1, "", "set_categories"], [25, 3, 1, "", "shape"], [25, 3, 1, "", "size"], [25, 4, 1, "", "sort"], [25, 4, 1, "", "standardize_categories"], [25, 4, 1, "", "startswith"], [25, 4, 1, "", "to_hdf"], [25, 4, 1, "", "to_list"], [25, 4, 1, "", "to_ndarray"], [25, 4, 1, "", "to_parquet"], [25, 4, 1, "", "to_strings"], [25, 4, 1, "", "transfer"], [25, 4, 1, "", "unique"], [25, 4, 1, "", "unregister"], [25, 4, 1, "", "unregister_categorical_by_name"], [25, 4, 1, "", "update_hdf"]], "arkouda.client": [[26, 5, 1, "", "connect"], [26, 5, 1, "", "disconnect"], [26, 5, 1, "", "generate_history"], [26, 5, 1, "", "get_config"], [26, 5, 1, "", "get_mem_avail"], [26, 5, 1, "", "get_mem_status"], [26, 5, 1, "", "get_mem_used"], [26, 5, 1, "", "get_server_commands"], [26, 5, 1, "", "print_server_commands"], [26, 5, 1, "", "ruok"], [26, 5, 1, "", "shutdown"]], "arkouda.client_dtypes": [[27, 2, 1, "", "BitVector"], [27, 5, 1, "", "BitVectorizer"], [27, 2, 1, "", "Fields"], [27, 2, 1, "", "IPv4"], [27, 5, 1, "", "ip_address"], [27, 5, 1, "", "is_ipv4"], [27, 5, 1, "", "is_ipv6"]], "arkouda.client_dtypes.BitVector": [[27, 3, 1, "", "conserves"], [27, 4, 1, "", "format"], [27, 4, 1, "", "from_return_msg"], [27, 4, 1, "", "opeq"], [27, 4, 1, "", "register"], [27, 3, 1, "", "special_objType"], [27, 4, 1, "", "to_list"], [27, 4, 1, "", "to_ndarray"]], "arkouda.client_dtypes.Fields": [[27, 4, 1, "", "format"], [27, 4, 1, "", "opeq"]], "arkouda.client_dtypes.IPv4": [[27, 4, 1, "", "export_uint"], [27, 4, 1, "", "format"], [27, 4, 1, "", "normalize"], [27, 4, 1, "", "opeq"], [27, 4, 1, "", "register"], [27, 3, 1, "", "special_objType"], [27, 4, 1, "", "to_hdf"], [27, 4, 1, "", "to_list"], [27, 4, 1, "", "to_ndarray"], [27, 4, 1, "", "update_hdf"]], "arkouda.dataframe": [[28, 2, 1, "", "DataFrame"], [28, 2, 1, "", "DiffAggregate"], [28, 5, 1, "", "intersect"], [28, 5, 1, "", "intx"], [28, 5, 1, "", "invert_permutation"], [28, 5, 1, "", "merge"]], "arkouda.dataframe.DataFrame": [[28, 4, 1, "", "GroupBy"], [28, 4, 1, "", "append"], [28, 4, 1, "", "apply_permutation"], [28, 4, 1, "", "argsort"], [28, 4, 1, "", "attach"], [28, 4, 1, "", "coargsort"], [28, 6, 1, "", "columns"], [28, 4, 1, "", "concat"], [28, 4, 1, "", "copy"], [28, 4, 1, "", "corr"], [28, 4, 1, "", "drop"], [28, 4, 1, "", "drop_duplicates"], [28, 6, 1, "", "dtypes"], [28, 6, 1, "", "empty"], [28, 4, 1, "", "filter_by_range"], [28, 4, 1, "", "from_pandas"], [28, 4, 1, "", "from_return_msg"], [28, 4, 1, "", "groupby"], [28, 4, 1, "", "head"], [28, 6, 1, "", "index"], [28, 6, 1, "", "info"], [28, 4, 1, "", "is_registered"], [28, 4, 1, "", "isin"], [28, 4, 1, "", "load"], [28, 4, 1, "", "memory_usage"], [28, 4, 1, "", "memory_usage_info"], [28, 4, 1, "", "merge"], [28, 3, 1, "", "objType"], [28, 4, 1, "", "read_csv"], [28, 4, 1, "", "register"], [28, 4, 1, "", "rename"], [28, 4, 1, "", "reset_index"], [28, 4, 1, "", "sample"], [28, 4, 1, "", "save"], [28, 6, 1, "", "shape"], [28, 6, 1, "", "size"], [28, 4, 1, "", "sort_index"], [28, 4, 1, "", "sort_values"], [28, 4, 1, "", "tail"], [28, 4, 1, "", "to_csv"], [28, 4, 1, "", "to_hdf"], [28, 4, 1, "", "to_pandas"], [28, 4, 1, "", "to_parquet"], [28, 4, 1, "", "transfer"], [28, 4, 1, "", "unregister"], [28, 4, 1, "", "unregister_dataframe_by_name"], [28, 4, 1, "", "update_hdf"], [28, 4, 1, "", "update_nrows"]], "arkouda.dataframe.DiffAggregate": [[28, 3, 1, "", "gb"], [28, 3, 1, "", "values"]], "arkouda.dtypes": [[29, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [29, 1, 1, "", "DTypeObjects"], [29, 1, 1, "", "DTypes"], [29, 1, 1, "", "ScalarDTypes"], [29, 1, 1, "", "all_scalars"], [29, 1, 1, "", "bigint"], [29, 1, 1, "", "bitType"], [29, 1, 1, "", "bool"], [29, 1, 1, "", "bool_scalars"], [29, 5, 1, "", "check_np_dtype"], [29, 1, 1, "", "complex128"], [29, 1, 1, "", "complex64"], [29, 5, 1, "", "dtype"], [29, 1, 1, "", "float32"], [29, 1, 1, "", "float64"], [29, 1, 1, "", "float_scalars"], [29, 5, 1, "", "get_byteorder"], [29, 5, 1, "", "get_server_byteorder"], [29, 1, 1, "", "int16"], [29, 1, 1, "", "int32"], [29, 1, 1, "", "int64"], [29, 1, 1, "", "int8"], [29, 1, 1, "", "intTypes"], [29, 1, 1, "", "int_scalars"], [29, 5, 1, "", "isSupportedNumber"], [29, 1, 1, "", "numeric_scalars"], [29, 1, 1, "", "numpy_scalars"], [29, 5, 1, "", "resolve_scalar_dtype"], [29, 1, 1, "", "str_"], [29, 1, 1, "", "str_scalars"], [29, 5, 1, "", "translate_np_dtype"], [29, 1, 1, "", "uint16"], [29, 1, 1, "", "uint32"], [29, 1, 1, "", "uint64"], [29, 1, 1, "", "uint8"]], "arkouda.groupbyclass": [[30, 1, 1, "", "GROUPBY_REDUCTION_TYPES"], [30, 2, 1, "", "GroupBy"], [30, 5, 1, "", "broadcast"], [30, 5, 1, "", "unique"]], "arkouda.groupbyclass.GroupBy": [[30, 4, 1, "", "AND"], [30, 4, 1, "", "OR"], [30, 3, 1, "", "Reductions"], [30, 4, 1, "", "XOR"], [30, 4, 1, "", "aggregate"], [30, 4, 1, "", "all"], [30, 4, 1, "", "any"], [30, 4, 1, "", "argmax"], [30, 4, 1, "", "argmin"], [30, 4, 1, "", "attach"], [30, 4, 1, "", "broadcast"], [30, 4, 1, "", "build_from_components"], [30, 4, 1, "", "count"], [30, 3, 1, "", "dropna"], [30, 4, 1, "", "first"], [30, 4, 1, "", "from_return_msg"], [30, 4, 1, "", "is_registered"], [30, 3, 1, "", "logger"], [30, 4, 1, "", "max"], [30, 4, 1, "", "mean"], [30, 4, 1, "", "median"], [30, 4, 1, "", "min"], [30, 4, 1, "", "mode"], [30, 4, 1, "", "most_common"], [30, 3, 1, "", "ngroups"], [30, 3, 1, "", "nkeys"], [30, 4, 1, "", "nunique"], [30, 3, 1, "", "objType"], [30, 3, 1, "", "permutation"], [30, 4, 1, "", "prod"], [30, 4, 1, "", "register"], [30, 3, 1, "", "segments"], [30, 4, 1, "id0", "size"], [30, 4, 1, "", "std"], [30, 4, 1, "", "sum"], [30, 4, 1, "", "to_hdf"], [30, 4, 1, "", "unique"], [30, 3, 1, "", "unique_keys"], [30, 4, 1, "", "unregister"], [30, 4, 1, "", "unregister_groupby_by_name"], [30, 4, 1, "", "update_hdf"], [30, 4, 1, "", "var"]], "arkouda.history": [[31, 2, 1, "", "HistoryRetriever"], [31, 2, 1, "", "NotebookHistoryRetriever"], [31, 2, 1, "", "ShellHistoryRetriever"]], "arkouda.history.HistoryRetriever": [[31, 4, 1, "", "retrieve"]], "arkouda.history.NotebookHistoryRetriever": [[31, 4, 1, "", "retrieve"]], "arkouda.history.ShellHistoryRetriever": [[31, 4, 1, "", "retrieve"]], "arkouda.index": [[33, 2, 1, "", "Index"], [33, 2, 1, "", "MultiIndex"]], "arkouda.index.Index": [[33, 4, 1, "", "argsort"], [33, 4, 1, "", "concat"], [33, 4, 1, "", "factory"], [33, 4, 1, "", "from_return_msg"], [33, 6, 1, "", "index"], [33, 4, 1, "", "is_registered"], [33, 6, 1, "", "is_unique"], [33, 4, 1, "", "lookup"], [33, 4, 1, "", "memory_usage"], [33, 3, 1, "", "objType"], [33, 4, 1, "", "register"], [33, 4, 1, "", "save"], [33, 4, 1, "", "set_dtype"], [33, 6, 1, "", "shape"], [33, 4, 1, "", "to_csv"], [33, 4, 1, "", "to_dict"], [33, 4, 1, "", "to_hdf"], [33, 4, 1, "", "to_list"], [33, 4, 1, "", "to_ndarray"], [33, 4, 1, "", "to_pandas"], [33, 4, 1, "", "to_parquet"], [33, 4, 1, "", "unregister"], [33, 4, 1, "", "update_hdf"]], "arkouda.index.MultiIndex": [[33, 4, 1, "", "argsort"], [33, 4, 1, "", "concat"], [33, 6, 1, "", "index"], [33, 4, 1, "", "is_registered"], [33, 4, 1, "", "lookup"], [33, 4, 1, "", "memory_usage"], [33, 3, 1, "", "objType"], [33, 4, 1, "", "register"], [33, 4, 1, "", "set_dtype"], [33, 4, 1, "", "to_dict"], [33, 4, 1, "", "to_hdf"], [33, 4, 1, "", "to_list"], [33, 4, 1, "", "to_ndarray"], [33, 4, 1, "", "to_pandas"], [33, 4, 1, "", "unregister"], [33, 4, 1, "", "update_hdf"]], "arkouda.infoclass": [[34, 1, 1, "", "AllSymbols"], [34, 1, 1, "", "RegisteredSymbols"], [34, 5, 1, "", "information"], [34, 5, 1, "", "list_registry"], [34, 5, 1, "", "list_symbol_table"], [34, 5, 1, "", "pretty_print_information"]], "arkouda.io": [[35, 5, 1, "", "export"], [35, 5, 1, "", "get_columns"], [35, 5, 1, "", "get_datasets"], [35, 5, 1, "", "get_filetype"], [35, 5, 1, "", "get_null_indices"], [35, 5, 1, "", "import_data"], [35, 5, 1, "", "load"], [35, 5, 1, "", "load_all"], [35, 5, 1, "", "ls"], [35, 5, 1, "", "ls_csv"], [35, 5, 1, "", "read"], [35, 5, 1, "", "read_csv"], [35, 5, 1, "", "read_hdf"], [35, 5, 1, "", "read_parquet"], [35, 5, 1, "", "read_tagged_data"], [35, 5, 1, "", "receive"], [35, 5, 1, "", "receive_dataframe"], [35, 5, 1, "", "restore"], [35, 5, 1, "", "save_all"], [35, 5, 1, "", "snapshot"], [35, 5, 1, "", "to_csv"], [35, 5, 1, "", "to_hdf"], [35, 5, 1, "", "to_parquet"], [35, 5, 1, "", "update_hdf"]], "arkouda.io_util": [[36, 5, 1, "", "delimited_file_to_dict"], [36, 5, 1, "", "dict_to_delimited_file"], [36, 5, 1, "", "get_directory"], [36, 5, 1, "", "write_line_to_file"]], "arkouda.join": [[37, 5, 1, "", "compute_join_size"], [37, 5, 1, "", "gen_ranges"], [37, 5, 1, "", "join_on_eq_with_dt"]], "arkouda.logger": [[38, 2, 1, "", "LogLevel"], [38, 5, 1, "", "disableVerbose"], [38, 5, 1, "", "enableVerbose"], [38, 5, 1, "", "write_log"]], "arkouda.logger.LogLevel": [[38, 3, 1, "", "CRITICAL"], [38, 3, 1, "", "DEBUG"], [38, 3, 1, "", "ERROR"], [38, 3, 1, "", "INFO"], [38, 3, 1, "", "WARN"]], "arkouda.match": [[39, 2, 1, "", "Match"]], "arkouda.match.Match": [[100, 4, 1, "", "end"], [100, 4, 1, "", "find_matches"], [100, 4, 1, "", "group"], [100, 4, 1, "", "match_type"], [100, 4, 1, "", "matched"], [100, 4, 1, "", "start"]], "arkouda.matcher": [[40, 2, 1, "", "Matcher"]], "arkouda.matcher.Matcher": [[40, 3, 1, "", "LocationsInfo"], [40, 4, 1, "", "find_locations"], [40, 4, 1, "", "findall"], [40, 4, 1, "", "get_match"], [40, 4, 1, "", "split"], [40, 4, 1, "", "sub"]], "arkouda.numeric": [[41, 2, 1, "", "ErrorMode"], [41, 5, 1, "", "abs"], [41, 5, 1, "", "arccos"], [41, 5, 1, "", "arccosh"], [41, 5, 1, "", "arcsin"], [41, 5, 1, "", "arcsinh"], [41, 5, 1, "", "arctan"], [41, 5, 1, "", "arctan2"], [41, 5, 1, "", "arctanh"], [41, 5, 1, "", "cast"], [41, 5, 1, "", "ceil"], [41, 5, 1, "", "cos"], [41, 5, 1, "", "cosh"], [41, 5, 1, "", "cumprod"], [41, 5, 1, "", "cumsum"], [41, 5, 1, "", "deg2rad"], [41, 5, 1, "", "exp"], [41, 5, 1, "", "expm1"], [41, 5, 1, "", "floor"], [41, 5, 1, "", "hash"], [41, 5, 1, "", "histogram"], [41, 5, 1, "", "histogram2d"], [41, 5, 1, "", "histogramdd"], [41, 5, 1, "", "isfinite"], [41, 5, 1, "", "isinf"], [41, 5, 1, "", "isnan"], [41, 5, 1, "", "log"], [41, 5, 1, "", "log10"], [41, 5, 1, "", "log1p"], [41, 5, 1, "", "log2"], [41, 5, 1, "", "rad2deg"], [41, 5, 1, "", "round"], [41, 5, 1, "", "sign"], [41, 5, 1, "", "sin"], [41, 5, 1, "", "sinh"], [41, 5, 1, "", "square"], [41, 5, 1, "", "tan"], [41, 5, 1, "", "tanh"], [41, 5, 1, "", "trunc"], [41, 5, 1, "", "value_counts"], [41, 5, 1, "", "where"]], "arkouda.numeric.ErrorMode": [[41, 3, 1, "", "ignore"], [41, 3, 1, "", "return_validity"], [41, 3, 1, "", "strict"]], "arkouda.pdarray": [[32, 3, 1, "id855", "BinOps"], [32, 3, 1, "id856", "OpEqOps"], [93, 4, 1, "", "all"], [93, 4, 1, "", "any"], [93, 4, 1, "", "argmax"], [93, 4, 1, "", "argmaxk"], [93, 4, 1, "", "argmin"], [93, 4, 1, "", "argmink"], [32, 4, 1, "id864", "astype"], [32, 4, 1, "id865", "attach"], [32, 4, 1, "id866", "bigint_to_uint_arrays"], [32, 4, 1, "id867", "clz"], [32, 4, 1, "id868", "corr"], [32, 4, 1, "id869", "cov"], [32, 4, 1, "id870", "ctz"], [95, 3, 1, "", "dtype"], [32, 4, 1, "id871", "fill"], [32, 4, 1, "id872", "format_other"], [32, 4, 1, "id873", "info"], [32, 4, 1, "id874", "is_registered"], [93, 4, 1, "", "is_sorted"], [95, 3, 1, "", "itemsize"], [93, 4, 1, "", "max"], [32, 6, 1, "id853", "max_bits"], [93, 4, 1, "", "maxk"], [93, 4, 1, "", "mean"], [93, 4, 1, "", "min"], [93, 4, 1, "", "mink"], [95, 3, 1, "", "name"], [32, 6, 1, "id854", "nbytes"], [95, 3, 1, "", "ndim"], [32, 3, 1, "id857", "objType"], [32, 4, 1, "id881", "opeq"], [32, 4, 1, "id882", "parity"], [32, 4, 1, "id883", "popcount"], [32, 4, 1, "id884", "pretty_print_info"], [93, 4, 1, "", "prod"], [32, 4, 1, "id886", "register"], [32, 4, 1, "id887", "reshape"], [32, 4, 1, "id888", "rotl"], [32, 4, 1, "id889", "rotr"], [32, 4, 1, "id890", "save"], [95, 3, 1, "", "shape"], [95, 3, 1, "", "size"], [32, 4, 1, "id891", "slice_bits"], [93, 4, 1, "", "std"], [93, 4, 1, "", "sum"], [32, 4, 1, "id894", "to_csv"], [32, 4, 1, "id897", "to_cuda"], [32, 4, 1, "id898", "to_hdf"], [32, 4, 1, "id899", "to_list"], [95, 5, 1, "", "to_ndarray"], [32, 4, 1, "id901", "to_parquet"], [32, 4, 1, "id902", "transfer"], [32, 4, 1, "id903", "unregister"], [32, 4, 1, "id904", "update_hdf"], [32, 4, 1, "id905", "value_counts"], [93, 4, 1, "", "var"]], "arkouda.pdarrayclass": [[42, 7, 1, "", "RegistrationError"], [42, 5, 1, "", "all"], [42, 5, 1, "", "any"], [42, 5, 1, "", "argmax"], [42, 5, 1, "", "argmaxk"], [42, 5, 1, "", "argmin"], [42, 5, 1, "", "argmink"], [42, 5, 1, "", "attach_pdarray"], [42, 5, 1, "", "broadcast_to_shape"], [42, 5, 1, "", "clear"], [42, 5, 1, "", "clz"], [42, 5, 1, "", "corr"], [42, 5, 1, "", "cov"], [42, 5, 1, "", "ctz"], [42, 5, 1, "", "divmod"], [42, 5, 1, "", "dot"], [42, 5, 1, "", "fmod"], [42, 5, 1, "", "is_sorted"], [42, 5, 1, "", "max"], [42, 5, 1, "", "maxk"], [42, 5, 1, "", "mean"], [42, 5, 1, "", "min"], [42, 5, 1, "", "mink"], [42, 5, 1, "", "mod"], [42, 5, 1, "", "parity"], [42, 2, 1, "", "pdarray"], [42, 5, 1, "", "popcount"], [42, 5, 1, "", "power"], [42, 5, 1, "", "prod"], [42, 5, 1, "", "rotl"], [42, 5, 1, "", "rotr"], [42, 5, 1, "", "sqrt"], [42, 5, 1, "", "std"], [42, 5, 1, "", "sum"], [42, 5, 1, "", "unregister_pdarray_by_name"], [42, 5, 1, "", "var"]], "arkouda.pdarrayclass.pdarray": [[42, 3, 1, "", "BinOps"], [42, 3, 1, "", "OpEqOps"], [42, 4, 1, "", "all"], [42, 4, 1, "", "any"], [42, 4, 1, "", "argmax"], [42, 4, 1, "", "argmaxk"], [42, 4, 1, "", "argmin"], [42, 4, 1, "", "argmink"], [42, 4, 1, "", "astype"], [42, 4, 1, "", "attach"], [42, 4, 1, "", "bigint_to_uint_arrays"], [42, 4, 1, "", "clz"], [42, 4, 1, "", "corr"], [42, 4, 1, "", "cov"], [42, 4, 1, "", "ctz"], [42, 3, 1, "", "dtype"], [42, 4, 1, "", "fill"], [42, 4, 1, "", "format_other"], [42, 4, 1, "", "info"], [42, 4, 1, "", "is_registered"], [42, 4, 1, "", "is_sorted"], [42, 3, 1, "", "itemsize"], [42, 4, 1, "", "max"], [42, 6, 1, "", "max_bits"], [42, 4, 1, "", "maxk"], [42, 4, 1, "", "mean"], [42, 4, 1, "", "min"], [42, 4, 1, "", "mink"], [42, 3, 1, "", "name"], [42, 6, 1, "", "nbytes"], [42, 3, 1, "", "ndim"], [42, 3, 1, "", "objType"], [42, 4, 1, "", "opeq"], [42, 4, 1, "", "parity"], [42, 4, 1, "", "popcount"], [42, 4, 1, "", "pretty_print_info"], [42, 4, 1, "", "prod"], [42, 4, 1, "", "register"], [42, 4, 1, "", "reshape"], [42, 4, 1, "", "rotl"], [42, 4, 1, "", "rotr"], [42, 4, 1, "", "save"], [42, 3, 1, "", "shape"], [42, 3, 1, "", "size"], [42, 4, 1, "", "slice_bits"], [42, 4, 1, "", "std"], [42, 4, 1, "", "sum"], [42, 4, 1, "", "to_csv"], [42, 4, 1, "", "to_cuda"], [42, 4, 1, "", "to_hdf"], [42, 4, 1, "", "to_list"], [42, 4, 1, "", "to_ndarray"], [42, 4, 1, "", "to_parquet"], [42, 4, 1, "", "transfer"], [42, 4, 1, "", "unregister"], [42, 4, 1, "", "update_hdf"], [42, 4, 1, "", "value_counts"], [42, 4, 1, "", "var"]], "arkouda.pdarraycreation": [[43, 5, 1, "", "arange"], [43, 5, 1, "", "array"], [43, 5, 1, "", "bigint_from_uint_arrays"], [43, 5, 1, "", "from_series"], [43, 5, 1, "", "full"], [43, 5, 1, "", "full_like"], [43, 5, 1, "", "linspace"], [43, 5, 1, "", "ones"], [43, 5, 1, "", "ones_like"], [43, 5, 1, "", "randint"], [43, 5, 1, "", "random_strings_lognormal"], [43, 5, 1, "", "random_strings_uniform"], [43, 5, 1, "", "standard_normal"], [43, 5, 1, "", "uniform"], [43, 5, 1, "", "zeros"], [43, 5, 1, "", "zeros_like"]], "arkouda.pdarraysetops": [[44, 5, 1, "", "concatenate"], [44, 5, 1, "", "in1d"], [44, 5, 1, "", "indexof1d"], [44, 5, 1, "", "intersect1d"], [44, 5, 1, "", "setdiff1d"], [44, 5, 1, "", "setxor1d"], [44, 5, 1, "", "union1d"]], "arkouda.plotting": [[45, 5, 1, "", "hist_all"], [45, 5, 1, "", "plot_dist"]], "arkouda.random": [[48, 2, 1, "", "Generator"], [46, 0, 0, "-", "_generator"], [47, 0, 0, "-", "_legacy"], [48, 5, 1, "", "randint"], [48, 5, 1, "", "standard_normal"], [48, 5, 1, "", "uniform"]], "arkouda.random.Generator": [[48, 4, 1, "", "integers"], [48, 4, 1, "", "random"], [48, 4, 1, "", "standard_normal"], [48, 4, 1, "", "uniform"]], "arkouda.random._generator": [[46, 2, 1, "", "Generator"], [46, 5, 1, "", "default_rng"]], "arkouda.random._generator.Generator": [[46, 4, 1, "", "integers"], [46, 4, 1, "", "random"], [46, 4, 1, "", "standard_normal"], [46, 4, 1, "", "uniform"]], "arkouda.random._legacy": [[47, 5, 1, "", "randint"], [47, 5, 1, "", "standard_normal"], [47, 5, 1, "", "uniform"]], "arkouda.row": [[49, 2, 1, "", "Row"]], "arkouda.security": [[50, 5, 1, "", "generate_token"], [50, 5, 1, "", "generate_username_token_json"], [50, 5, 1, "", "get_arkouda_client_directory"], [50, 5, 1, "", "get_home_directory"], [50, 5, 1, "", "get_username"], [50, 1, 1, "", "username_tokenizer"]], "arkouda.segarray": [[51, 1, 1, "", "LEN_SUFFIX"], [51, 1, 1, "", "SEG_SUFFIX"], [51, 2, 1, "", "SegArray"], [51, 1, 1, "", "VAL_SUFFIX"], [51, 5, 1, "", "segarray"]], "arkouda.segarray.SegArray": [[51, 4, 1, "", "AND"], [51, 4, 1, "", "OR"], [51, 4, 1, "", "XOR"], [51, 4, 1, "", "aggregate"], [51, 4, 1, "", "all"], [51, 4, 1, "", "any"], [51, 4, 1, "", "append"], [51, 4, 1, "", "append_single"], [51, 4, 1, "", "argmax"], [51, 4, 1, "", "argmin"], [51, 4, 1, "", "attach"], [51, 4, 1, "", "concat"], [51, 4, 1, "", "copy"], [51, 4, 1, "", "filter"], [51, 4, 1, "", "from_multi_array"], [51, 4, 1, "", "from_parts"], [51, 4, 1, "", "from_return_msg"], [51, 4, 1, "", "get_jth"], [51, 4, 1, "", "get_length_n"], [51, 4, 1, "", "get_ngrams"], [51, 4, 1, "", "get_prefixes"], [51, 4, 1, "", "get_suffixes"], [51, 6, 1, "", "grouping"], [51, 4, 1, "", "hash"], [51, 4, 1, "", "intersect"], [51, 4, 1, "", "is_registered"], [51, 4, 1, "", "load"], [51, 4, 1, "", "max"], [51, 4, 1, "", "mean"], [51, 4, 1, "", "min"], [51, 6, 1, "", "non_empty"], [51, 4, 1, "", "nunique"], [51, 3, 1, "", "objType"], [51, 4, 1, "", "prepend_single"], [51, 4, 1, "", "prod"], [51, 4, 1, "", "read_hdf"], [51, 4, 1, "", "register"], [51, 4, 1, "", "remove_repeats"], [51, 4, 1, "", "save"], [51, 4, 1, "", "set_jth"], [51, 4, 1, "", "setdiff"], [51, 4, 1, "", "setxor"], [51, 4, 1, "", "sum"], [51, 4, 1, "", "to_hdf"], [51, 4, 1, "", "to_list"], [51, 4, 1, "", "to_ndarray"], [51, 4, 1, "", "to_parquet"], [51, 4, 1, "", "transfer"], [51, 4, 1, "", "union"], [51, 4, 1, "", "unique"], [51, 4, 1, "", "unregister"], [51, 4, 1, "", "unregister_segarray_by_name"], [51, 4, 1, "", "update_hdf"]], "arkouda.series": [[52, 2, 1, "", "Series"]], "arkouda.series.Series": [[52, 4, 1, "", "add"], [52, 6, 1, "", "at"], [52, 4, 1, "", "attach"], [52, 4, 1, "", "concat"], [52, 4, 1, "", "diff"], [52, 3, 1, "", "dt"], [52, 4, 1, "", "from_return_msg"], [52, 4, 1, "", "has_repeat_labels"], [52, 4, 1, "", "head"], [52, 6, 1, "", "iat"], [52, 6, 1, "", "iloc"], [52, 4, 1, "", "is_registered"], [52, 4, 1, "", "isin"], [52, 6, 1, "", "loc"], [52, 4, 1, "", "locate"], [52, 4, 1, "", "map"], [52, 4, 1, "", "memory_usage"], [52, 3, 1, "", "objType"], [52, 4, 1, "", "pdconcat"], [52, 4, 1, "", "register"], [52, 6, 1, "", "shape"], [52, 4, 1, "", "sort_index"], [52, 4, 1, "", "sort_values"], [52, 3, 1, "", "str_acc"], [52, 4, 1, "", "tail"], [52, 4, 1, "", "to_dataframe"], [52, 4, 1, "", "to_list"], [52, 4, 1, "", "to_pandas"], [52, 4, 1, "", "topn"], [52, 4, 1, "", "unregister"], [52, 4, 1, "", "validate_key"], [52, 4, 1, "", "validate_val"], [52, 4, 1, "", "value_counts"]], "arkouda.sorting": [[53, 5, 1, "", "argsort"], [53, 5, 1, "", "coargsort"], [53, 5, 1, "", "sort"]], "arkouda.strings": [[54, 2, 1, "", "Strings"]], "arkouda.strings.Strings": [[54, 3, 1, "", "BinOps"], [54, 4, 1, "", "astype"], [54, 4, 1, "", "attach"], [54, 4, 1, "", "cached_regex_patterns"], [54, 4, 1, "", "capitalize"], [54, 4, 1, "", "contains"], [54, 4, 1, "", "decode"], [54, 3, 1, "", "dtype"], [54, 4, 1, "", "encode"], [54, 4, 1, "", "endswith"], [54, 3, 1, "", "entry"], [54, 4, 1, "", "find_locations"], [54, 4, 1, "", "findall"], [54, 4, 1, "", "flatten"], [54, 4, 1, "", "from_parts"], [54, 4, 1, "", "from_return_msg"], [54, 4, 1, "", "fullmatch"], [54, 4, 1, "", "get_bytes"], [54, 4, 1, "", "get_lengths"], [54, 4, 1, "", "get_offsets"], [54, 4, 1, "", "get_prefixes"], [54, 4, 1, "", "get_suffixes"], [54, 4, 1, "", "group"], [54, 4, 1, "", "hash"], [54, 4, 1, "", "info"], [54, 4, 1, "", "is_registered"], [54, 4, 1, "", "isalnum"], [54, 4, 1, "", "isalpha"], [54, 4, 1, "", "isdigit"], [54, 4, 1, "", "isempty"], [54, 4, 1, "", "islower"], [54, 4, 1, "", "isspace"], [54, 4, 1, "", "istitle"], [54, 4, 1, "", "isupper"], [54, 3, 1, "", "logger"], [54, 4, 1, "", "lower"], [54, 4, 1, "", "lstick"], [54, 4, 1, "", "match"], [54, 3, 1, "", "nbytes"], [54, 3, 1, "", "ndim"], [54, 3, 1, "", "objType"], [54, 4, 1, "", "peel"], [54, 4, 1, "", "pretty_print_info"], [54, 4, 1, "", "purge_cached_regex_patterns"], [54, 4, 1, "", "register"], [54, 4, 1, "", "rpeel"], [54, 4, 1, "", "save"], [54, 4, 1, "", "search"], [54, 3, 1, "", "shape"], [54, 3, 1, "", "size"], [54, 4, 1, "", "split"], [54, 4, 1, "", "startswith"], [54, 4, 1, "", "stick"], [54, 4, 1, "", "strip"], [54, 4, 1, "", "sub"], [54, 4, 1, "", "subn"], [54, 4, 1, "", "title"], [54, 4, 1, "", "to_csv"], [54, 4, 1, "", "to_hdf"], [54, 4, 1, "", "to_list"], [54, 4, 1, "", "to_ndarray"], [54, 4, 1, "", "to_parquet"], [54, 4, 1, "", "transfer"], [54, 4, 1, "", "unregister"], [54, 4, 1, "", "unregister_strings_by_name"], [54, 4, 1, "", "update_hdf"], [54, 4, 1, "", "upper"]], "arkouda.timeclass": [[55, 2, 1, "", "Datetime"], [55, 2, 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, 4, 1, "", "is_registered"], [55, 4, 1, "", "isocalendar"], [55, 6, 1, "", "microsecond"], [55, 6, 1, "", "millisecond"], [55, 6, 1, "", "minute"], [55, 6, 1, "", "month"], [55, 6, 1, "", "nanosecond"], [55, 4, 1, "", "register"], [55, 6, 1, "", "second"], [55, 3, 1, "", "special_objType"], [55, 4, 1, "", "sum"], [55, 3, 1, "", "supported_opeq"], [55, 3, 1, "", "supported_with_datetime"], [55, 3, 1, "", "supported_with_pdarray"], [55, 3, 1, "", "supported_with_r_datetime"], [55, 3, 1, "", "supported_with_r_pdarray"], [55, 3, 1, "", "supported_with_r_timedelta"], [55, 3, 1, "", "supported_with_timedelta"], [55, 4, 1, "", "to_pandas"], [55, 4, 1, "", "unregister"], [55, 6, 1, "", "week"], [55, 6, 1, "", "weekday"], [55, 6, 1, "", "weekofyear"], [55, 6, 1, "", "year"]], "arkouda.timeclass.Timedelta": [[55, 4, 1, "", "abs"], [55, 6, 1, "", "components"], [55, 6, 1, "", "days"], [55, 4, 1, "", "is_registered"], [55, 6, 1, "", "microseconds"], [55, 6, 1, "", "nanoseconds"], [55, 4, 1, "", "register"], [55, 6, 1, "", "seconds"], [55, 3, 1, "", "special_objType"], [55, 4, 1, "", "std"], [55, 4, 1, "", "sum"], [55, 3, 1, "", "supported_opeq"], [55, 3, 1, "", "supported_with_datetime"], [55, 3, 1, "", "supported_with_pdarray"], [55, 3, 1, "", "supported_with_r_datetime"], [55, 3, 1, "", "supported_with_r_pdarray"], [55, 3, 1, "", "supported_with_r_timedelta"], [55, 3, 1, "", "supported_with_timedelta"], [55, 4, 1, "", "to_pandas"], [55, 4, 1, "", "total_seconds"], [55, 4, 1, "", "unregister"]], "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_registered"], [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"]]}, "objtypes": {"0": "py:module", "1": "py:data", "2": "py:class", "3": "py:attribute", "4": "py:method", "5": "py:function", "6": "py:property", "7": "py:exception"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "data", "Python data"], "2": ["py", "class", "Python class"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "method", "Python method"], "5": ["py", "function", "Python function"], "6": ["py", "property", "Python property"], "7": ["py", "exception", "Python exception"]}, "titleterms": {"contribut": 0, "ad": [0, 1, 58, 78], "issu": 0, "bug": [0, 64], "report": 0, "featur": [0, 58, 85, 91, 97], "request": 0, "develop": [0, 60, 65, 79], "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, 88, 91, 96, 97, 99, 100], "code": 0, "convent": 0, "lint": 0, "python3": 0, "chapel": [0, 1, 60, 74, 76, 77], "test": [0, 1, 59, 82], "run": [0, 1, 59, 60, 78], "python": [0, 1, 58, 66, 73, 76, 77, 79, 99], "write": [0, 68, 70, 71], "pull": 0, "review": 0, "core": 0, "team": 0, "onli": 0, "merg": 0, "releas": [0, 62], "process": [0, 62, 78], "environ": [1, 60, 63, 75, 76, 77], "variabl": [1, 63, 75], "compil": [1, 63], "makefil": 1, "flag": 1, "depend": [1, 73, 75, 79], "path": 1, "modul": [1, 2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 78], "from": [1, 77, 84], "outsid": 1, "src": 1, "directori": 1, "client": [1, 26, 58, 73, 84, 99], "accessor": 2, "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, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "class": [2, 3, 4, 8, 11, 17, 20, 24, 25, 27, 28, 30, 31, 32, 33, 38, 39, 40, 41, 42, 46, 48, 49, 51, 52, 54, 55, 95], "function": [2, 3, 4, 5, 6, 7, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 23, 26, 27, 28, 29, 30, 32, 34, 35, 36, 37, 38, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 55, 56, 58, 71, 87], "akscipi": [3, 4, 5, 6], "_stats_pi": 3, "subpackag": [4, 32], "packag": [4, 6, 22, 32, 48, 75], "special": [5, 6], "_math": 5, "align": 7, "array_api": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "_array_object": 8, "_constant": 9, "_creation_funct": 10, "_data_type_funct": 11, "_dtype": 12, "_elementwise_funct": 13, "_indexing_funct": 14, "_manipulation_funct": 15, "_searching_funct": 16, "_set_funct": 17, "_sorting_funct": 18, "_statistical_funct": 19, "_type": 20, "attribut": [20, 29, 30, 32, 34, 50, 51, 68], "_utility_funct": 21, "submodul": [22, 32], "linalg": 23, "array_view": 24, "categor": [25, 68, 70, 89], "client_dtyp": 27, "datafram": [28, 66, 67, 68, 70, 91], "dtype": [29, 85], "groupbyclass": 30, "histori": 31, "input": [32, 52], "return": [32, 44, 98], "type": [32, 44, 67, 68, 70, 91, 95, 98], "index": [33, 67, 68, 70, 85, 88, 91, 94], "infoclass": 34, "io": 35, "io_util": 36, "join": [37, 100], "logger": 38, "match": [39, 100], "matcher": 40, "numer": [41, 87], "pdarrayclass": 42, "pdarraycr": 43, "pdarraysetop": 44, "plot": 45, "random": [46, 47, 48, 90], "_gener": 46, "_legaci": 47, "row": 49, "secur": 50, "segarrai": [51, 68, 70, 96], "seri": [52, 97], "sort": [53, 86, 91, 97], "string": [54, 67, 68, 70, 100], "timeclass": 55, "util": 56, "api": [57, 67, 68, 69, 70, 71, 74], "refer": [57, 67, 68, 69, 70, 74], "your": 58, "first": 58, "interfac": 58, "exampl": [58, 66, 67], "server": [58, 73, 75, 78, 84, 99], "pytest": 59, "benchmark": 59, "The": [59, 95], "full": [59, 64], "suit": 59, "argument": [59, 82], "singl": 59, "file": [59, 67, 68, 71, 78, 84], "read": [59, 71, 84], "json": 59, "output": 59, "gasnet": 60, "configur": [60, 68, 75, 78], "build": [60, 61, 63, 64, 75, 77, 78], "reduc": [61, 82], "memori": 61, "usag": [61, 83], "step": [62, 76, 77], "instruct": 62, "gener": [62, 71], "note": 62, "diff": 62, "git": 62, "log": 62, "speed": 63, "up": 63, "alwai": 63, "set": [63, 66, 96, 98], "us": [63, 66, 73, 75, 78, 79], "modular": [63, 75, 78], "system": 63, "tip": 64, "reproduc": 64, "user": 64, "save": [64, 78], "effici": 64, "document": [65, 72, 75], "arrai": [66, 90, 96, 98], "pdarrai": [66, 67, 68, 70, 94, 95], "creation": [66, 88], "export": [66, 69, 71, 84], "object": [66, 100], "oper": [66, 87, 89, 95, 96, 98, 100], "creat": [66, 90], "import": [66, 69, 71, 84], "panda": [66, 97], "map": 66, "basic": 66, "interact": 66, "groupbi": [66, 68, 91, 92], "csv": 67, "support": [67, 68, 70, 71, 84], "data": [67, 68, 70, 84, 91, 93, 95], "format": [67, 71, 84], "without": 67, "header": 67, "hdf5": 68, "metadata": 68, "schema": 68, "arrayview": [68, 88], "mode": [68, 70], "distribut": [68, 75], "legaci": 68, "parquet": 70, "compress": 70, "i": [71, 84, 100], "o": [71, 84, 100], "l": 71, "quickstart": 73, "instal": [73, 75, 76, 77, 79, 81], "launch": [73, 99], "connect": [73, 99], "3": [73, 99], "shutdown": 73, "disconnect": 73, "get": 75, "start": 75, "recommend": [75, 77], "manual": 75, "all": 75, "individu": 75, "arrow": 75, "troubleshoot": 75, "linux": 76, "updat": [76, 77, 79], "kernel": 76, "clone": [76, 77], "repositori": [76, 77], "anaconda": [76, 77, 79], "ubuntu": 76, "rhel": 76, "next": [76, 77], "maco": 77, "sourc": 77, "homebrew": 77, "specifi": 78, "custom": 78, "new": 78, "an": 78, "requir": [79, 81], "list": 79, "specif": [79, 96, 100], "pip": 79, "window": 80, "wsl2": 80, "overview": 81, "guid": [81, 83], "perform": [82, 96, 100], "argsort": [82, 85], "posit": 82, "name": [82, 95], "gather": [82, 94], "scan": [82, 87], "scatter": [82, 94], "stream": 82, "between": 84, "larg": 84, "dataset": 84, "preprocess": 84, "disk": 84, "chang": 85, "lookup": [85, 97], "concat": 85, "arithmet": 87, "vector": 87, "scalar": 87, "element": [87, 96], "wise": 87, "reduct": 87, "where": 87, "iter": [88, 89, 91, 95, 96, 100], "construct": 89, "constant": 90, "regular": [90, 100], "concaten": [90, 91], "drop": 91, "copi": 91, "filter": 91, "permut": 91, "tail": [91, 97], "head": [91, 97], "renam": 91, "column": 91, "append": [91, 96], "reset": 91, "dedupl": [91, 96], "summar": 93, "descript": 93, "statist": 93, "histogram": 93, "valu": [93, 97], "count": [93, 97], "assign": 94, "integ": 94, "slice": 94, "logic": 94, "rank": 95, "cast": 95, "reshap": 95, "method": [96, 100], "prefix": 96, "suffix": 96, "ngram": 96, "sub": 96, "size": 96, "access": 96, "prepend": 96, "setop": 96, "union": 96, "intersect": 96, "differ": 96, "symmetr": 96, "integr": 97, "startup": 99, "substr": 100, "search": 100, "split": 100, "flatten": 100, "express": 100}, "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.viewcode": 1, "sphinx": 60}, "alltitles": {"Contributing": [[0, "contributing"]], "Adding Issues": [[0, "adding-issues"]], "Bug Reports": [[0, "bug-reports"]], "Feature Requests": [[0, "feature-requests"]], "Developing Arkouda": [[0, "developing-arkouda"]], "Coding Conventions and Linting": [[0, "coding-conventions-and-linting"]], "Python3": [[0, "python3"]], "Chapel": [[0, "chapel"]], "Testing": [[0, "testing"], [1, "testing"]], "Running python tests": [[0, "running-python-tests"]], "Running chapel tests": [[0, "running-chapel-tests"]], "Writing Pull Requests": [[0, "writing-pull-requests"]], "Reviewing Pull Requests": [[0, "reviewing-pull-requests"]], "Core Development Team Only": [[0, "core-development-team-only"]], "Merging Pull Requests": [[0, "merging-pull-requests"]], "Release Process": [[0, "release-process"], [62, "release-process"]], "Environment Variables": [[1, "environment-variables"], [75, "environment-variables"]], "Running": [[1, "running"]], "Compilation / Makefile": [[1, "compilation-makefile"]], "Chapel Compiler Flags": [[1, "chapel-compiler-flags"]], "Dependency Paths": [[1, "dependency-paths"]], "Adding a Module from Outside the Arkouda src Directory": [[1, "adding-a-module-from-outside-the-arkouda-src-directory"]], "Python Client": [[1, "python-client"]], "arkouda.accessor": [[2, "module-arkouda.accessor"]], "Module Contents": [[2, "module-contents"], [3, "module-contents"], [5, "module-contents"], [7, "module-contents"], [8, "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"], [21, "module-contents"], [23, "module-contents"], [24, "module-contents"], [25, "module-contents"], [26, "module-contents"], [27, "module-contents"], [28, "module-contents"], [29, "module-contents"], [30, "module-contents"], [31, "module-contents"], [33, "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"], [42, "module-contents"], [43, "module-contents"], [44, "module-contents"], [45, "module-contents"], [46, "module-contents"], [47, "module-contents"], [49, "module-contents"], [50, "module-contents"], [51, "module-contents"], [52, "module-contents"], [53, "module-contents"], [54, "module-contents"], [55, "module-contents"], [56, "module-contents"]], "Classes": [[2, "classes"], [3, "classes"], [4, "classes"], [8, "classes"], [11, "classes"], [17, "classes"], [20, "classes"], [24, "classes"], [25, "classes"], [27, "classes"], [28, "classes"], [30, "classes"], [31, "classes"], [32, "classes"], [33, "classes"], [38, "classes"], [39, "classes"], [40, "classes"], [41, "classes"], [42, "classes"], [46, "classes"], [48, "classes"], [49, "classes"], [51, "classes"], [52, "classes"], [54, "classes"], [55, "classes"]], "Functions": [[2, "functions"], [3, "functions"], [4, "functions"], [5, "functions"], [6, "functions"], [7, "functions"], [10, "functions"], [11, "functions"], [13, "functions"], [14, "functions"], [15, "functions"], [16, "functions"], [17, "functions"], [18, "functions"], [19, "functions"], [21, "functions"], [23, "functions"], [26, "functions"], [27, "functions"], [28, "functions"], [29, "functions"], [30, "functions"], [32, "functions"], [34, "functions"], [35, "functions"], [36, "functions"], [37, "functions"], [38, "functions"], [41, "functions"], [42, "functions"], [43, "functions"], [44, "functions"], [45, "functions"], [46, "functions"], [47, "functions"], [48, "functions"], [50, "functions"], [51, "functions"], [53, "functions"], [55, "functions"], [56, "functions"]], "arkouda.akscipy._stats_py": [[3, "module-arkouda.akscipy._stats_py"]], "arkouda.akscipy": [[4, "module-arkouda.akscipy"]], "Subpackages": [[4, "subpackages"], [32, "subpackages"]], "Package Contents": [[4, "package-contents"], [6, "package-contents"], [22, "package-contents"], [32, "package-contents"], [48, "package-contents"]], "arkouda.akscipy.special._math": [[5, "module-arkouda.akscipy.special._math"]], "arkouda.akscipy.special": [[6, "module-arkouda.akscipy.special"]], "arkouda.alignment": [[7, "module-arkouda.alignment"]], "arkouda.array_api._array_object": [[8, "module-arkouda.array_api._array_object"]], "arkouda.array_api._constants": [[9, "module-arkouda.array_api._constants"]], "arkouda.array_api._creation_functions": [[10, "module-arkouda.array_api._creation_functions"]], "arkouda.array_api._data_type_functions": [[11, "module-arkouda.array_api._data_type_functions"]], "arkouda.array_api._dtypes": [[12, "module-arkouda.array_api._dtypes"]], "arkouda.array_api._elementwise_functions": [[13, "module-arkouda.array_api._elementwise_functions"]], "arkouda.array_api._indexing_functions": [[14, "module-arkouda.array_api._indexing_functions"]], "arkouda.array_api._manipulation_functions": [[15, "module-arkouda.array_api._manipulation_functions"]], "arkouda.array_api._searching_functions": [[16, "module-arkouda.array_api._searching_functions"]], "arkouda.array_api._set_functions": [[17, "module-arkouda.array_api._set_functions"]], "arkouda.array_api._sorting_functions": [[18, "module-arkouda.array_api._sorting_functions"]], "arkouda.array_api._statistical_functions": [[19, "module-arkouda.array_api._statistical_functions"]], "arkouda.array_api._typing": [[20, "module-arkouda.array_api._typing"]], "Attributes": [[20, "attributes"], [29, "attributes"], [30, "attributes"], [32, "attributes"], [34, "attributes"], [50, "attributes"], [51, "attributes"]], "arkouda.array_api._utility_functions": [[21, "module-arkouda.array_api._utility_functions"]], "arkouda.array_api": [[22, "module-arkouda.array_api"]], "Submodules": [[22, "submodules"], [32, "submodules"]], "arkouda.array_api.linalg": [[23, "module-arkouda.array_api.linalg"]], "arkouda.array_view": [[24, "module-arkouda.array_view"]], "arkouda.categorical": [[25, "module-arkouda.categorical"]], "arkouda.client": [[26, "module-arkouda.client"]], "arkouda.client_dtypes": [[27, "module-arkouda.client_dtypes"]], "arkouda.dataframe": [[28, "module-arkouda.dataframe"]], "arkouda.dtypes": [[29, "module-arkouda.dtypes"]], "arkouda.groupbyclass": [[30, "module-arkouda.groupbyclass"]], "arkouda.history": [[31, "module-arkouda.history"]], "arkouda": [[32, "module-arkouda"]], "Input": [[32, "input"], [52, "input"]], "Return Type": [[32, "return-type"], [32, "id650"], [32, "id652"], [44, "return-type"], [98, "return-type"]], "arkouda.index": [[33, "module-arkouda.index"]], "arkouda.infoclass": [[34, "module-arkouda.infoclass"]], "arkouda.io": [[35, "module-arkouda.io"]], "arkouda.io_util": [[36, "module-arkouda.io_util"]], "arkouda.join": [[37, "module-arkouda.join"]], "arkouda.logger": [[38, "module-arkouda.logger"]], "arkouda.match": [[39, "module-arkouda.match"]], "arkouda.matcher": [[40, "module-arkouda.matcher"]], "arkouda.numeric": [[41, "module-arkouda.numeric"]], "arkouda.pdarrayclass": [[42, "module-arkouda.pdarrayclass"]], "arkouda.pdarraycreation": [[43, "module-arkouda.pdarraycreation"]], "arkouda.pdarraysetops": [[44, "module-arkouda.pdarraysetops"]], "arkouda.plotting": [[45, "module-arkouda.plotting"]], "arkouda.random._generator": [[46, "module-arkouda.random._generator"]], "arkouda.random._legacy": [[47, "module-arkouda.random._legacy"]], "arkouda.random": [[48, "module-arkouda.random"]], "arkouda.row": [[49, "module-arkouda.row"]], "arkouda.security": [[50, "module-arkouda.security"]], "arkouda.segarray": [[51, "module-arkouda.segarray"]], "arkouda.series": [[52, "module-arkouda.series"]], "arkouda.sorting": [[53, "module-arkouda.sorting"]], "arkouda.strings": [[54, "module-arkouda.strings"]], "arkouda.timeclass": [[55, "module-arkouda.timeclass"]], "arkouda.util": [[56, "module-arkouda.util"]], "API Reference": [[57, "api-reference"], [67, "api-reference"], [68, "api-reference"], [69, "api-reference"], [70, "api-reference"]], "Adding Your First Feature": [[58, "adding-your-first-feature"]], "Adding Python Functionality (Client Interface)": [[58, "adding-python-functionality-client-interface"]], "Example": [[58, "example"], [58, "id1"]], "Adding Functionality to the Arkouda Server": [[58, "adding-functionality-to-the-arkouda-server"]], "PyTest Benchmarks": [[59, "pytest-benchmarks"]], "Running The Full Suite": [[59, "running-the-full-suite"]], "Benchmark Arguments": [[59, "benchmark-arguments"]], "Running Single Files or Tests": [[59, "running-single-files-or-tests"]], "Reading the JSON Output": [[59, "reading-the-json-output"]], "GASNet Development": [[60, "gasnet-development"]], "Environment Configuration": [[60, "environment-configuration"]], "Build Chapel with GASNet": [[60, "build-chapel-with-gasnet"]], "Build Arkouda": [[60, "build-arkouda"]], "Run Arkouda": [[60, "run-arkouda"]], "Reducing Memory Usage of Arkouda Builds": [[61, "reducing-memory-usage-of-arkouda-builds"]], "Step-by-step instructions": [[62, "step-by-step-instructions"]], "Generating release notes": [[62, "generating-release-notes"]], "Diff the git logs": [[62, "diff-the-git-logs"]], "Speeding up Arkouda Compilation": [[63, "speeding-up-arkouda-compilation"]], "Environment Variables to Always Set": [[63, "environment-variables-to-always-set"]], "Using the Modular Build System": [[63, "using-the-modular-build-system"]], "Tips for Reproducing User Bugs": [[64, "tips-for-reproducing-user-bugs"]], "Saving Full Builds": [[64, "saving-full-builds"]], "Reproducing User Bugs Efficiently": [[64, "reproducing-user-bugs-efficiently"]], "Developer Documentation": [[65, "developer-documentation"]], "Examples": [[66, "examples"]], "Arkouda Arrays": [[66, "arkouda-arrays"]], "pdarray Creation": [[66, "pdarray-creation"]], "Exporting pdarray Objects": [[66, "exporting-pdarray-objects"]], "pdarray Set operations": [[66, "pdarray-set-operations"]], "Arkouda DataFrames": [[66, "arkouda-dataframes"]], "Creating & Using a DataFrame": [[66, "creating-using-a-dataframe"]], "Importing Pandas DataFrame": [[66, "importing-pandas-dataframe"]], "Python Mapping": [[66, "python-mapping"]], "Basic Interaction": [[66, "basic-interaction"]], "Exporting to Pandas": [[66, "exporting-to-pandas"]], "GroupBy": [[66, "groupby"], [68, "groupby"], [68, "id5"], [91, "groupby"], [92, "groupby"]], "pdarrays": [[66, "pdarrays"]], "DataFrames": [[66, "dataframes"]], "CSV": [[67, "csv"]], "Support Arkouda Data Types": [[67, "support-arkouda-data-types"]], "File Formatting": [[67, "file-formatting"]], "Example Files": [[67, "example-files"]], "Arkouda Formatted File": [[67, "arkouda-formatted-file"]], "File Without Header": [[67, "file-without-header"]], "Data Formatting": [[67, "data-formatting"]], "pdarray": [[67, "pdarray"], [68, "pdarray"], [68, "id1"], [70, "pdarray"]], "Strings": [[67, "strings"], [68, "strings"], [68, "id2"], [70, "strings"]], "Index": [[67, "index"], [68, "index"], [70, "index"]], "DataFrame": [[67, "dataframe"], [68, "dataframe"], [70, "dataframe"]], "HDF5": [[68, "hdf5"]], "File Configuration": [[68, "file-configuration"]], "Supported Arkouda Data Types": [[68, "supported-arkouda-data-types"], [70, "supported-arkouda-data-types"]], "MetaData Attributes": [[68, "metadata-attributes"]], "Data Schema": [[68, "data-schema"]], "ArrayView": [[68, "arrayview"]], "SegArray": [[68, "segarray"], [68, "id4"], [70, "segarray"]], "Categorical": [[68, "categorical"], [68, "id3"], [70, "categorical"]], "Supported Write Modes": [[68, "supported-write-modes"], [70, "supported-write-modes"]], "Data Distribution": [[68, "data-distribution"]], "Legacy File Support": [[68, "legacy-file-support"]], "Import/Export": [[69, "import-export"], [84, "import-export"]], "Export": [[69, "export"]], "Import": [[69, "import"]], "Parquet": [[70, "parquet"]], "Compression": [[70, "compression"]], "File I/O": [[71, "file-i-o"]], "Supported File Formats:": [[71, null]], "Import/Export Support": [[71, "import-export-support"]], "General I/O API": [[71, "general-i-o-api"]], "Write": [[71, "write"]], "Read": [[71, "read"]], "ls Functionality": [[71, "ls-functionality"]], "Arkouda Documentation": [[72, "arkouda-documentation"]], "Quickstart": [[73, "quickstart"]], "Install Dependencies": [[73, "install-dependencies"]], "Install Arkouda": [[73, "install-arkouda"]], "Launching the Server": [[73, "launching-the-server"]], "Connect the Python 3 Client": [[73, "connect-the-python-3-client"]], "Shutdown/Disconnect": [[73, "shutdown-disconnect"]], "Using Arkouda": [[73, "using-arkouda"]], "Chapel API Reference": [[74, "chapel-api-reference"]], "Building the Server": [[75, "building-the-server"]], "Getting Started": [[75, "getting-started"]], "Dependency Configuration": [[75, "dependency-configuration"]], "Using Environment Installed Dependencies (Recommended)": [[75, "using-environment-installed-dependencies-recommended"]], "Installing Dependencies Manually": [[75, "installing-dependencies-manually"]], "Dependencies": [[75, "dependencies"]], "All Dependencies": [[75, "all-dependencies"]], "Individual Installs": [[75, "individual-installs"]], "Arrow Install Troubleshooting": [[75, "arrow-install-troubleshooting"]], "Distributable Package": [[75, "distributable-package"]], "Build the Server": [[75, "build-the-server"]], "Building the Arkouda Documentation": [[75, "building-the-arkouda-documentation"]], "Modular Building": [[75, "modular-building"]], "Linux": [[76, "linux"]], "Update Kernel": [[76, "update-kernel"]], "Clone Arkouda Repository": [[76, "clone-arkouda-repository"], [77, "clone-arkouda-repository"]], "Python Environment - Anaconda (Linux)": [[76, "python-environment-anaconda-linux"]], "Chapel Installation": [[76, "chapel-installation"]], "Install Chapel (Ubuntu)": [[76, "install-chapel-ubuntu"]], "Install Chapel (RHEL)": [[76, "install-chapel-rhel"]], "Next Steps": [[76, "next-steps"], [77, "next-steps"]], "MacOS": [[77, "macos"]], "Python Environment - Anaconda": [[77, "python-environment-anaconda"]], "Updating Environment": [[77, "updating-environment"]], "Anaconda": [[77, "anaconda"]], "Install Chapel": [[77, "install-chapel"]], "Build from Source (Recommended)": [[77, "build-from-source-recommended"]], "Homebrew": [[77, "homebrew"]], "Modular Server Builds": [[78, "modular-server-builds"]], "Specifying a custom configuration file": [[78, "specifying-a-custom-configuration-file"]], "Adding new modules into the build process": [[78, "adding-new-modules-into-the-build-process"]], "Saving modules used in an Arkouda server run": [[78, "saving-modules-used-in-an-arkouda-server-run"]], "Requirements": [[79, "requirements"], [81, "requirements"]], "Dependency List": [[79, "dependency-list"]], "Python Dependencies": [[79, "python-dependencies"]], "Developer Specific": [[79, "developer-specific"]], "Installing/Updating Python Dependencies": [[79, "installing-updating-python-dependencies"]], "Using Anaconda": [[79, "using-anaconda"]], "Using Pip": [[79, "using-pip"]], "Windows (WSL2)": [[80, "windows-wsl2"]], "Installation": [[81, "installation"]], "Overview": [[81, "overview"]], "Install Guides": [[81, "install-guides"]], "Performance Testing": [[82, "performance-testing"]], "Argsort": [[82, "argsort"]], "Positional Arguments": [[82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"]], "Named Arguments": [[82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"]], "Gather": [[82, "gather"]], "Reduce": [[82, "reduce"]], "Scan": [[82, "scan"]], "Scatter": [[82, "scatter"]], "Stream": [[82, "stream"]], "Usage Guide": [[83, "usage-guide"]], "Data I/O": [[84, "data-i-o"]], "Between client and server": [[84, "between-client-and-server"]], "Large Datasets": [[84, "large-datasets"]], "Supported File Formats": [[84, "supported-file-formats"]], "Data Preprocessing": [[84, "data-preprocessing"]], "Reading data from disk": [[84, "reading-data-from-disk"]], "Indexs in Arkouda": [[85, "indexs-in-arkouda"]], "Features": [[85, "features"], [91, "features"], [97, "features"]], "Change Dtype": [[85, "change-dtype"]], "ArgSort": [[85, "argsort"]], "Lookup": [[85, "lookup"], [97, "lookup"], [97, "id1"]], "Concat": [[85, "concat"]], "Sorting": [[86, "sorting"], [91, "sorting"], [97, "sorting"]], "Arithmetic and Numeric Operations": [[87, "arithmetic-and-numeric-operations"]], "Vector and Scalar Arithmetic": [[87, "vector-and-scalar-arithmetic"]], "Element-wise Functions": [[87, "element-wise-functions"]], "Scans": [[87, "scans"]], "Reductions": [[87, "reductions"]], "Where": [[87, "where"]], "ArrayView in Arkouda": [[88, "arrayview-in-arkouda"]], "Creation": [[88, "creation"]], "Indexing": [[88, "indexing"]], "Iteration": [[88, "iteration"], [89, "iteration"], [91, "iteration"], [95, "iteration"], [96, "iteration"], [100, "iteration"]], "Categoricals": [[89, "categoricals"]], "Construction": [[89, "construction"]], "Operations": [[89, "operations"], [100, "operations"]], "Creating Arrays": [[90, "creating-arrays"]], "Constant": [[90, "constant"]], "Regular": [[90, "regular"]], "Random": [[90, "random"]], "Concatenation": [[90, "concatenation"]], "DataFrames in Arkouda": [[91, "dataframes-in-arkouda"]], "Data Types": [[91, "data-types"]], "Drop": [[91, "drop"]], "Copy": [[91, "copy"]], "Filter": [[91, "filter"]], "Permutations": [[91, "permutations"]], "Tail/Head of Data": [[91, "tail-head-of-data"]], "Rename Columns": [[91, "rename-columns"]], "Append": [[91, "append"]], "Concatenate": [[91, "concatenate"]], "Reset Indexes": [[91, "reset-indexes"]], "Deduplication": [[91, "deduplication"], [96, "deduplication"]], "Summarizing Data": [[93, "summarizing-data"]], "Descriptive Statistics": [[93, "descriptive-statistics"]], "Histogram": [[93, "histogram"]], "Value Counts": [[93, "value-counts"], [97, "value-counts"]], "Indexing and Assignment": [[94, "indexing-and-assignment"]], "Integer": [[94, "integer"]], "Slice": [[94, "slice"]], "Gather/Scatter (pdarray)": [[94, "gather-scatter-pdarray"]], "Integer pdarray index": [[94, "integer-pdarray-index"]], "Logical indexing": [[94, "logical-indexing"]], "The pdarray class": [[95, "the-pdarray-class"]], "Data Type": [[95, "data-type"]], "Rank": [[95, "rank"]], "Name": [[95, "name"]], "Operators": [[95, "operators"]], "Type Casting": [[95, "type-casting"]], "Reshape": [[95, "reshape"]], "SegArrays in Arkouda": [[96, "segarrays-in-arkouda"]], "Performance": [[96, "performance"], [100, "performance"]], "Operation": [[96, "operation"]], "SegArray Specific Methods": [[96, "segarray-specific-methods"]], "Prefix & Suffix": [[96, "prefix-suffix"]], "NGrams": [[96, "ngrams"]], "Sub-array of Size": [[96, "sub-array-of-size"]], "Access/Set Specific Elements in Sub-Array": [[96, "access-set-specific-elements-in-sub-array"]], "Append & Prepend": [[96, "append-prepend"]], "SegArray SetOps": [[96, "segarray-setops"]], "Union": [[96, "union"]], "Intersect": [[96, "intersect"]], "Set Difference": [[96, "set-difference"]], "Symmetric Difference": [[96, "symmetric-difference"]], "Series in Arkouda": [[97, "series-in-arkouda"]], "Head/Tail": [[97, "head-tail"]], "Pandas Integration": [[97, "pandas-integration"]], "Array Set Operations": [[98, "array-set-operations"]], "Startup": [[99, "startup"]], "Launch arkouda server": [[99, "launch-arkouda-server"]], "Connect a Python 3 client": [[99, "connect-a-python-3-client"]], "Strings in Arkouda": [[100, "strings-in-arkouda"]], "I/O": [[100, "i-o"]], "String-Specific Methods": [[100, "string-specific-methods"]], "Substring search": [[100, "substring-search"]], "Splitting and joining": [[100, "splitting-and-joining"]], "Flattening": [[100, "flattening"]], "Regular Expressions": [[100, "regular-expressions"]], "Match Object": [[100, "match-object"]]}, "indexentries": {"cachedaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.CachedAccessor"]], "datetimeaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.DatetimeAccessor"]], "properties (class in arkouda.accessor)": [[2, "arkouda.accessor.Properties"]], "stringaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.StringAccessor"]], "arkouda.accessor": [[2, "module-arkouda.accessor"]], "date_operators() (in module arkouda.accessor)": [[2, "arkouda.accessor.date_operators"]], "module": [[2, "module-arkouda.accessor"], [3, "module-arkouda.akscipy._stats_py"], [4, "module-arkouda.akscipy"], [5, "module-arkouda.akscipy.special._math"], [6, "module-arkouda.akscipy.special"], [7, "module-arkouda.alignment"], [8, "module-arkouda.array_api._array_object"], [9, "module-arkouda.array_api._constants"], [10, "module-arkouda.array_api._creation_functions"], [11, "module-arkouda.array_api._data_type_functions"], [12, "module-arkouda.array_api._dtypes"], [13, "module-arkouda.array_api._elementwise_functions"], [14, "module-arkouda.array_api._indexing_functions"], [15, "module-arkouda.array_api._manipulation_functions"], [16, "module-arkouda.array_api._searching_functions"], [17, "module-arkouda.array_api._set_functions"], [18, "module-arkouda.array_api._sorting_functions"], [19, "module-arkouda.array_api._statistical_functions"], [20, "module-arkouda.array_api._typing"], [21, "module-arkouda.array_api._utility_functions"], [22, "module-arkouda.array_api"], [23, "module-arkouda.array_api.linalg"], [24, "module-arkouda.array_view"], [25, "module-arkouda.categorical"], [26, "module-arkouda.client"], [27, "module-arkouda.client_dtypes"], [28, "module-arkouda.dataframe"], [29, "module-arkouda.dtypes"], [30, "module-arkouda.groupbyclass"], [31, "module-arkouda.history"], [32, "module-arkouda"], [33, "module-arkouda.index"], [34, "module-arkouda.infoclass"], [35, "module-arkouda.io"], [36, "module-arkouda.io_util"], [37, "module-arkouda.join"], [38, "module-arkouda.logger"], [39, "module-arkouda.match"], [40, "module-arkouda.matcher"], [41, "module-arkouda.numeric"], [42, "module-arkouda.pdarrayclass"], [43, "module-arkouda.pdarraycreation"], [44, "module-arkouda.pdarraysetops"], [45, "module-arkouda.plotting"], [46, "module-arkouda.random._generator"], [47, "module-arkouda.random._legacy"], [48, "module-arkouda.random"], [49, "module-arkouda.row"], [50, "module-arkouda.security"], [51, "module-arkouda.segarray"], [52, "module-arkouda.series"], [53, "module-arkouda.sorting"], [54, "module-arkouda.strings"], [55, "module-arkouda.timeclass"], [56, "module-arkouda.util"]], "string_operators() (in module arkouda.accessor)": [[2, "arkouda.accessor.string_operators"]], "power_divergenceresult (class in arkouda.akscipy._stats_py)": [[3, "arkouda.akscipy._stats_py.Power_divergenceResult"]], "arkouda.akscipy._stats_py": [[3, "module-arkouda.akscipy._stats_py"]], "chisquare() (in module arkouda.akscipy._stats_py)": [[3, "arkouda.akscipy._stats_py.chisquare"]], "power_divergence() (in module arkouda.akscipy._stats_py)": [[3, "arkouda.akscipy._stats_py.power_divergence"]], "pvalue (arkouda.akscipy._stats_py.power_divergenceresult attribute)": [[3, "arkouda.akscipy._stats_py.Power_divergenceResult.pvalue"]], "statistic (arkouda.akscipy._stats_py.power_divergenceresult attribute)": [[3, "arkouda.akscipy._stats_py.Power_divergenceResult.statistic"]], "power_divergenceresult (class in arkouda.akscipy)": [[4, "arkouda.akscipy.Power_divergenceResult"]], "arkouda.akscipy": [[4, "module-arkouda.akscipy"]], "chisquare() (in module arkouda.akscipy)": [[4, "arkouda.akscipy.chisquare"]], "power_divergence() (in module arkouda.akscipy)": [[4, "arkouda.akscipy.power_divergence"]], "pvalue (arkouda.akscipy.power_divergenceresult attribute)": [[4, "arkouda.akscipy.Power_divergenceResult.pvalue"]], "statistic (arkouda.akscipy.power_divergenceresult attribute)": [[4, "arkouda.akscipy.Power_divergenceResult.statistic"]], "arkouda.akscipy.special._math": [[5, "module-arkouda.akscipy.special._math"]], "xlogy() (in module arkouda.akscipy.special._math)": [[5, "arkouda.akscipy.special._math.xlogy"]], "arkouda.akscipy.special": [[6, "module-arkouda.akscipy.special"]], "xlogy() (in module arkouda.akscipy.special)": [[6, "arkouda.akscipy.special.xlogy"]], "nonuniqueerror": [[7, "arkouda.alignment.NonUniqueError"], [32, "arkouda.NonUniqueError"]], "align() (in module arkouda.alignment)": [[7, "arkouda.alignment.align"]], "arkouda.alignment": [[7, "module-arkouda.alignment"]], "find() (in module arkouda.alignment)": [[7, "arkouda.alignment.find"]], "in1d_intervals() (in module arkouda.alignment)": [[7, "arkouda.alignment.in1d_intervals"]], "interval_lookup() (in module arkouda.alignment)": [[7, "arkouda.alignment.interval_lookup"]], "is_cosorted() (in module arkouda.alignment)": [[7, "arkouda.alignment.is_cosorted"]], "left_align() (in module arkouda.alignment)": [[7, "arkouda.alignment.left_align"]], "lookup() (in module arkouda.alignment)": [[7, "arkouda.alignment.lookup"]], "right_align() (in module arkouda.alignment)": [[7, "arkouda.alignment.right_align"]], "search_intervals() (in module arkouda.alignment)": [[7, "arkouda.alignment.search_intervals"]], "unsqueeze() (in module arkouda.alignment)": [[7, "arkouda.alignment.unsqueeze"]], "zero_up() (in module arkouda.alignment)": [[7, "arkouda.alignment.zero_up"]], "array (class in arkouda.array_api._array_object)": [[8, "arkouda.array_api._array_object.Array"]], "t (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.T"]], "arkouda.array_api._array_object": [[8, "module-arkouda.array_api._array_object"]], "device (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.device"]], "dtype (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.dtype"]], "mt (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.mT"]], "ndim (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.ndim"]], "shape (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.shape"]], "size (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.size"]], "to_device() (arkouda.array_api._array_object.array method)": [[8, "arkouda.array_api._array_object.Array.to_device"]], "to_ndarray() (arkouda.array_api._array_object.array method)": [[8, "arkouda.array_api._array_object.Array.to_ndarray"]], "tolist() (arkouda.array_api._array_object.array method)": [[8, "arkouda.array_api._array_object.Array.tolist"]], "arkouda.array_api._constants": [[9, "module-arkouda.array_api._constants"]], "e (in module arkouda.array_api._constants)": [[9, "arkouda.array_api._constants.e"]], "inf (in module arkouda.array_api._constants)": [[9, "arkouda.array_api._constants.inf"]], "nan (in module arkouda.array_api._constants)": [[9, "arkouda.array_api._constants.nan"]], "pi (in module arkouda.array_api._constants)": [[9, "arkouda.array_api._constants.pi"]], "arange() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.arange"]], "arkouda.array_api._creation_functions": [[10, "module-arkouda.array_api._creation_functions"]], "asarray() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.asarray"]], "empty() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.empty"]], "empty_like() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.empty_like"]], "eye() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.eye"]], "from_dlpack() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.from_dlpack"]], "full() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.full"]], "full_like() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.full_like"]], "linspace() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.linspace"]], "meshgrid() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.meshgrid"]], "ones() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.ones"]], "ones_like() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.ones_like"]], "tril() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.tril"]], "triu() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.triu"]], "zeros() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.zeros"]], "zeros_like() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.zeros_like"]], "arkouda.array_api._data_type_functions": [[11, "module-arkouda.array_api._data_type_functions"]], "astype() (in module arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.astype"]], "bits (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.bits"]], "bits (arkouda.array_api._data_type_functions.iinfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.iinfo_object.bits"]], "can_cast() (in module arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.can_cast"]], "dtype (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.dtype"]], "dtype (arkouda.array_api._data_type_functions.iinfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.iinfo_object.dtype"]], "eps (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.eps"]], "finfo_object (class in arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.finfo_object"]], "iinfo_object (class in arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.iinfo_object"]], "isdtype() (in module arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.isdtype"]], "max (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.max"]], "max (arkouda.array_api._data_type_functions.iinfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.iinfo_object.max"]], "min (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.min"]], "min (arkouda.array_api._data_type_functions.iinfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.iinfo_object.min"]], "result_type() (in module arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.result_type"]], "smallest_normal (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.smallest_normal"]], "arkouda.array_api._dtypes": [[12, "module-arkouda.array_api._dtypes"]], "bool (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.bool"]], "complex128 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.complex128"]], "complex64 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.complex64"]], "float32 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.float32"]], "float64 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.float64"]], "int16 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.int16"]], "int32 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.int32"]], "int64 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.int64"]], "int8 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.int8"]], "uint16 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.uint16"]], "uint32 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.uint32"]], "uint64 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.uint64"]], "uint8 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.uint8"]], "abs() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.abs"]], "acos() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.acos"]], "acosh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.acosh"]], "add() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.add"]], "arkouda.array_api._elementwise_functions": [[13, "module-arkouda.array_api._elementwise_functions"]], "asin() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.asin"]], "asinh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.asinh"]], "atan() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.atan"]], "atan2() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.atan2"]], "atanh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.atanh"]], "bitwise_and() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_and"]], "bitwise_invert() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_invert"]], "bitwise_left_shift() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_left_shift"]], "bitwise_or() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_or"]], "bitwise_right_shift() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_right_shift"]], "bitwise_xor() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_xor"]], "ceil() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.ceil"]], "conj() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.conj"]], "cos() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.cos"]], "cosh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.cosh"]], "divide() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.divide"]], "equal() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.equal"]], "exp() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.exp"]], "expm1() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.expm1"]], "floor() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.floor"]], "floor_divide() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.floor_divide"]], "greater() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.greater"]], "greater_equal() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.greater_equal"]], "imag() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.imag"]], "isfinite() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.isfinite"]], "isinf() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.isinf"]], "isnan() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.isnan"]], "less() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.less"]], "less_equal() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.less_equal"]], "log() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.log"]], "log10() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.log10"]], "log1p() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.log1p"]], "log2() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.log2"]], "logaddexp() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logaddexp"]], "logical_and() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logical_and"]], "logical_not() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logical_not"]], "logical_or() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logical_or"]], "logical_xor() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logical_xor"]], "multiply() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.multiply"]], "negative() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.negative"]], "not_equal() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.not_equal"]], "positive() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.positive"]], "pow() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.pow"]], "real() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.real"]], "remainder() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.remainder"]], "round() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.round"]], "sign() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.sign"]], "sin() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.sin"]], "sinh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.sinh"]], "sqrt() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.sqrt"]], "square() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.square"]], "subtract() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.subtract"]], "tan() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.tan"]], "tanh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.tanh"]], "trunc() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.trunc"]], "arkouda.array_api._indexing_functions": [[14, "module-arkouda.array_api._indexing_functions"]], "take() (in module arkouda.array_api._indexing_functions)": [[14, "arkouda.array_api._indexing_functions.take"]], "arkouda.array_api._manipulation_functions": [[15, "module-arkouda.array_api._manipulation_functions"]], "broadcast_arrays() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.broadcast_arrays"]], "broadcast_to() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.broadcast_to"]], "concat() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.concat"]], "expand_dims() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.expand_dims"]], "flip() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.flip"]], "permute_dims() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.permute_dims"]], "reshape() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.reshape"]], "roll() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.roll"]], "squeeze() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.squeeze"]], "stack() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.stack"]], "argmax() (in module arkouda.array_api._searching_functions)": [[16, "arkouda.array_api._searching_functions.argmax"]], "argmin() (in module arkouda.array_api._searching_functions)": [[16, "arkouda.array_api._searching_functions.argmin"]], "arkouda.array_api._searching_functions": [[16, "module-arkouda.array_api._searching_functions"]], "nonzero() (in module arkouda.array_api._searching_functions)": [[16, "arkouda.array_api._searching_functions.nonzero"]], "where() (in module arkouda.array_api._searching_functions)": [[16, "arkouda.array_api._searching_functions.where"]], "uniqueallresult (class in arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.UniqueAllResult"]], "uniquecountsresult (class in arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.UniqueCountsResult"]], "uniqueinverseresult (class in arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.UniqueInverseResult"]], "arkouda.array_api._set_functions": [[17, "module-arkouda.array_api._set_functions"]], "counts (arkouda.array_api._set_functions.uniqueallresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueAllResult.counts"]], "counts (arkouda.array_api._set_functions.uniquecountsresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueCountsResult.counts"]], "indices (arkouda.array_api._set_functions.uniqueallresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueAllResult.indices"]], "inverse_indices (arkouda.array_api._set_functions.uniqueallresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueAllResult.inverse_indices"]], "inverse_indices (arkouda.array_api._set_functions.uniqueinverseresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueInverseResult.inverse_indices"]], "unique_all() (in module arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.unique_all"]], "unique_counts() (in module arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.unique_counts"]], "unique_inverse() (in module arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.unique_inverse"]], "unique_values() (in module arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.unique_values"]], "values (arkouda.array_api._set_functions.uniqueallresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueAllResult.values"]], "values (arkouda.array_api._set_functions.uniquecountsresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueCountsResult.values"]], "values (arkouda.array_api._set_functions.uniqueinverseresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueInverseResult.values"]], "argsort() (in module arkouda.array_api._sorting_functions)": [[18, "arkouda.array_api._sorting_functions.argsort"]], "arkouda.array_api._sorting_functions": [[18, "module-arkouda.array_api._sorting_functions"]], "sort() (in module arkouda.array_api._sorting_functions)": [[18, "arkouda.array_api._sorting_functions.sort"]], "arkouda.array_api._statistical_functions": [[19, "module-arkouda.array_api._statistical_functions"]], "max() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.max"]], "mean() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.mean"]], "min() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.min"]], "prod() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.prod"]], "prod_sum_dtype() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.prod_sum_dtype"]], "std() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.std"]], "sum() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.sum"]], "var() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.var"]], "array (class in arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.Array"]], "device (in module arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.Device"]], "dtype (in module arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.Dtype"]], "pycapsule (in module arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.PyCapsule"]], "supportsbufferprotocol (in module arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.SupportsBufferProtocol"]], "supportsdlpack (class in arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.SupportsDLPack"]], "t (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.T"]], "arkouda.array_api._typing": [[20, "module-arkouda.array_api._typing"]], "device (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.device"]], "dtype (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.dtype"]], "mt (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.mT"]], "ndim (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.ndim"]], "shape (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.shape"]], "size (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.size"]], "to_device() (arkouda.array_api._typing.array method)": [[20, "arkouda.array_api._typing.Array.to_device"]], "to_ndarray() (arkouda.array_api._typing.array method)": [[20, "arkouda.array_api._typing.Array.to_ndarray"]], "tolist() (arkouda.array_api._typing.array method)": [[20, "arkouda.array_api._typing.Array.tolist"]], "all() (in module arkouda.array_api._utility_functions)": [[21, "arkouda.array_api._utility_functions.all"]], "any() (in module arkouda.array_api._utility_functions)": [[21, "arkouda.array_api._utility_functions.any"]], "arkouda.array_api._utility_functions": [[21, "module-arkouda.array_api._utility_functions"]], "arkouda.array_api": [[22, "module-arkouda.array_api"]], "arkouda.array_api.linalg": [[23, "module-arkouda.array_api.linalg"]], "matmul() (in module arkouda.array_api.linalg)": [[23, "arkouda.array_api.linalg.matmul"]], "matrix_transpose() (in module arkouda.array_api.linalg)": [[23, "arkouda.array_api.linalg.matrix_transpose"]], "tensordot() (in module arkouda.array_api.linalg)": [[23, "arkouda.array_api.linalg.tensordot"]], "vecdot() (in module arkouda.array_api.linalg)": [[23, "arkouda.array_api.linalg.vecdot"]], "arrayview (class in arkouda.array_view)": [[24, "arkouda.array_view.ArrayView"]], "arkouda.array_view": [[24, "module-arkouda.array_view"]], "base (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.base"]], "dtype (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.dtype"]], "itemsize (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.itemsize"]], "ndim (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.ndim"]], "objtype (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.objType"]], "order (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.order"]], "shape (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.shape"]], "size (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.size"]], "to_hdf() (arkouda.array_view.arrayview method)": [[24, "arkouda.array_view.ArrayView.to_hdf"]], "to_list() (arkouda.array_view.arrayview method)": [[24, "arkouda.array_view.ArrayView.to_list"]], "to_ndarray() (arkouda.array_view.arrayview method)": [[24, "arkouda.array_view.ArrayView.to_ndarray"]], "update_hdf() (arkouda.array_view.arrayview method)": [[24, "arkouda.array_view.ArrayView.update_hdf"]], "binops (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.BinOps"]], "categorical (class in arkouda.categorical)": [[25, "arkouda.categorical.Categorical"]], "registerablepieces (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.RegisterablePieces"]], "requiredpieces (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.RequiredPieces"]], "argsort() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.argsort"]], "arkouda.categorical": [[25, "module-arkouda.categorical"]], "attach() (arkouda.categorical.categorical static method)": [[25, "arkouda.categorical.Categorical.attach"]], "categories (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.categories"]], "codes (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.codes"]], "concatenate() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.concatenate"]], "contains() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.contains"]], "dtype (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.dtype"]], "endswith() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.endswith"]], "from_codes() (arkouda.categorical.categorical class method)": [[25, "arkouda.categorical.Categorical.from_codes"]], "from_return_msg() (arkouda.categorical.categorical class method)": [[25, "arkouda.categorical.Categorical.from_return_msg"]], "group() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.group"]], "hash() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.hash"]], "in1d() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.in1d"]], "info() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.info"]], "is_registered() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.is_registered"]], "isna() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.isna"]], "nbytes (arkouda.categorical.categorical property)": [[25, "arkouda.categorical.Categorical.nbytes"]], "ndim (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.ndim"]], "nlevels (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.nlevels"]], "objtype (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.objType"]], "parse_hdf_categoricals() (arkouda.categorical.categorical static method)": [[25, "arkouda.categorical.Categorical.parse_hdf_categoricals"]], "permutation (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.permutation"], [25, "id0"]], "pretty_print_info() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.pretty_print_info"]], "register() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.register"]], "reset_categories() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.reset_categories"]], "save() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.save"]], "segments (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.segments"], [25, "id1"]], "set_categories() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.set_categories"]], "shape (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.shape"]], "size (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.size"]], "sort() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.sort"]], "standardize_categories() (arkouda.categorical.categorical class method)": [[25, "arkouda.categorical.Categorical.standardize_categories"]], "startswith() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.startswith"]], "to_hdf() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_hdf"]], "to_list() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_list"]], "to_ndarray() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_ndarray"]], "to_parquet() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_parquet"]], "to_strings() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_strings"]], "transfer() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.transfer"]], "unique() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.unique"]], "unregister() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.unregister"]], "unregister_categorical_by_name() (arkouda.categorical.categorical static method)": [[25, "arkouda.categorical.Categorical.unregister_categorical_by_name"]], "update_hdf() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.update_hdf"]], "arkouda.client": [[26, "module-arkouda.client"]], "connect() (in module arkouda.client)": [[26, "arkouda.client.connect"]], "disconnect() (in module arkouda.client)": [[26, "arkouda.client.disconnect"]], "generate_history() (in module arkouda.client)": [[26, "arkouda.client.generate_history"]], "get_config() (in module arkouda.client)": [[26, "arkouda.client.get_config"]], "get_mem_avail() (in module arkouda.client)": [[26, "arkouda.client.get_mem_avail"]], "get_mem_status() (in module arkouda.client)": [[26, "arkouda.client.get_mem_status"]], "get_mem_used() (in module arkouda.client)": [[26, "arkouda.client.get_mem_used"]], "get_server_commands() (in module arkouda.client)": [[26, "arkouda.client.get_server_commands"]], "print_server_commands() (in module arkouda.client)": [[26, "arkouda.client.print_server_commands"]], "ruok() (in module arkouda.client)": [[26, "arkouda.client.ruok"]], "shutdown() (in module arkouda.client)": [[26, "arkouda.client.shutdown"]], "bitvector (class in arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.BitVector"]], "bitvectorizer() (in module arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.BitVectorizer"]], "fields (class in arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.Fields"]], "ipv4 (class in arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.IPv4"]], "arkouda.client_dtypes": [[27, "module-arkouda.client_dtypes"]], "conserves (arkouda.client_dtypes.bitvector attribute)": [[27, "arkouda.client_dtypes.BitVector.conserves"]], "export_uint() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.export_uint"]], "format() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.format"]], "format() (arkouda.client_dtypes.fields method)": [[27, "arkouda.client_dtypes.Fields.format"]], "format() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.format"]], "from_return_msg() (arkouda.client_dtypes.bitvector class method)": [[27, "arkouda.client_dtypes.BitVector.from_return_msg"]], "ip_address() (in module arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.ip_address"]], "is_ipv4() (in module arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.is_ipv4"]], "is_ipv6() (in module arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.is_ipv6"]], "normalize() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.normalize"]], "opeq() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.opeq"]], "opeq() (arkouda.client_dtypes.fields method)": [[27, "arkouda.client_dtypes.Fields.opeq"]], "opeq() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.opeq"]], "register() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.register"]], "register() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.register"]], "special_objtype (arkouda.client_dtypes.bitvector attribute)": [[27, "arkouda.client_dtypes.BitVector.special_objType"]], "special_objtype (arkouda.client_dtypes.ipv4 attribute)": [[27, "arkouda.client_dtypes.IPv4.special_objType"]], "to_hdf() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.to_hdf"]], "to_list() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.to_list"]], "to_list() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.to_list"]], "to_ndarray() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.to_ndarray"]], "to_ndarray() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.to_ndarray"]], "update_hdf() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.update_hdf"]], "dataframe (class in arkouda.dataframe)": [[28, "arkouda.dataframe.DataFrame"]], "diffaggregate (class in arkouda.dataframe)": [[28, "arkouda.dataframe.DiffAggregate"]], "groupby() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.GroupBy"], [28, "arkouda.dataframe.DataFrame.groupby"]], "append() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.append"]], "apply_permutation() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.apply_permutation"]], "argsort() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.argsort"]], "arkouda.dataframe": [[28, "module-arkouda.dataframe"]], "attach() (arkouda.dataframe.dataframe static method)": [[28, "arkouda.dataframe.DataFrame.attach"]], "coargsort() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.coargsort"]], "columns (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.columns"]], "concat() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.concat"]], "copy() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.copy"]], "corr() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.corr"]], "drop() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.drop"]], "drop_duplicates() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.drop_duplicates"]], "dtypes (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.dtypes"]], "empty (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.empty"]], "filter_by_range() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.filter_by_range"]], "from_pandas() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.from_pandas"]], "from_return_msg() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.from_return_msg"]], "gb (arkouda.dataframe.diffaggregate attribute)": [[28, "arkouda.dataframe.DiffAggregate.gb"]], "head() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.head"]], "index (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.index"]], "info (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.info"]], "intersect() (in module arkouda.dataframe)": [[28, "arkouda.dataframe.intersect"]], "intx() (in module arkouda.dataframe)": [[28, "arkouda.dataframe.intx"]], "invert_permutation() (in module arkouda.dataframe)": [[28, "arkouda.dataframe.invert_permutation"]], "is_registered() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.is_registered"]], "isin() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.isin"]], "load() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.load"]], "memory_usage() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.memory_usage"]], "memory_usage_info() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.memory_usage_info"]], "merge() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.merge"]], "merge() (in module arkouda.dataframe)": [[28, "arkouda.dataframe.merge"]], "objtype (arkouda.dataframe.dataframe attribute)": [[28, "arkouda.dataframe.DataFrame.objType"]], "read_csv() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.read_csv"]], "register() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.register"]], "rename() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.rename"]], "reset_index() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.reset_index"]], "sample() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.sample"]], "save() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.save"]], "shape (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.shape"]], "size (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.size"]], "sort_index() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.sort_index"]], "sort_values() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.sort_values"]], "tail() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.tail"]], "to_csv() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_csv"]], "to_hdf() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_hdf"]], "to_pandas() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_pandas"]], "to_parquet() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_parquet"]], "transfer() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.transfer"]], "unregister() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.unregister"]], "unregister_dataframe_by_name() (arkouda.dataframe.dataframe static method)": [[28, "arkouda.dataframe.DataFrame.unregister_dataframe_by_name"]], "update_hdf() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.update_hdf"]], "update_nrows() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.update_nrows"]], "values (arkouda.dataframe.diffaggregate attribute)": [[28, "arkouda.dataframe.DiffAggregate.values"]], "arkouda_supported_dtypes (in module arkouda.dtypes)": [[29, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES"]], "dtypeobjects (in module arkouda.dtypes)": [[29, "arkouda.dtypes.DTypeObjects"]], "dtypes (in module arkouda.dtypes)": [[29, "arkouda.dtypes.DTypes"]], "scalardtypes (in module arkouda.dtypes)": [[29, "arkouda.dtypes.ScalarDTypes"]], "all_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.all_scalars"]], "arkouda.dtypes": [[29, "module-arkouda.dtypes"]], "bigint (in module arkouda.dtypes)": [[29, "arkouda.dtypes.bigint"]], "bittype (in module arkouda.dtypes)": [[29, "arkouda.dtypes.bitType"]], "bool (in module arkouda.dtypes)": [[29, "arkouda.dtypes.bool"]], "bool_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.bool_scalars"]], "check_np_dtype() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.check_np_dtype"]], "complex128 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.complex128"]], "complex64 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.complex64"]], "dtype() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.dtype"]], "float32 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.float32"]], "float64 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.float64"]], "float_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.float_scalars"]], "get_byteorder() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.get_byteorder"]], "get_server_byteorder() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.get_server_byteorder"]], "int16 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int16"]], "int32 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int32"]], "int64 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int64"]], "int8 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int8"]], "inttypes (in module arkouda.dtypes)": [[29, "arkouda.dtypes.intTypes"]], "int_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int_scalars"]], "issupportednumber() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.isSupportedNumber"]], "numeric_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.numeric_scalars"]], "numpy_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.numpy_scalars"]], "resolve_scalar_dtype() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.resolve_scalar_dtype"]], "str_ (in module arkouda.dtypes)": [[29, "arkouda.dtypes.str_"]], "str_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.str_scalars"]], "translate_np_dtype() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.translate_np_dtype"]], "uint16 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.uint16"]], "uint32 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.uint32"]], "uint64 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.uint64"]], "uint8 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.uint8"]], "and() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.AND"]], "groupby_reduction_types (in module arkouda.groupbyclass)": [[30, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES"]], "groupby (class in arkouda.groupbyclass)": [[30, "arkouda.groupbyclass.GroupBy"]], "or() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.OR"]], "reductions (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.Reductions"]], "xor() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.XOR"]], "aggregate() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.aggregate"]], "all() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.all"]], "any() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.any"]], "argmax() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.argmax"]], "argmin() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.argmin"]], "arkouda.groupbyclass": [[30, "module-arkouda.groupbyclass"]], "attach() (arkouda.groupbyclass.groupby static method)": [[30, "arkouda.groupbyclass.GroupBy.attach"]], "broadcast() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.broadcast"]], "broadcast() (in module arkouda.groupbyclass)": [[30, "arkouda.groupbyclass.broadcast"]], "build_from_components() (arkouda.groupbyclass.groupby static method)": [[30, "arkouda.groupbyclass.GroupBy.build_from_components"]], "count() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.count"]], "dropna (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.dropna"]], "first() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.first"]], "from_return_msg() (arkouda.groupbyclass.groupby static method)": [[30, "arkouda.groupbyclass.GroupBy.from_return_msg"]], "is_registered() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.is_registered"]], "logger (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.logger"]], "max() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.max"]], "mean() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.mean"]], "median() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.median"]], "min() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.min"]], "mode() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.mode"]], "most_common() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.most_common"]], "ngroups (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.ngroups"]], "nkeys (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.nkeys"]], "nunique() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.nunique"]], "objtype (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.objType"]], "permutation (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.permutation"]], "prod() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.prod"]], "register() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.register"]], "segments (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.segments"]], "size (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.size"]], "size() (arkouda.groupbyclass.groupby method)": [[30, "id0"]], "std() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.std"]], "sum() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.sum"]], "to_hdf() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.to_hdf"]], "unique() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.unique"]], "unique() (in module arkouda.groupbyclass)": [[30, "arkouda.groupbyclass.unique"]], "unique_keys (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.unique_keys"]], "unregister() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.unregister"]], "unregister_groupby_by_name() (arkouda.groupbyclass.groupby static method)": [[30, "arkouda.groupbyclass.GroupBy.unregister_groupby_by_name"]], "update_hdf() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.update_hdf"]], "var() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.var"]], "historyretriever (class in arkouda.history)": [[31, "arkouda.history.HistoryRetriever"]], "notebookhistoryretriever (class in arkouda.history)": [[31, "arkouda.history.NotebookHistoryRetriever"]], "shellhistoryretriever (class in arkouda.history)": [[31, "arkouda.history.ShellHistoryRetriever"]], "arkouda.history": [[31, "module-arkouda.history"]], "retrieve() (arkouda.history.historyretriever method)": [[31, "arkouda.history.HistoryRetriever.retrieve"]], "retrieve() (arkouda.history.notebookhistoryretriever method)": [[31, "arkouda.history.NotebookHistoryRetriever.retrieve"]], "retrieve() (arkouda.history.shellhistoryretriever method)": [[31, "arkouda.history.ShellHistoryRetriever.retrieve"]], "and() (arkouda.groupby method)": [[32, "arkouda.GroupBy.AND"], [32, "id227"], [32, "id271"], [32, "id315"], [32, "id359"], [92, "arkouda.GroupBy.AND"]], "arkouda_supported_dtypes (in module arkouda)": [[32, "arkouda.ARKOUDA_SUPPORTED_DTYPES"]], "allsymbols (in module arkouda)": [[32, "arkouda.AllSymbols"]], "arrayview (class in arkouda)": [[32, "arkouda.ArrayView"], [88, "arkouda.ArrayView"]], "binops (arkouda.categorical attribute)": [[32, "arkouda.Categorical.BinOps"], [32, "id12"], [32, "id61"]], "binops (arkouda.strings attribute)": [[32, "arkouda.Strings.BinOps"], [32, "id405"], [32, "id473"], [32, "id541"]], "binops (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.BinOps"], [32, "id672"], [32, "id733"], [32, "id794"], [32, "id855"]], "bitvector (class in arkouda)": [[32, "arkouda.BitVector"]], "bitvectorizer() (in module arkouda)": [[32, "arkouda.BitVectorizer"]], "critical (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.CRITICAL"]], "cachedaccessor (class in arkouda)": [[32, "arkouda.CachedAccessor"]], "categorical (class in arkouda)": [[32, "arkouda.Categorical"], [32, "id2"], [32, "id51"], [89, "arkouda.Categorical"]], "debug (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.DEBUG"]], "dtypeobjects (in module arkouda)": [[32, "arkouda.DTypeObjects"]], "dtypes (in module arkouda)": [[32, "arkouda.DTypes"]], "dataframe (class in arkouda)": [[32, "arkouda.DataFrame"], [32, "id100"], [91, "arkouda.DataFrame"]], "datetime (class in arkouda)": [[32, "arkouda.Datetime"], [32, "id149"], [32, "id182"]], "datetimeaccessor (class in arkouda)": [[32, "arkouda.DatetimeAccessor"]], "diffaggregate (class in arkouda)": [[32, "arkouda.DiffAggregate"]], "error (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.ERROR"]], "errormode (class in arkouda)": [[32, "arkouda.ErrorMode"]], "fields (class in arkouda)": [[32, "arkouda.Fields"]], "groupby_reduction_types (in module arkouda)": [[32, "arkouda.GROUPBY_REDUCTION_TYPES"]], "generator (class in arkouda)": [[32, "arkouda.Generator"]], "groupby (class in arkouda)": [[32, "arkouda.GroupBy"], [32, "id216"], [32, "id260"], [32, "id304"], [32, "id348"], [92, "arkouda.GroupBy"]], "groupby() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.GroupBy"], [32, "id109"], [32, "arkouda.DataFrame.groupby"], [32, "id123"]], "info (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.INFO"]], "ipv4 (class in arkouda)": [[32, "arkouda.IPv4"]], "index (class in arkouda)": [[32, "arkouda.Index"], [85, "arkouda.Index"]], "loglevel (class in arkouda)": [[32, "arkouda.LogLevel"]], "multiindex (class in arkouda)": [[32, "arkouda.MultiIndex"]], "or() (arkouda.groupby method)": [[32, "arkouda.GroupBy.OR"], [32, "id228"], [32, "id272"], [32, "id316"], [32, "id360"], [92, "arkouda.GroupBy.OR"]], "opeqops (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.OpEqOps"], [32, "id673"], [32, "id734"], [32, "id795"], [32, "id856"]], "power_divergenceresult (class in arkouda)": [[32, "arkouda.Power_divergenceResult"]], "properties (class in arkouda)": [[32, "arkouda.Properties"]], "reductions (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.Reductions"], [32, "id225"], [32, "id269"], [32, "id313"], [32, "id357"]], "registerablepieces (arkouda.categorical attribute)": [[32, "arkouda.Categorical.RegisterablePieces"], [32, "id13"], [32, "id62"]], "registeredsymbols (in module arkouda)": [[32, "arkouda.RegisteredSymbols"]], "registrationerror": [[32, "arkouda.RegistrationError"], [32, "id394"], [32, "id395"], [32, "id396"], [42, "arkouda.pdarrayclass.RegistrationError"]], "requiredpieces (arkouda.categorical attribute)": [[32, "arkouda.Categorical.RequiredPieces"], [32, "id14"], [32, "id63"]], "row (class in arkouda)": [[32, "arkouda.Row"]], "scalardtypes (in module arkouda)": [[32, "arkouda.ScalarDTypes"]], "series (class in arkouda)": [[32, "arkouda.Series"], [97, "arkouda.Series"]], "stringaccessor (class in arkouda)": [[32, "arkouda.StringAccessor"]], "strings (class in arkouda)": [[32, "arkouda.Strings"], [32, "id397"], [32, "id465"], [32, "id533"]], "timedelta (class in arkouda)": [[32, "arkouda.Timedelta"], [32, "id601"]], "warn (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.WARN"]], "xor() (arkouda.groupby method)": [[32, "arkouda.GroupBy.XOR"], [32, "id229"], [32, "id273"], [32, "id317"], [32, "id361"], [92, "arkouda.GroupBy.XOR"]], "abs() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.abs"], [32, "id615"]], "abs() (in module arkouda)": [[32, "arkouda.abs"], [87, "arkouda.abs"]], "add() (arkouda.series method)": [[32, "arkouda.Series.add"]], "aggregate() (arkouda.groupby method)": [[32, "arkouda.GroupBy.aggregate"], [32, "id230"], [32, "id274"], [32, "id318"], [32, "id362"], [92, "arkouda.GroupBy.aggregate"]], "akabs() (in module arkouda)": [[32, "arkouda.akabs"]], "akbool (in module arkouda)": [[32, "arkouda.akbool"]], "akcast() (in module arkouda)": [[32, "arkouda.akcast"], [32, "id623"]], "akfloat64 (in module arkouda)": [[32, "arkouda.akfloat64"], [32, "id624"]], "akint64 (in module arkouda)": [[32, "arkouda.akint64"], [32, "id625"]], "akuint64 (in module arkouda)": [[32, "arkouda.akuint64"], [32, "id626"]], "align() (in module arkouda)": [[32, "arkouda.align"]], "all() (arkouda.groupby method)": [[32, "arkouda.GroupBy.all"], [32, "id231"], [32, "id275"], [32, "id319"], [32, "id363"], [92, "arkouda.GroupBy.all"]], "all() (arkouda.pdarray method)": [[32, "arkouda.pdarray.all"], [32, "id675"], [32, "id736"], [32, "id797"], [32, "id858"], [93, "arkouda.pdarray.all"]], "all() (in module arkouda)": [[32, "arkouda.all"], [87, "arkouda.all"]], "all_scalars (in module arkouda)": [[32, "arkouda.all_scalars"]], "any() (arkouda.groupby method)": [[32, "arkouda.GroupBy.any"], [32, "id232"], [32, "id276"], [32, "id320"], [32, "id364"], [92, "arkouda.GroupBy.any"]], "any() (arkouda.pdarray method)": [[32, "arkouda.pdarray.any"], [32, "id676"], [32, "id737"], [32, "id798"], [32, "id859"], [93, "arkouda.pdarray.any"]], "any() (in module arkouda)": [[32, "arkouda.any"], [87, "arkouda.any"]], "append() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.append"], [32, "id110"]], "apply_permutation() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.apply_permutation"], [32, "id111"]], "arange() (in module arkouda)": [[32, "arkouda.arange"], [32, "id627"], [32, "id628"], [32, "id629"], [32, "id630"], [90, "arkouda.arange"]], "arccos() (in module arkouda)": [[32, "arkouda.arccos"]], "arccosh() (in module arkouda)": [[32, "arkouda.arccosh"]], "arcsin() (in module arkouda)": [[32, "arkouda.arcsin"]], "arcsinh() (in module arkouda)": [[32, "arkouda.arcsinh"]], "arctan() (in module arkouda)": [[32, "arkouda.arctan"]], "arctan2() (in module arkouda)": [[32, "arkouda.arctan2"]], "arctanh() (in module arkouda)": [[32, "arkouda.arctanh"]], "argmax() (arkouda.groupby method)": [[32, "arkouda.GroupBy.argmax"], [32, "id233"], [32, "id277"], [32, "id321"], [32, "id365"], [92, "arkouda.GroupBy.argmax"]], "argmax() (arkouda.pdarray method)": [[32, "arkouda.pdarray.argmax"], [32, "id677"], [32, "id738"], [32, "id799"], [32, "id860"], [93, "arkouda.pdarray.argmax"]], "argmax() (in module arkouda)": [[32, "arkouda.argmax"], [87, "arkouda.argmax"]], "argmaxk() (arkouda.pdarray method)": [[32, "arkouda.pdarray.argmaxk"], [32, "id678"], [32, "id739"], [32, "id800"], [32, "id861"], [93, "arkouda.pdarray.argmaxk"]], "argmaxk() (in module arkouda)": [[32, "arkouda.argmaxk"], [87, "arkouda.argmaxk"]], "argmin() (arkouda.groupby method)": [[32, "arkouda.GroupBy.argmin"], [32, "id234"], [32, "id278"], [32, "id322"], [32, "id366"], [92, "arkouda.GroupBy.argmin"]], "argmin() (arkouda.pdarray method)": [[32, "arkouda.pdarray.argmin"], [32, "id679"], [32, "id740"], [32, "id801"], [32, "id862"], [93, "arkouda.pdarray.argmin"]], "argmin() (in module arkouda)": [[32, "arkouda.argmin"], [87, "arkouda.argmin"]], "argmink() (arkouda.pdarray method)": [[32, "arkouda.pdarray.argmink"], [32, "id680"], [32, "id741"], [32, "id802"], [32, "id863"], [93, "arkouda.pdarray.argmink"]], "argmink() (in module arkouda)": [[32, "arkouda.argmink"], [87, "arkouda.argmink"]], "argsort() (arkouda.categorical method)": [[32, "arkouda.Categorical.argsort"], [32, "id19"], [32, "id68"]], "argsort() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.argsort"], [32, "id112"]], "argsort() (arkouda.index method)": [[32, "arkouda.Index.argsort"]], "argsort() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.argsort"]], "argsort() (in module arkouda)": [[32, "arkouda.argsort"], [32, "id631"], [32, "id632"], [86, "arkouda.argsort"]], "arkouda": [[32, "module-arkouda"]], "array() (in module arkouda)": [[32, "arkouda.array"], [32, "id633"], [32, "id634"], [84, "arkouda.array"]], "astype() (arkouda.strings method)": [[32, "arkouda.Strings.astype"], [32, "id407"], [32, "id475"], [32, "id543"]], "astype() (arkouda.pdarray method)": [[32, "arkouda.pdarray.astype"], [32, "id681"], [32, "id742"], [32, "id803"], [32, "id864"]], "at (arkouda.series property)": [[32, "arkouda.Series.at"]], "attach() (arkouda.categorical static method)": [[32, "arkouda.Categorical.attach"], [32, "id20"], [32, "id69"]], "attach() (arkouda.dataframe static method)": [[32, "arkouda.DataFrame.attach"], [32, "id113"]], "attach() (arkouda.groupby static method)": [[32, "arkouda.GroupBy.attach"], [32, "id235"], [32, "id279"], [32, "id323"], [32, "id367"], [92, "arkouda.GroupBy.attach"]], "attach() (arkouda.series static method)": [[32, "arkouda.Series.attach"]], "attach() (arkouda.strings static method)": [[32, "arkouda.Strings.attach"], [32, "id408"], [32, "id476"], [32, "id544"]], "attach() (arkouda.pdarray static method)": [[32, "arkouda.pdarray.attach"], [32, "id682"], [32, "id743"], [32, "id804"], [32, "id865"]], "attach() (in module arkouda)": [[32, "arkouda.attach"]], "attach_all() (in module arkouda)": [[32, "arkouda.attach_all"]], "attach_pdarray() (in module arkouda)": [[32, "arkouda.attach_pdarray"]], "base (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.base"], [88, "arkouda.ArrayView.base"]], "bigint (in module arkouda)": [[32, "arkouda.bigint"], [32, "id635"]], "bigint_from_uint_arrays() (in module arkouda)": [[32, "arkouda.bigint_from_uint_arrays"]], "bigint_to_uint_arrays() (arkouda.pdarray method)": [[32, "arkouda.pdarray.bigint_to_uint_arrays"], [32, "id683"], [32, "id744"], [32, "id805"], [32, "id866"]], "bittype (in module arkouda)": [[32, "arkouda.bitType"], [32, "id636"]], "bool (in module arkouda)": [[32, "arkouda.bool"]], "bool_scalars (in module arkouda)": [[32, "arkouda.bool_scalars"]], "broadcast() (arkouda.groupby method)": [[32, "arkouda.GroupBy.broadcast"], [32, "id236"], [32, "id280"], [32, "id324"], [32, "id368"], [92, "arkouda.GroupBy.broadcast"]], "broadcast() (in module arkouda)": [[32, "arkouda.broadcast"], [32, "id637"], [32, "id638"]], "broadcast_dims() (in module arkouda)": [[32, "arkouda.broadcast_dims"]], "broadcast_to_shape() (in module arkouda)": [[32, "arkouda.broadcast_to_shape"]], "build_from_components() (arkouda.groupby static method)": [[32, "arkouda.GroupBy.build_from_components"], [32, "id237"], [32, "id281"], [32, "id325"], [32, "id369"], [92, "arkouda.GroupBy.build_from_components"]], "cached_regex_patterns() (arkouda.strings method)": [[32, "arkouda.Strings.cached_regex_patterns"], [32, "id409"], [32, "id477"], [32, "id545"]], "capitalize() (arkouda.strings method)": [[32, "arkouda.Strings.capitalize"], [32, "id410"], [32, "id478"], [32, "id546"]], "cast() (in module arkouda)": [[32, "arkouda.cast"], [32, "id639"], [95, "arkouda.cast"]], "categories (arkouda.categorical attribute)": [[32, "arkouda.Categorical.categories"], [32, "id3"], [32, "id52"], [89, "arkouda.Categorical.categories"]], "ceil() (in module arkouda)": [[32, "arkouda.ceil"]], "check_np_dtype() (in module arkouda)": [[32, "arkouda.check_np_dtype"]], "chisquare() (in module arkouda)": [[32, "arkouda.chisquare"]], "clear() (in module arkouda)": [[32, "arkouda.clear"]], "clz() (arkouda.pdarray method)": [[32, "arkouda.pdarray.clz"], [32, "id684"], [32, "id745"], [32, "id806"], [32, "id867"]], "clz() (in module arkouda)": [[32, "arkouda.clz"]], "coargsort() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.coargsort"], [32, "id114"]], "coargsort() (in module arkouda)": [[32, "arkouda.coargsort"], [32, "id640"], [32, "id641"], [86, "arkouda.coargsort"]], "codes (arkouda.categorical attribute)": [[32, "arkouda.Categorical.codes"], [32, "id4"], [32, "id53"], [89, "arkouda.Categorical.codes"]], "columns (arkouda.dataframe property)": [[32, "arkouda.DataFrame.columns"], [32, "id101"]], "complex128 (in module arkouda)": [[32, "arkouda.complex128"]], "complex64 (in module arkouda)": [[32, "arkouda.complex64"]], "components (arkouda.timedelta property)": [[32, "arkouda.Timedelta.components"], [32, "id602"]], "compute_join_size() (in module arkouda)": [[32, "arkouda.compute_join_size"]], "concat() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.concat"], [32, "id115"]], "concat() (arkouda.index method)": [[32, "arkouda.Index.concat"]], "concat() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.concat"]], "concat() (arkouda.series static method)": [[32, "arkouda.Series.concat"]], "concatenate() (arkouda.categorical method)": [[32, "arkouda.Categorical.concatenate"], [32, "id21"], [32, "id70"]], "concatenate() (in module arkouda)": [[32, "arkouda.concatenate"], [32, "id642"], [90, "arkouda.concatenate"]], "conserves (arkouda.bitvector attribute)": [[32, "arkouda.BitVector.conserves"]], "contains() (arkouda.categorical method)": [[32, "arkouda.Categorical.contains"], [32, "id22"], [32, "id71"], [89, "arkouda.Categorical.contains"]], "contains() (arkouda.strings method)": [[32, "arkouda.Strings.contains"], [32, "id411"], [32, "id479"], [32, "id547"], [100, "arkouda.Strings.contains"]], "convert_if_categorical() (in module arkouda)": [[32, "arkouda.convert_if_categorical"]], "copy() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.copy"], [32, "id116"]], "corr() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.corr"], [32, "id117"]], "corr() (arkouda.pdarray method)": [[32, "arkouda.pdarray.corr"], [32, "id685"], [32, "id746"], [32, "id807"], [32, "id868"]], "corr() (in module arkouda)": [[32, "arkouda.corr"]], "cos() (in module arkouda)": [[32, "arkouda.cos"], [87, "arkouda.cos"]], "cosh() (in module arkouda)": [[32, "arkouda.cosh"]], "count() (arkouda.groupby method)": [[32, "arkouda.GroupBy.count"], [32, "id238"], [32, "id282"], [32, "id326"], [32, "id370"], [92, "arkouda.GroupBy.count"]], "cov() (arkouda.pdarray method)": [[32, "arkouda.pdarray.cov"], [32, "id686"], [32, "id747"], [32, "id808"], [32, "id869"]], "cov() (in module arkouda)": [[32, "arkouda.cov"]], "create_pdarray() (in module arkouda)": [[32, "arkouda.create_pdarray"], [32, "id643"], [32, "id644"]], "ctz() (arkouda.pdarray method)": [[32, "arkouda.pdarray.ctz"], [32, "id687"], [32, "id748"], [32, "id809"], [32, "id870"]], "ctz() (in module arkouda)": [[32, "arkouda.ctz"]], "cumprod() (in module arkouda)": [[32, "arkouda.cumprod"], [87, "arkouda.cumprod"]], "cumsum() (in module arkouda)": [[32, "arkouda.cumsum"], [87, "arkouda.cumsum"]], "date (arkouda.datetime property)": [[32, "arkouda.Datetime.date"], [32, "id150"], [32, "id183"]], "date_operators() (in module arkouda)": [[32, "arkouda.date_operators"]], "date_range() (in module arkouda)": [[32, "arkouda.date_range"], [32, "id645"]], "day (arkouda.datetime property)": [[32, "arkouda.Datetime.day"], [32, "id151"], [32, "id184"]], "day_of_week (arkouda.datetime property)": [[32, "arkouda.Datetime.day_of_week"], [32, "id152"], [32, "id185"]], "day_of_year (arkouda.datetime property)": [[32, "arkouda.Datetime.day_of_year"], [32, "id153"], [32, "id186"]], "dayofweek (arkouda.datetime property)": [[32, "arkouda.Datetime.dayofweek"], [32, "id154"], [32, "id187"]], "dayofyear (arkouda.datetime property)": [[32, "arkouda.Datetime.dayofyear"], [32, "id155"], [32, "id188"]], "days (arkouda.timedelta property)": [[32, "arkouda.Timedelta.days"], [32, "id603"]], "decode() (arkouda.strings method)": [[32, "arkouda.Strings.decode"], [32, "id412"], [32, "id480"], [32, "id548"]], "deg2rad() (in module arkouda)": [[32, "arkouda.deg2rad"]], "diff() (arkouda.series method)": [[32, "arkouda.Series.diff"]], "disableverbose() (in module arkouda)": [[32, "arkouda.disableVerbose"]], "divmod() (in module arkouda)": [[32, "arkouda.divmod"]], "dot() (in module arkouda)": [[32, "arkouda.dot"]], "drop() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.drop"], [32, "id118"]], "drop_duplicates() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.drop_duplicates"], [32, "id119"]], "dropna (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.dropna"], [32, "id224"], [32, "id268"], [32, "id312"], [32, "id356"], [92, "arkouda.GroupBy.dropna"]], "dt (arkouda.series attribute)": [[32, "arkouda.Series.dt"]], "dtype (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.dtype"], [88, "arkouda.ArrayView.dtype"]], "dtype (arkouda.categorical attribute)": [[32, "arkouda.Categorical.dtype"], [32, "id15"], [32, "id64"]], "dtype (arkouda.strings attribute)": [[32, "arkouda.Strings.dtype"], [32, "id403"], [32, "id471"], [32, "id539"]], "dtype (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.dtype"], [32, "id665"], [32, "id726"], [32, "id787"], [32, "id848"], [95, "arkouda.pdarray.dtype"]], "dtype() (in module arkouda)": [[32, "arkouda.dtype"]], "dtypes (arkouda.dataframe property)": [[32, "arkouda.DataFrame.dtypes"], [32, "id102"]], "empty (arkouda.dataframe property)": [[32, "arkouda.DataFrame.empty"], [32, "id103"]], "enableverbose() (in module arkouda)": [[32, "arkouda.enableVerbose"]], "encode() (arkouda.strings method)": [[32, "arkouda.Strings.encode"], [32, "id413"], [32, "id481"], [32, "id549"]], "endswith() (arkouda.categorical method)": [[32, "arkouda.Categorical.endswith"], [32, "id23"], [32, "id72"], [89, "arkouda.Categorical.endswith"]], "endswith() (arkouda.strings method)": [[32, "arkouda.Strings.endswith"], [32, "id414"], [32, "id482"], [32, "id550"], [100, "arkouda.Strings.endswith"]], "entry (arkouda.strings attribute)": [[32, "arkouda.Strings.entry"], [32, "id398"], [32, "id466"], [32, "id534"]], "exp() (in module arkouda)": [[32, "arkouda.exp"], [87, "arkouda.exp"]], "expm1() (in module arkouda)": [[32, "arkouda.expm1"]], "export() (in module arkouda)": [[32, "arkouda.export"], [84, "arkouda.export"]], "export_uint() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.export_uint"]], "factory() (arkouda.index static method)": [[32, "arkouda.Index.factory"]], "fill() (arkouda.pdarray method)": [[32, "arkouda.pdarray.fill"], [32, "id688"], [32, "id749"], [32, "id810"], [32, "id871"]], "filter_by_range() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.filter_by_range"], [32, "id120"]], "find() (in module arkouda)": [[32, "arkouda.find"]], "find_locations() (arkouda.strings method)": [[32, "arkouda.Strings.find_locations"], [32, "id415"], [32, "id483"], [32, "id551"], [100, "arkouda.Strings.find_locations"]], "findall() (arkouda.strings method)": [[32, "arkouda.Strings.findall"], [32, "id416"], [32, "id484"], [32, "id552"], [100, "arkouda.Strings.findall"]], "first() (arkouda.groupby method)": [[32, "arkouda.GroupBy.first"], [32, "id239"], [32, "id283"], [32, "id327"], [32, "id371"], [92, "arkouda.GroupBy.first"]], "flatten() (arkouda.strings method)": [[32, "arkouda.Strings.flatten"], [32, "id417"], [32, "id485"], [32, "id553"], [100, "arkouda.Strings.flatten"]], "float32 (in module arkouda)": [[32, "arkouda.float32"]], "float64 (in module arkouda)": [[32, "arkouda.float64"]], "float_scalars (in module arkouda)": [[32, "arkouda.float_scalars"]], "floor() (in module arkouda)": [[32, "arkouda.floor"]], "fmod() (in module arkouda)": [[32, "arkouda.fmod"]], "format() (arkouda.bitvector method)": [[32, "arkouda.BitVector.format"]], "format() (arkouda.fields method)": [[32, "arkouda.Fields.format"]], "format() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.format"]], "format_other() (arkouda.pdarray method)": [[32, "arkouda.pdarray.format_other"], [32, "id689"], [32, "id750"], [32, "id811"], [32, "id872"]], "from_codes() (arkouda.categorical class method)": [[32, "arkouda.Categorical.from_codes"], [32, "id24"], [32, "id73"], [89, "arkouda.Categorical.from_codes"]], "from_pandas() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.from_pandas"], [32, "id121"]], "from_parts() (arkouda.strings static method)": [[32, "arkouda.Strings.from_parts"], [32, "id418"], [32, "id486"], [32, "id554"]], "from_return_msg() (arkouda.bitvector class method)": [[32, "arkouda.BitVector.from_return_msg"]], "from_return_msg() (arkouda.categorical class method)": [[32, "arkouda.Categorical.from_return_msg"], [32, "id25"], [32, "id74"]], "from_return_msg() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.from_return_msg"], [32, "id122"]], "from_return_msg() (arkouda.groupby static method)": [[32, "arkouda.GroupBy.from_return_msg"], [32, "id240"], [32, "id284"], [32, "id328"], [32, "id372"]], "from_return_msg() (arkouda.index class method)": [[32, "arkouda.Index.from_return_msg"]], "from_return_msg() (arkouda.series class method)": [[32, "arkouda.Series.from_return_msg"]], "from_return_msg() (arkouda.strings static method)": [[32, "arkouda.Strings.from_return_msg"], [32, "id419"], [32, "id487"], [32, "id555"]], "from_series() (in module arkouda)": [[32, "arkouda.from_series"], [32, "id646"]], "full() (in module arkouda)": [[32, "arkouda.full"], [32, "id647"]], "full_like() (in module arkouda)": [[32, "arkouda.full_like"]], "fullmatch() (arkouda.strings method)": [[32, "arkouda.Strings.fullmatch"], [32, "id420"], [32, "id488"], [32, "id556"], [100, "arkouda.Strings.fullmatch"]], "gb (arkouda.diffaggregate attribute)": [[32, "arkouda.DiffAggregate.gb"]], "gen_ranges() (in module arkouda)": [[32, "arkouda.gen_ranges"]], "generic_concat() (in module arkouda)": [[32, "arkouda.generic_concat"]], "get_byteorder() (in module arkouda)": [[32, "arkouda.get_byteorder"]], "get_bytes() (arkouda.strings method)": [[32, "arkouda.Strings.get_bytes"], [32, "id421"], [32, "id489"], [32, "id557"]], "get_callback() (in module arkouda)": [[32, "arkouda.get_callback"]], "get_columns() (in module arkouda)": [[32, "arkouda.get_columns"]], "get_datasets() (in module arkouda)": [[32, "arkouda.get_datasets"], [84, "arkouda.get_datasets"]], "get_filetype() (in module arkouda)": [[32, "arkouda.get_filetype"]], "get_lengths() (arkouda.strings method)": [[32, "arkouda.Strings.get_lengths"], [32, "id422"], [32, "id490"], [32, "id558"]], "get_null_indices() (in module arkouda)": [[32, "arkouda.get_null_indices"]], "get_offsets() (arkouda.strings method)": [[32, "arkouda.Strings.get_offsets"], [32, "id423"], [32, "id491"], [32, "id559"]], "get_prefixes() (arkouda.strings method)": [[32, "arkouda.Strings.get_prefixes"], [32, "id424"], [32, "id492"], [32, "id560"]], "get_server_byteorder() (in module arkouda)": [[32, "arkouda.get_server_byteorder"]], "get_suffixes() (arkouda.strings method)": [[32, "arkouda.Strings.get_suffixes"], [32, "id425"], [32, "id493"], [32, "id561"]], "group() (arkouda.categorical method)": [[32, "arkouda.Categorical.group"], [32, "id26"], [32, "id75"]], "group() (arkouda.strings method)": [[32, "arkouda.Strings.group"], [32, "id426"], [32, "id494"], [32, "id562"]], "has_repeat_labels() (arkouda.series method)": [[32, "arkouda.Series.has_repeat_labels"]], "hash() (arkouda.categorical method)": [[32, "arkouda.Categorical.hash"], [32, "id27"], [32, "id76"]], "hash() (arkouda.strings method)": [[32, "arkouda.Strings.hash"], [32, "id427"], [32, "id495"], [32, "id563"]], "hash() (in module arkouda)": [[32, "arkouda.hash"]], "head() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.head"], [32, "id124"]], "head() (arkouda.series method)": [[32, "arkouda.Series.head"]], "hist_all() (in module arkouda)": [[32, "arkouda.hist_all"]], "histogram() (in module arkouda)": [[32, "arkouda.histogram"], [32, "id648"], [93, "arkouda.histogram"]], "histogram2d() (in module arkouda)": [[32, "arkouda.histogram2d"]], "histogramdd() (in module arkouda)": [[32, "arkouda.histogramdd"]], "hour (arkouda.datetime property)": [[32, "arkouda.Datetime.hour"], [32, "id156"], [32, "id189"]], "iat (arkouda.series property)": [[32, "arkouda.Series.iat"]], "ignore (arkouda.errormode attribute)": [[32, "arkouda.ErrorMode.ignore"]], "iloc (arkouda.series property)": [[32, "arkouda.Series.iloc"]], "import_data() (in module arkouda)": [[32, "arkouda.import_data"], [84, "arkouda.import_data"]], "in1d() (arkouda.categorical method)": [[32, "arkouda.Categorical.in1d"], [32, "id28"], [32, "id77"]], "in1d() (in module arkouda)": [[32, "arkouda.in1d"], [32, "id649"], [32, "id651"], [98, "arkouda.in1d"]], "in1d_intervals() (in module arkouda)": [[32, "arkouda.in1d_intervals"]], "index (arkouda.dataframe property)": [[32, "arkouda.DataFrame.index"], [32, "id104"]], "index (arkouda.index property)": [[32, "arkouda.Index.index"]], "index (arkouda.multiindex property)": [[32, "arkouda.MultiIndex.index"]], "indexof1d() (in module arkouda)": [[32, "arkouda.indexof1d"]], "info (arkouda.dataframe property)": [[32, "arkouda.DataFrame.info"], [32, "id105"]], "info() (arkouda.categorical method)": [[32, "arkouda.Categorical.info"], [32, "id29"], [32, "id78"]], "info() (arkouda.strings method)": [[32, "arkouda.Strings.info"], [32, "id428"], [32, "id496"], [32, "id564"]], "info() (arkouda.pdarray method)": [[32, "arkouda.pdarray.info"], [32, "id690"], [32, "id751"], [32, "id812"], [32, "id873"]], "information() (in module arkouda)": [[32, "arkouda.information"]], "int16 (in module arkouda)": [[32, "arkouda.int16"]], "int32 (in module arkouda)": [[32, "arkouda.int32"]], "int64 (in module arkouda)": [[32, "arkouda.int64"], [32, "id653"]], "int8 (in module arkouda)": [[32, "arkouda.int8"]], "inttypes (in module arkouda)": [[32, "arkouda.intTypes"], [32, "id654"], [32, "id655"]], "int_scalars (in module arkouda)": [[32, "arkouda.int_scalars"], [32, "id656"]], "integers() (arkouda.generator method)": [[32, "arkouda.Generator.integers"]], "intersect() (in module arkouda)": [[32, "arkouda.intersect"]], "intersect1d() (in module arkouda)": [[32, "arkouda.intersect1d"], [98, "arkouda.intersect1d"]], "interval_lookup() (in module arkouda)": [[32, "arkouda.interval_lookup"]], "intx() (in module arkouda)": [[32, "arkouda.intx"]], "invert_permutation() (in module arkouda)": [[32, "arkouda.invert_permutation"]], "ip_address() (in module arkouda)": [[32, "arkouda.ip_address"]], "issupportedint() (in module arkouda)": [[32, "arkouda.isSupportedInt"], [32, "id657"]], "issupportednumber() (in module arkouda)": [[32, "arkouda.isSupportedNumber"]], "is_cosorted() (in module arkouda)": [[32, "arkouda.is_cosorted"]], "is_ipv4() (in module arkouda)": [[32, "arkouda.is_ipv4"]], "is_ipv6() (in module arkouda)": [[32, "arkouda.is_ipv6"]], "is_leap_year (arkouda.datetime property)": [[32, "arkouda.Datetime.is_leap_year"], [32, "id157"], [32, "id190"]], "is_registered() (arkouda.categorical method)": [[32, "arkouda.Categorical.is_registered"], [32, "id30"], [32, "id79"]], "is_registered() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.is_registered"], [32, "id125"]], "is_registered() (arkouda.datetime method)": [[32, "arkouda.Datetime.is_registered"], [32, "id176"], [32, "id209"]], "is_registered() (arkouda.groupby method)": [[32, "arkouda.GroupBy.is_registered"], [32, "id241"], [32, "id285"], [32, "id329"], [32, "id373"], [92, "arkouda.GroupBy.is_registered"]], "is_registered() (arkouda.index method)": [[32, "arkouda.Index.is_registered"]], "is_registered() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.is_registered"]], "is_registered() (arkouda.series method)": [[32, "arkouda.Series.is_registered"]], "is_registered() (arkouda.strings method)": [[32, "arkouda.Strings.is_registered"], [32, "id429"], [32, "id497"], [32, "id565"]], "is_registered() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.is_registered"], [32, "id616"]], "is_registered() (arkouda.pdarray method)": [[32, "arkouda.pdarray.is_registered"], [32, "id691"], [32, "id752"], [32, "id813"], [32, "id874"]], "is_registered() (in module arkouda)": [[32, "arkouda.is_registered"]], "is_sorted() (arkouda.pdarray method)": [[32, "arkouda.pdarray.is_sorted"], [32, "id692"], [32, "id753"], [32, "id814"], [32, "id875"], [93, "arkouda.pdarray.is_sorted"]], "is_sorted() (in module arkouda)": [[32, "arkouda.is_sorted"], [87, "arkouda.is_sorted"]], "is_unique (arkouda.index property)": [[32, "arkouda.Index.is_unique"]], "isalnum() (arkouda.strings method)": [[32, "arkouda.Strings.isalnum"], [32, "id430"], [32, "id498"], [32, "id566"]], "isalpha() (arkouda.strings method)": [[32, "arkouda.Strings.isalpha"], [32, "id431"], [32, "id499"], [32, "id567"]], "isdigit() (arkouda.strings method)": [[32, "arkouda.Strings.isdigit"], [32, "id432"], [32, "id500"], [32, "id568"]], "isempty() (arkouda.strings method)": [[32, "arkouda.Strings.isempty"], [32, "id433"], [32, "id501"], [32, "id569"]], "isfinite() (in module arkouda)": [[32, "arkouda.isfinite"]], "isin() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.isin"], [32, "id126"]], "isin() (arkouda.series method)": [[32, "arkouda.Series.isin"]], "isinf() (in module arkouda)": [[32, "arkouda.isinf"]], "islower() (arkouda.strings method)": [[32, "arkouda.Strings.islower"], [32, "id434"], [32, "id502"], [32, "id570"]], "isna() (arkouda.categorical method)": [[32, "arkouda.Categorical.isna"], [32, "id31"], [32, "id80"]], "isnan() (in module arkouda)": [[32, "arkouda.isnan"], [32, "id658"]], "isocalendar() (arkouda.datetime method)": [[32, "arkouda.Datetime.isocalendar"], [32, "id177"], [32, "id210"]], "isspace() (arkouda.strings method)": [[32, "arkouda.Strings.isspace"], [32, "id435"], [32, "id503"], [32, "id571"]], "istitle() (arkouda.strings method)": [[32, "arkouda.Strings.istitle"], [32, "id436"], [32, "id504"], [32, "id572"]], "isupper() (arkouda.strings method)": [[32, "arkouda.Strings.isupper"], [32, "id437"], [32, "id505"], [32, "id573"]], "itemsize (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.itemsize"], [88, "arkouda.ArrayView.itemsize"]], "itemsize (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.itemsize"], [32, "id669"], [32, "id730"], [32, "id791"], [32, "id852"], [95, "arkouda.pdarray.itemsize"]], "join_on_eq_with_dt() (in module arkouda)": [[32, "arkouda.join_on_eq_with_dt"]], "left_align() (in module arkouda)": [[32, "arkouda.left_align"]], "linspace() (in module arkouda)": [[32, "arkouda.linspace"], [90, "arkouda.linspace"]], "list_registry() (in module arkouda)": [[32, "arkouda.list_registry"]], "list_symbol_table() (in module arkouda)": [[32, "arkouda.list_symbol_table"]], "load() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.load"], [32, "id127"]], "load() (in module arkouda)": [[32, "arkouda.load"]], "load_all() (in module arkouda)": [[32, "arkouda.load_all"]], "loc (arkouda.series property)": [[32, "arkouda.Series.loc"]], "locate() (arkouda.series method)": [[32, "arkouda.Series.locate"]], "log() (in module arkouda)": [[32, "arkouda.log"], [87, "arkouda.log"]], "log10() (in module arkouda)": [[32, "arkouda.log10"]], "log1p() (in module arkouda)": [[32, "arkouda.log1p"]], "log2() (in module arkouda)": [[32, "arkouda.log2"]], "logger (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.logger"], [32, "id223"], [32, "id267"], [32, "id311"], [32, "id355"], [92, "arkouda.GroupBy.logger"]], "logger (arkouda.strings attribute)": [[32, "arkouda.Strings.logger"], [32, "id404"], [32, "id472"], [32, "id540"]], "lookup() (arkouda.index method)": [[32, "arkouda.Index.lookup"]], "lookup() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.lookup"]], "lookup() (in module arkouda)": [[32, "arkouda.lookup"]], "lower() (arkouda.strings method)": [[32, "arkouda.Strings.lower"], [32, "id438"], [32, "id506"], [32, "id574"]], "ls() (in module arkouda)": [[32, "arkouda.ls"]], "ls_csv() (in module arkouda)": [[32, "arkouda.ls_csv"]], "lstick() (arkouda.strings method)": [[32, "arkouda.Strings.lstick"], [32, "id439"], [32, "id507"], [32, "id575"], [100, "arkouda.Strings.lstick"]], "map() (arkouda.series method)": [[32, "arkouda.Series.map"]], "match() (arkouda.strings method)": [[32, "arkouda.Strings.match"], [32, "id440"], [32, "id508"], [32, "id576"], [100, "arkouda.Strings.match"]], "max() (arkouda.groupby method)": [[32, "arkouda.GroupBy.max"], [32, "id242"], [32, "id286"], [32, "id330"], [32, "id374"], [92, "arkouda.GroupBy.max"]], "max() (arkouda.pdarray method)": [[32, "arkouda.pdarray.max"], [32, "id693"], [32, "id754"], [32, "id815"], [32, "id876"], [93, "arkouda.pdarray.max"]], "max() (in module arkouda)": [[32, "arkouda.max"], [87, "arkouda.max"]], "max_bits (arkouda.pdarray property)": [[32, "arkouda.pdarray.max_bits"], [32, "id670"], [32, "id731"], [32, "id792"], [32, "id853"]], "maxk() (arkouda.pdarray method)": [[32, "arkouda.pdarray.maxk"], [32, "id694"], [32, "id755"], [32, "id816"], [32, "id877"], [93, "arkouda.pdarray.maxk"]], "maxk() (in module arkouda)": [[32, "arkouda.maxk"], [87, "arkouda.maxk"]], "mean() (arkouda.groupby method)": [[32, "arkouda.GroupBy.mean"], [32, "id243"], [32, "id287"], [32, "id331"], [32, "id375"], [92, "arkouda.GroupBy.mean"]], "mean() (arkouda.pdarray method)": [[32, "arkouda.pdarray.mean"], [32, "id695"], [32, "id756"], [32, "id817"], [32, "id878"], [93, "arkouda.pdarray.mean"]], "mean() (in module arkouda)": [[32, "arkouda.mean"], [87, "arkouda.mean"]], "median() (arkouda.groupby method)": [[32, "arkouda.GroupBy.median"], [32, "id244"], [32, "id288"], [32, "id332"], [32, "id376"], [92, "arkouda.GroupBy.median"]], "memory_usage() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.memory_usage"], [32, "id128"]], "memory_usage() (arkouda.index method)": [[32, "arkouda.Index.memory_usage"]], "memory_usage() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.memory_usage"]], "memory_usage() (arkouda.series method)": [[32, "arkouda.Series.memory_usage"]], "memory_usage_info() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.memory_usage_info"], [32, "id129"]], "merge() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.merge"], [32, "id130"]], "merge() (in module arkouda)": [[32, "arkouda.merge"]], "microsecond (arkouda.datetime property)": [[32, "arkouda.Datetime.microsecond"], [32, "id158"], [32, "id191"]], "microseconds (arkouda.timedelta property)": [[32, "arkouda.Timedelta.microseconds"], [32, "id604"]], "millisecond (arkouda.datetime property)": [[32, "arkouda.Datetime.millisecond"], [32, "id159"], [32, "id192"]], "min() (arkouda.groupby method)": [[32, "arkouda.GroupBy.min"], [32, "id245"], [32, "id289"], [32, "id333"], [32, "id377"], [92, "arkouda.GroupBy.min"]], "min() (arkouda.pdarray method)": [[32, "arkouda.pdarray.min"], [32, "id696"], [32, "id757"], [32, "id818"], [32, "id879"], [93, "arkouda.pdarray.min"]], "min() (in module arkouda)": [[32, "arkouda.min"], [87, "arkouda.min"]], "mink() (arkouda.pdarray method)": [[32, "arkouda.pdarray.mink"], [32, "id697"], [32, "id758"], [32, "id819"], [32, "id880"], [93, "arkouda.pdarray.mink"]], "mink() (in module arkouda)": [[32, "arkouda.mink"], [87, "arkouda.mink"]], "minute (arkouda.datetime property)": [[32, "arkouda.Datetime.minute"], [32, "id160"], [32, "id193"]], "mod() (in module arkouda)": [[32, "arkouda.mod"]], "mode() (arkouda.groupby method)": [[32, "arkouda.GroupBy.mode"], [32, "id246"], [32, "id290"], [32, "id334"], [32, "id378"], [92, "arkouda.GroupBy.mode"]], "month (arkouda.datetime property)": [[32, "arkouda.Datetime.month"], [32, "id161"], [32, "id194"]], "most_common() (arkouda.groupby method)": [[32, "arkouda.GroupBy.most_common"], [32, "id247"], [32, "id291"], [32, "id335"], [32, "id379"], [92, "arkouda.GroupBy.most_common"]], "name (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.name"], [32, "id664"], [32, "id725"], [32, "id786"], [32, "id847"], [95, "arkouda.pdarray.name"]], "nanosecond (arkouda.datetime property)": [[32, "arkouda.Datetime.nanosecond"], [32, "id162"], [32, "id195"]], "nanoseconds (arkouda.timedelta property)": [[32, "arkouda.Timedelta.nanoseconds"], [32, "id605"]], "nbytes (arkouda.categorical property)": [[32, "arkouda.Categorical.nbytes"], [32, "id11"], [32, "id60"]], "nbytes (arkouda.strings attribute)": [[32, "arkouda.Strings.nbytes"], [32, "id400"], [32, "id468"], [32, "id536"]], "nbytes (arkouda.pdarray property)": [[32, "arkouda.pdarray.nbytes"], [32, "id671"], [32, "id732"], [32, "id793"], [32, "id854"]], "ndim (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.ndim"], [88, "arkouda.ArrayView.ndim"]], "ndim (arkouda.categorical attribute)": [[32, "arkouda.Categorical.ndim"], [32, "id58"], [32, "id9"], [89, "arkouda.Categorical.ndim"]], "ndim (arkouda.strings attribute)": [[32, "arkouda.Strings.ndim"], [32, "id401"], [32, "id469"], [32, "id537"]], "ndim (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.ndim"], [32, "id667"], [32, "id728"], [32, "id789"], [32, "id850"], [95, "arkouda.pdarray.ndim"]], "ngroups (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.ngroups"], [32, "id221"], [32, "id265"], [32, "id309"], [32, "id353"], [92, "arkouda.GroupBy.ngroups"]], "nkeys (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.nkeys"], [32, "id217"], [32, "id261"], [32, "id305"], [32, "id349"], [92, "arkouda.GroupBy.nkeys"]], "nlevels (arkouda.categorical attribute)": [[32, "arkouda.Categorical.nlevels"], [32, "id57"], [32, "id8"], [89, "arkouda.Categorical.nlevels"]], "normalize() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.normalize"]], "numeric_scalars (in module arkouda)": [[32, "arkouda.numeric_scalars"]], "numpy_scalars (in module arkouda)": [[32, "arkouda.numpy_scalars"]], "nunique() (arkouda.groupby method)": [[32, "arkouda.GroupBy.nunique"], [32, "id248"], [32, "id292"], [32, "id336"], [32, "id380"], [92, "arkouda.GroupBy.nunique"]], "objtype (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.objType"]], "objtype (arkouda.categorical attribute)": [[32, "arkouda.Categorical.objType"], [32, "id16"], [32, "id65"]], "objtype (arkouda.dataframe attribute)": [[32, "arkouda.DataFrame.objType"], [32, "id108"]], "objtype (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.objType"], [32, "id226"], [32, "id270"], [32, "id314"], [32, "id358"]], "objtype (arkouda.index attribute)": [[32, "arkouda.Index.objType"]], "objtype (arkouda.multiindex attribute)": [[32, "arkouda.MultiIndex.objType"]], "objtype (arkouda.series attribute)": [[32, "arkouda.Series.objType"]], "objtype (arkouda.strings attribute)": [[32, "arkouda.Strings.objType"], [32, "id406"], [32, "id474"], [32, "id542"]], "objtype (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.objType"], [32, "id674"], [32, "id735"], [32, "id796"], [32, "id857"]], "ones() (in module arkouda)": [[32, "arkouda.ones"], [32, "id659"], [32, "id660"], [90, "arkouda.ones"]], "ones_like() (in module arkouda)": [[32, "arkouda.ones_like"], [90, "arkouda.ones_like"]], "opeq() (arkouda.bitvector method)": [[32, "arkouda.BitVector.opeq"]], "opeq() (arkouda.fields method)": [[32, "arkouda.Fields.opeq"]], "opeq() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.opeq"]], "opeq() (arkouda.pdarray method)": [[32, "arkouda.pdarray.opeq"], [32, "id698"], [32, "id759"], [32, "id820"], [32, "id881"]], "order (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.order"], [88, "arkouda.ArrayView.order"]], "parity() (arkouda.pdarray method)": [[32, "arkouda.pdarray.parity"], [32, "id699"], [32, "id760"], [32, "id821"], [32, "id882"]], "parity() (in module arkouda)": [[32, "arkouda.parity"]], "parse_hdf_categoricals() (arkouda.categorical static method)": [[32, "arkouda.Categorical.parse_hdf_categoricals"], [32, "id32"], [32, "id81"]], "pdarray (class in arkouda)": [[32, "arkouda.pdarray"], [32, "id663"], [32, "id724"], [32, "id785"], [32, "id846"], [95, "arkouda.pdarray"]], "pdconcat() (arkouda.series static method)": [[32, "arkouda.Series.pdconcat"]], "peel() (arkouda.strings method)": [[32, "arkouda.Strings.peel"], [32, "id441"], [32, "id509"], [32, "id577"], [100, "arkouda.Strings.peel"]], "permutation (arkouda.categorical attribute)": [[32, "arkouda.Categorical.permutation"], [32, "id0"], [32, "id17"], [32, "id5"], [32, "id54"], [32, "id66"], [89, "arkouda.Categorical.permutation"]], "permutation (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.permutation"], [32, "id219"], [32, "id263"], [32, "id307"], [32, "id351"], [92, "arkouda.GroupBy.permutation"]], "plot_dist() (in module arkouda)": [[32, "arkouda.plot_dist"]], "popcount() (arkouda.pdarray method)": [[32, "arkouda.pdarray.popcount"], [32, "id700"], [32, "id761"], [32, "id822"], [32, "id883"]], "popcount() (in module arkouda)": [[32, "arkouda.popcount"]], "power() (in module arkouda)": [[32, "arkouda.power"]], "power_divergence() (in module arkouda)": [[32, "arkouda.power_divergence"]], "pretty_print_info() (arkouda.categorical method)": [[32, "arkouda.Categorical.pretty_print_info"], [32, "id33"], [32, "id82"]], "pretty_print_info() (arkouda.strings method)": [[32, "arkouda.Strings.pretty_print_info"], [32, "id442"], [32, "id510"], [32, "id578"]], "pretty_print_info() (arkouda.pdarray method)": [[32, "arkouda.pdarray.pretty_print_info"], [32, "id701"], [32, "id762"], [32, "id823"], [32, "id884"]], "pretty_print_information() (in module arkouda)": [[32, "arkouda.pretty_print_information"]], "prod() (arkouda.groupby method)": [[32, "arkouda.GroupBy.prod"], [32, "id249"], [32, "id293"], [32, "id337"], [32, "id381"], [92, "arkouda.GroupBy.prod"]], "prod() (arkouda.pdarray method)": [[32, "arkouda.pdarray.prod"], [32, "id702"], [32, "id763"], [32, "id824"], [32, "id885"], [93, "arkouda.pdarray.prod"]], "prod() (in module arkouda)": [[32, "arkouda.prod"], [87, "arkouda.prod"]], "purge_cached_regex_patterns() (arkouda.strings method)": [[32, "arkouda.Strings.purge_cached_regex_patterns"], [32, "id443"], [32, "id511"], [32, "id579"]], "pvalue (arkouda.power_divergenceresult attribute)": [[32, "arkouda.Power_divergenceResult.pvalue"]], "rad2deg() (in module arkouda)": [[32, "arkouda.rad2deg"]], "randint() (in module arkouda)": [[32, "arkouda.randint"], [32, "id907"], [90, "arkouda.randint"]], "random() (arkouda.generator method)": [[32, "arkouda.Generator.random"]], "random_strings_lognormal() (in module arkouda)": [[32, "arkouda.random_strings_lognormal"]], "random_strings_uniform() (in module arkouda)": [[32, "arkouda.random_strings_uniform"]], "read() (in module arkouda)": [[32, "arkouda.read"], [84, "arkouda.read"]], "read_csv() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.read_csv"], [32, "id131"]], "read_csv() (in module arkouda)": [[32, "arkouda.read_csv"]], "read_hdf() (in module arkouda)": [[32, "arkouda.read_hdf"]], "read_parquet() (in module arkouda)": [[32, "arkouda.read_parquet"]], "read_tagged_data() (in module arkouda)": [[32, "arkouda.read_tagged_data"]], "receive() (in module arkouda)": [[32, "arkouda.receive"]], "receive_dataframe() (in module arkouda)": [[32, "arkouda.receive_dataframe"]], "register() (arkouda.bitvector method)": [[32, "arkouda.BitVector.register"]], "register() (arkouda.categorical method)": [[32, "arkouda.Categorical.register"], [32, "id34"], [32, "id83"]], "register() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.register"], [32, "id132"]], "register() (arkouda.datetime method)": [[32, "arkouda.Datetime.register"], [32, "id178"], [32, "id211"]], "register() (arkouda.groupby method)": [[32, "arkouda.GroupBy.register"], [32, "id250"], [32, "id294"], [32, "id338"], [32, "id382"], [92, "arkouda.GroupBy.register"]], "register() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.register"]], "register() (arkouda.index method)": [[32, "arkouda.Index.register"]], "register() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.register"]], "register() (arkouda.series method)": [[32, "arkouda.Series.register"]], "register() (arkouda.strings method)": [[32, "arkouda.Strings.register"], [32, "id444"], [32, "id512"], [32, "id580"]], "register() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.register"], [32, "id617"]], "register() (arkouda.pdarray method)": [[32, "arkouda.pdarray.register"], [32, "id703"], [32, "id764"], [32, "id825"], [32, "id886"]], "register_all() (in module arkouda)": [[32, "arkouda.register_all"]], "rename() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.rename"], [32, "id133"]], "reset_categories() (arkouda.categorical method)": [[32, "arkouda.Categorical.reset_categories"], [32, "id35"], [32, "id84"]], "reset_index() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.reset_index"], [32, "id134"]], "reshape() (arkouda.pdarray method)": [[32, "arkouda.pdarray.reshape"], [32, "id704"], [32, "id765"], [32, "id826"], [32, "id887"]], "resolve_scalar_dtype() (in module arkouda)": [[32, "arkouda.resolve_scalar_dtype"]], "restore() (in module arkouda)": [[32, "arkouda.restore"]], "return_validity (arkouda.errormode attribute)": [[32, "arkouda.ErrorMode.return_validity"]], "right_align() (in module arkouda)": [[32, "arkouda.right_align"]], "rotl() (arkouda.pdarray method)": [[32, "arkouda.pdarray.rotl"], [32, "id705"], [32, "id766"], [32, "id827"], [32, "id888"]], "rotl() (in module arkouda)": [[32, "arkouda.rotl"]], "rotr() (arkouda.pdarray method)": [[32, "arkouda.pdarray.rotr"], [32, "id706"], [32, "id767"], [32, "id828"], [32, "id889"]], "rotr() (in module arkouda)": [[32, "arkouda.rotr"]], "round() (in module arkouda)": [[32, "arkouda.round"]], "rpeel() (arkouda.strings method)": [[32, "arkouda.Strings.rpeel"], [32, "id445"], [32, "id513"], [32, "id581"], [100, "arkouda.Strings.rpeel"]], "sample() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.sample"], [32, "id135"]], "save() (arkouda.categorical method)": [[32, "arkouda.Categorical.save"], [32, "id36"], [32, "id85"]], "save() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.save"], [32, "id136"]], "save() (arkouda.index method)": [[32, "arkouda.Index.save"]], "save() (arkouda.strings method)": [[32, "arkouda.Strings.save"], [32, "id446"], [32, "id514"], [32, "id582"]], "save() (arkouda.pdarray method)": [[32, "arkouda.pdarray.save"], [32, "id707"], [32, "id768"], [32, "id829"], [32, "id890"]], "save_all() (in module arkouda)": [[32, "arkouda.save_all"]], "search() (arkouda.strings method)": [[32, "arkouda.Strings.search"], [32, "id447"], [32, "id515"], [32, "id583"], [100, "arkouda.Strings.search"]], "search_intervals() (in module arkouda)": [[32, "arkouda.search_intervals"]], "second (arkouda.datetime property)": [[32, "arkouda.Datetime.second"], [32, "id163"], [32, "id196"]], "seconds (arkouda.timedelta property)": [[32, "arkouda.Timedelta.seconds"], [32, "id606"]], "segments (arkouda.categorical attribute)": [[32, "arkouda.Categorical.segments"], [32, "id1"], [32, "id18"], [32, "id55"], [32, "id6"], [32, "id67"], [89, "arkouda.Categorical.segments"]], "segments (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.segments"], [32, "id222"], [32, "id266"], [32, "id310"], [32, "id354"], [92, "arkouda.GroupBy.segments"]], "set_categories() (arkouda.categorical method)": [[32, "arkouda.Categorical.set_categories"], [32, "id37"], [32, "id86"]], "set_dtype() (arkouda.index method)": [[32, "arkouda.Index.set_dtype"]], "set_dtype() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.set_dtype"]], "setdiff1d() (in module arkouda)": [[32, "arkouda.setdiff1d"], [98, "arkouda.setdiff1d"]], "setxor1d() (in module arkouda)": [[32, "arkouda.setxor1d"], [98, "arkouda.setxor1d"]], "shape (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.shape"], [88, "arkouda.ArrayView.shape"]], "shape (arkouda.categorical attribute)": [[32, "arkouda.Categorical.shape"], [32, "id10"], [32, "id59"], [89, "arkouda.Categorical.shape"]], "shape (arkouda.dataframe property)": [[32, "arkouda.DataFrame.shape"], [32, "id106"]], "shape (arkouda.index property)": [[32, "arkouda.Index.shape"]], "shape (arkouda.series property)": [[32, "arkouda.Series.shape"]], "shape (arkouda.strings attribute)": [[32, "arkouda.Strings.shape"], [32, "id402"], [32, "id470"], [32, "id538"]], "shape (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.shape"], [32, "id668"], [32, "id729"], [32, "id790"], [32, "id851"], [95, "arkouda.pdarray.shape"]], "sign() (in module arkouda)": [[32, "arkouda.sign"]], "sin() (in module arkouda)": [[32, "arkouda.sin"], [87, "arkouda.sin"]], "sinh() (in module arkouda)": [[32, "arkouda.sinh"]], "size (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.size"], [88, "arkouda.ArrayView.size"]], "size (arkouda.categorical attribute)": [[32, "arkouda.Categorical.size"], [32, "id56"], [32, "id7"], [89, "arkouda.Categorical.size"]], "size (arkouda.dataframe property)": [[32, "arkouda.DataFrame.size"], [32, "id107"]], "size (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.size"], [32, "id218"], [32, "id262"], [32, "id306"], [32, "id350"], [92, "arkouda.GroupBy.size"]], "size (arkouda.strings attribute)": [[32, "arkouda.Strings.size"], [32, "id399"], [32, "id467"], [32, "id535"]], "size (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.size"], [32, "id666"], [32, "id727"], [32, "id788"], [32, "id849"], [95, "arkouda.pdarray.size"]], "size() (arkouda.groupby method)": [[32, "id215"], [32, "id251"], [32, "id295"], [32, "id339"], [32, "id383"], [92, "id0"]], "skew() (in module arkouda)": [[32, "arkouda.skew"]], "slice_bits() (arkouda.pdarray method)": [[32, "arkouda.pdarray.slice_bits"], [32, "id708"], [32, "id769"], [32, "id830"], [32, "id891"]], "snapshot() (in module arkouda)": [[32, "arkouda.snapshot"]], "sort() (arkouda.categorical method)": [[32, "arkouda.Categorical.sort"], [32, "id38"], [32, "id87"]], "sort() (in module arkouda)": [[32, "arkouda.sort"]], "sort_index() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.sort_index"], [32, "id137"]], "sort_index() (arkouda.series method)": [[32, "arkouda.Series.sort_index"]], "sort_values() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.sort_values"], [32, "id138"]], "sort_values() (arkouda.series method)": [[32, "arkouda.Series.sort_values"]], "special_objtype (arkouda.bitvector attribute)": [[32, "arkouda.BitVector.special_objType"]], "special_objtype (arkouda.datetime attribute)": [[32, "arkouda.Datetime.special_objType"], [32, "id168"], [32, "id201"]], "special_objtype (arkouda.ipv4 attribute)": [[32, "arkouda.IPv4.special_objType"]], "special_objtype (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.special_objType"], [32, "id607"]], "split() (arkouda.strings method)": [[32, "arkouda.Strings.split"], [32, "id448"], [32, "id516"], [32, "id584"], [100, "arkouda.Strings.split"]], "sqrt() (in module arkouda)": [[32, "arkouda.sqrt"]], "square() (in module arkouda)": [[32, "arkouda.square"]], "standard_normal() (arkouda.generator method)": [[32, "arkouda.Generator.standard_normal"]], "standard_normal() (in module arkouda)": [[32, "arkouda.standard_normal"], [32, "id908"]], "standardize_categories() (arkouda.categorical class method)": [[32, "arkouda.Categorical.standardize_categories"], [32, "id39"], [32, "id88"]], "startswith() (arkouda.categorical method)": [[32, "arkouda.Categorical.startswith"], [32, "id40"], [32, "id89"], [89, "arkouda.Categorical.startswith"]], "startswith() (arkouda.strings method)": [[32, "arkouda.Strings.startswith"], [32, "id449"], [32, "id517"], [32, "id585"], [100, "arkouda.Strings.startswith"]], "statistic (arkouda.power_divergenceresult attribute)": [[32, "arkouda.Power_divergenceResult.statistic"]], "std() (arkouda.groupby method)": [[32, "arkouda.GroupBy.std"], [32, "id252"], [32, "id296"], [32, "id340"], [32, "id384"], [92, "arkouda.GroupBy.std"]], "std() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.std"], [32, "id618"]], "std() (arkouda.pdarray method)": [[32, "arkouda.pdarray.std"], [32, "id709"], [32, "id770"], [32, "id831"], [32, "id892"], [93, "arkouda.pdarray.std"]], "std() (in module arkouda)": [[32, "arkouda.std"], [87, "arkouda.std"]], "stick() (arkouda.strings method)": [[32, "arkouda.Strings.stick"], [32, "id450"], [32, "id518"], [32, "id586"], [100, "arkouda.Strings.stick"]], "str_ (in module arkouda)": [[32, "arkouda.str_"]], "str_acc (arkouda.series attribute)": [[32, "arkouda.Series.str_acc"]], "str_scalars (in module arkouda)": [[32, "arkouda.str_scalars"]], "strict (arkouda.errormode attribute)": [[32, "arkouda.ErrorMode.strict"]], "string_operators() (in module arkouda)": [[32, "arkouda.string_operators"]], "strip() (arkouda.strings method)": [[32, "arkouda.Strings.strip"], [32, "id451"], [32, "id519"], [32, "id587"]], "sub() (arkouda.strings method)": [[32, "arkouda.Strings.sub"], [32, "id452"], [32, "id520"], [32, "id588"], [100, "arkouda.Strings.sub"]], "subn() (arkouda.strings method)": [[32, "arkouda.Strings.subn"], [32, "id453"], [32, "id521"], [32, "id589"], [100, "arkouda.Strings.subn"]], "sum() (arkouda.datetime method)": [[32, "arkouda.Datetime.sum"], [32, "id179"], [32, "id212"]], "sum() (arkouda.groupby method)": [[32, "arkouda.GroupBy.sum"], [32, "id253"], [32, "id297"], [32, "id341"], [32, "id385"], [92, "arkouda.GroupBy.sum"]], "sum() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.sum"], [32, "id619"]], "sum() (arkouda.pdarray method)": [[32, "arkouda.pdarray.sum"], [32, "id710"], [32, "id771"], [32, "id832"], [32, "id893"], [93, "arkouda.pdarray.sum"]], "sum() (in module arkouda)": [[32, "arkouda.sum"], [87, "arkouda.sum"]], "supported_opeq (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_opeq"], [32, "id169"], [32, "id202"]], "supported_opeq (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_opeq"], [32, "id608"]], "supported_with_datetime (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_datetime"], [32, "id170"], [32, "id203"]], "supported_with_datetime (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_datetime"], [32, "id609"]], "supported_with_pdarray (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_pdarray"], [32, "id171"], [32, "id204"]], "supported_with_pdarray (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_pdarray"], [32, "id610"]], "supported_with_r_datetime (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_r_datetime"], [32, "id172"], [32, "id205"]], "supported_with_r_datetime (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_r_datetime"], [32, "id611"]], "supported_with_r_pdarray (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_r_pdarray"], [32, "id173"], [32, "id206"]], "supported_with_r_pdarray (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_r_pdarray"], [32, "id612"]], "supported_with_r_timedelta (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_r_timedelta"], [32, "id174"], [32, "id207"]], "supported_with_r_timedelta (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_r_timedelta"], [32, "id613"]], "supported_with_timedelta (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_timedelta"], [32, "id175"], [32, "id208"]], "supported_with_timedelta (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_timedelta"], [32, "id614"]], "tail() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.tail"], [32, "id139"]], "tail() (arkouda.series method)": [[32, "arkouda.Series.tail"]], "tan() (in module arkouda)": [[32, "arkouda.tan"]], "tanh() (in module arkouda)": [[32, "arkouda.tanh"]], "timedelta_range() (in module arkouda)": [[32, "arkouda.timedelta_range"], [32, "id909"]], "title() (arkouda.strings method)": [[32, "arkouda.Strings.title"], [32, "id454"], [32, "id522"], [32, "id590"]], "to_csv() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_csv"], [32, "id140"]], "to_csv() (arkouda.index method)": [[32, "arkouda.Index.to_csv"]], "to_csv() (arkouda.strings method)": [[32, "arkouda.Strings.to_csv"], [32, "id455"], [32, "id523"], [32, "id591"]], "to_csv() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_csv"], [32, "id711"], [32, "id772"], [32, "id833"], [32, "id894"]], "to_csv() (in module arkouda)": [[32, "arkouda.to_csv"]], "to_cuda() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_cuda"], [32, "id714"], [32, "id775"], [32, "id836"], [32, "id897"]], "to_dataframe() (arkouda.series method)": [[32, "arkouda.Series.to_dataframe"]], "to_dict() (arkouda.index method)": [[32, "arkouda.Index.to_dict"]], "to_dict() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_dict"]], "to_hdf() (arkouda.arrayview method)": [[32, "arkouda.ArrayView.to_hdf"]], "to_hdf() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_hdf"], [32, "id41"], [32, "id90"]], "to_hdf() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_hdf"], [32, "id141"]], "to_hdf() (arkouda.groupby method)": [[32, "arkouda.GroupBy.to_hdf"], [32, "id254"], [32, "id298"], [32, "id342"], [32, "id386"], [92, "arkouda.GroupBy.to_hdf"]], "to_hdf() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.to_hdf"]], "to_hdf() (arkouda.index method)": [[32, "arkouda.Index.to_hdf"]], "to_hdf() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_hdf"]], "to_hdf() (arkouda.strings method)": [[32, "arkouda.Strings.to_hdf"], [32, "id456"], [32, "id524"], [32, "id592"]], "to_hdf() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_hdf"], [32, "id715"], [32, "id776"], [32, "id837"], [32, "id898"]], "to_hdf() (in module arkouda)": [[32, "arkouda.to_hdf"]], "to_list() (arkouda.arrayview method)": [[32, "arkouda.ArrayView.to_list"]], "to_list() (arkouda.bitvector method)": [[32, "arkouda.BitVector.to_list"]], "to_list() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_list"], [32, "id42"], [32, "id91"]], "to_list() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.to_list"]], "to_list() (arkouda.index method)": [[32, "arkouda.Index.to_list"]], "to_list() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_list"]], "to_list() (arkouda.series method)": [[32, "arkouda.Series.to_list"]], "to_list() (arkouda.strings method)": [[32, "arkouda.Strings.to_list"], [32, "id457"], [32, "id525"], [32, "id593"]], "to_list() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_list"], [32, "id716"], [32, "id777"], [32, "id838"], [32, "id899"]], "to_ndarray() (arkouda.arrayview method)": [[32, "arkouda.ArrayView.to_ndarray"]], "to_ndarray() (arkouda.bitvector method)": [[32, "arkouda.BitVector.to_ndarray"]], "to_ndarray() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_ndarray"], [32, "id43"], [32, "id92"]], "to_ndarray() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.to_ndarray"]], "to_ndarray() (arkouda.index method)": [[32, "arkouda.Index.to_ndarray"]], "to_ndarray() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_ndarray"]], "to_ndarray() (arkouda.strings method)": [[32, "arkouda.Strings.to_ndarray"], [32, "id458"], [32, "id526"], [32, "id594"]], "to_ndarray() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_ndarray"], [32, "id717"], [32, "id778"], [32, "id839"], [32, "id900"]], "to_pandas() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_pandas"], [32, "id142"]], "to_pandas() (arkouda.datetime method)": [[32, "arkouda.Datetime.to_pandas"], [32, "id180"], [32, "id213"]], "to_pandas() (arkouda.index method)": [[32, "arkouda.Index.to_pandas"]], "to_pandas() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_pandas"]], "to_pandas() (arkouda.series method)": [[32, "arkouda.Series.to_pandas"]], "to_pandas() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.to_pandas"], [32, "id620"]], "to_parquet() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_parquet"], [32, "id44"], [32, "id93"]], "to_parquet() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_parquet"], [32, "id143"]], "to_parquet() (arkouda.index method)": [[32, "arkouda.Index.to_parquet"]], "to_parquet() (arkouda.strings method)": [[32, "arkouda.Strings.to_parquet"], [32, "id459"], [32, "id527"], [32, "id595"]], "to_parquet() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_parquet"], [32, "id718"], [32, "id779"], [32, "id840"], [32, "id901"]], "to_parquet() (in module arkouda)": [[32, "arkouda.to_parquet"]], "to_strings() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_strings"], [32, "id45"], [32, "id94"]], "topn() (arkouda.series method)": [[32, "arkouda.Series.topn"]], "total_seconds() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.total_seconds"], [32, "id621"]], "transfer() (arkouda.categorical method)": [[32, "arkouda.Categorical.transfer"], [32, "id46"], [32, "id95"]], "transfer() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.transfer"], [32, "id144"]], "transfer() (arkouda.strings method)": [[32, "arkouda.Strings.transfer"], [32, "id460"], [32, "id528"], [32, "id596"]], "transfer() (arkouda.pdarray method)": [[32, "arkouda.pdarray.transfer"], [32, "id719"], [32, "id780"], [32, "id841"], [32, "id902"]], "translate_np_dtype() (in module arkouda)": [[32, "arkouda.translate_np_dtype"]], "trunc() (in module arkouda)": [[32, "arkouda.trunc"]], "uint16 (in module arkouda)": [[32, "arkouda.uint16"]], "uint32 (in module arkouda)": [[32, "arkouda.uint32"]], "uint64 (in module arkouda)": [[32, "arkouda.uint64"]], "uint8 (in module arkouda)": [[32, "arkouda.uint8"]], "uniform() (arkouda.generator method)": [[32, "arkouda.Generator.uniform"]], "uniform() (in module arkouda)": [[32, "arkouda.uniform"], [32, "id910"]], "union1d() (in module arkouda)": [[32, "arkouda.union1d"], [98, "arkouda.union1d"]], "unique() (arkouda.categorical method)": [[32, "arkouda.Categorical.unique"], [32, "id47"], [32, "id96"]], "unique() (arkouda.groupby method)": [[32, "arkouda.GroupBy.unique"], [32, "id255"], [32, "id299"], [32, "id343"], [32, "id387"], [92, "arkouda.GroupBy.unique"]], "unique() (in module arkouda)": [[32, "arkouda.unique"], [32, "id911"], [32, "id912"], [98, "arkouda.unique"]], "unique_keys (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.unique_keys"], [32, "id220"], [32, "id264"], [32, "id308"], [32, "id352"], [92, "arkouda.GroupBy.unique_keys"]], "unregister() (arkouda.categorical method)": [[32, "arkouda.Categorical.unregister"], [32, "id48"], [32, "id97"]], "unregister() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.unregister"], [32, "id145"]], "unregister() (arkouda.datetime method)": [[32, "arkouda.Datetime.unregister"], [32, "id181"], [32, "id214"]], "unregister() (arkouda.groupby method)": [[32, "arkouda.GroupBy.unregister"], [32, "id256"], [32, "id300"], [32, "id344"], [32, "id388"], [92, "arkouda.GroupBy.unregister"]], "unregister() (arkouda.index method)": [[32, "arkouda.Index.unregister"]], "unregister() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.unregister"]], "unregister() (arkouda.series method)": [[32, "arkouda.Series.unregister"]], "unregister() (arkouda.strings method)": [[32, "arkouda.Strings.unregister"], [32, "id461"], [32, "id529"], [32, "id597"]], "unregister() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.unregister"], [32, "id622"]], "unregister() (arkouda.pdarray method)": [[32, "arkouda.pdarray.unregister"], [32, "id720"], [32, "id781"], [32, "id842"], [32, "id903"]], "unregister() (in module arkouda)": [[32, "arkouda.unregister"]], "unregister_all() (in module arkouda)": [[32, "arkouda.unregister_all"]], "unregister_categorical_by_name() (arkouda.categorical static method)": [[32, "arkouda.Categorical.unregister_categorical_by_name"], [32, "id49"], [32, "id98"]], "unregister_dataframe_by_name() (arkouda.dataframe static method)": [[32, "arkouda.DataFrame.unregister_dataframe_by_name"], [32, "id146"]], "unregister_groupby_by_name() (arkouda.groupby static method)": [[32, "arkouda.GroupBy.unregister_groupby_by_name"], [32, "id257"], [32, "id301"], [32, "id345"], [32, "id389"], [92, "arkouda.GroupBy.unregister_groupby_by_name"]], "unregister_pdarray_by_name() (in module arkouda)": [[32, "arkouda.unregister_pdarray_by_name"]], "unregister_strings_by_name() (arkouda.strings static method)": [[32, "arkouda.Strings.unregister_strings_by_name"], [32, "id462"], [32, "id530"], [32, "id598"]], "unsqueeze() (in module arkouda)": [[32, "arkouda.unsqueeze"]], "update_hdf() (arkouda.arrayview method)": [[32, "arkouda.ArrayView.update_hdf"]], "update_hdf() (arkouda.categorical method)": [[32, "arkouda.Categorical.update_hdf"], [32, "id50"], [32, "id99"]], "update_hdf() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.update_hdf"], [32, "id147"]], "update_hdf() (arkouda.groupby method)": [[32, "arkouda.GroupBy.update_hdf"], [32, "id258"], [32, "id302"], [32, "id346"], [32, "id390"]], "update_hdf() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.update_hdf"]], "update_hdf() (arkouda.index method)": [[32, "arkouda.Index.update_hdf"]], "update_hdf() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.update_hdf"]], "update_hdf() (arkouda.strings method)": [[32, "arkouda.Strings.update_hdf"], [32, "id463"], [32, "id531"], [32, "id599"]], "update_hdf() (arkouda.pdarray method)": [[32, "arkouda.pdarray.update_hdf"], [32, "id721"], [32, "id782"], [32, "id843"], [32, "id904"]], "update_hdf() (in module arkouda)": [[32, "arkouda.update_hdf"]], "update_nrows() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.update_nrows"], [32, "id148"]], "upper() (arkouda.strings method)": [[32, "arkouda.Strings.upper"], [32, "id464"], [32, "id532"], [32, "id600"]], "validate_key() (arkouda.series method)": [[32, "arkouda.Series.validate_key"]], "validate_val() (arkouda.series method)": [[32, "arkouda.Series.validate_val"]], "value_counts() (arkouda.series method)": [[32, "arkouda.Series.value_counts"]], "value_counts() (arkouda.pdarray method)": [[32, "arkouda.pdarray.value_counts"], [32, "id722"], [32, "id783"], [32, "id844"], [32, "id905"]], "value_counts() (in module arkouda)": [[32, "arkouda.value_counts"], [93, "arkouda.value_counts"]], "values (arkouda.diffaggregate attribute)": [[32, "arkouda.DiffAggregate.values"]], "var() (arkouda.groupby method)": [[32, "arkouda.GroupBy.var"], [32, "id259"], [32, "id303"], [32, "id347"], [32, "id391"], [92, "arkouda.GroupBy.var"]], "var() (arkouda.pdarray method)": [[32, "arkouda.pdarray.var"], [32, "id723"], [32, "id784"], [32, "id845"], [32, "id906"], [93, "arkouda.pdarray.var"]], "var() (in module arkouda)": [[32, "arkouda.var"], [87, "arkouda.var"]], "week (arkouda.datetime property)": [[32, "arkouda.Datetime.week"], [32, "id164"], [32, "id197"]], "weekday (arkouda.datetime property)": [[32, "arkouda.Datetime.weekday"], [32, "id165"], [32, "id198"]], "weekofyear (arkouda.datetime property)": [[32, "arkouda.Datetime.weekofyear"], [32, "id166"], [32, "id199"]], "where() (in module arkouda)": [[32, "arkouda.where"], [32, "id913"], [32, "id914"], [87, "arkouda.where"]], "write_log() (in module arkouda)": [[32, "arkouda.write_log"]], "xlogy() (in module arkouda)": [[32, "arkouda.xlogy"]], "year (arkouda.datetime property)": [[32, "arkouda.Datetime.year"], [32, "id167"], [32, "id200"]], "zero_up() (in module arkouda)": [[32, "arkouda.zero_up"]], "zeros() (in module arkouda)": [[32, "arkouda.zeros"], [32, "id915"], [32, "id916"], [90, "arkouda.zeros"]], "zeros_like() (in module arkouda)": [[32, "arkouda.zeros_like"], [90, "arkouda.zeros_like"]], "index (class in arkouda.index)": [[33, "arkouda.index.Index"]], "multiindex (class in arkouda.index)": [[33, "arkouda.index.MultiIndex"]], "argsort() (arkouda.index.index method)": [[33, "arkouda.index.Index.argsort"]], "argsort() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.argsort"]], "arkouda.index": [[33, "module-arkouda.index"]], "concat() (arkouda.index.index method)": [[33, "arkouda.index.Index.concat"]], "concat() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.concat"]], "factory() (arkouda.index.index static method)": [[33, "arkouda.index.Index.factory"]], "from_return_msg() (arkouda.index.index class method)": [[33, "arkouda.index.Index.from_return_msg"]], "index (arkouda.index.index property)": [[33, "arkouda.index.Index.index"]], "index (arkouda.index.multiindex property)": [[33, "arkouda.index.MultiIndex.index"]], "is_registered() (arkouda.index.index method)": [[33, "arkouda.index.Index.is_registered"]], "is_registered() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.is_registered"]], "is_unique (arkouda.index.index property)": [[33, "arkouda.index.Index.is_unique"]], "lookup() (arkouda.index.index method)": [[33, "arkouda.index.Index.lookup"]], "lookup() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.lookup"]], "memory_usage() (arkouda.index.index method)": [[33, "arkouda.index.Index.memory_usage"]], "memory_usage() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.memory_usage"]], "objtype (arkouda.index.index attribute)": [[33, "arkouda.index.Index.objType"]], "objtype (arkouda.index.multiindex attribute)": [[33, "arkouda.index.MultiIndex.objType"]], "register() (arkouda.index.index method)": [[33, "arkouda.index.Index.register"]], "register() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.register"]], "save() (arkouda.index.index method)": [[33, "arkouda.index.Index.save"]], "set_dtype() (arkouda.index.index method)": [[33, "arkouda.index.Index.set_dtype"]], "set_dtype() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.set_dtype"]], "shape (arkouda.index.index property)": [[33, "arkouda.index.Index.shape"]], "to_csv() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_csv"]], "to_dict() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_dict"]], "to_dict() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_dict"]], "to_hdf() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_hdf"]], "to_hdf() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_hdf"]], "to_list() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_list"]], "to_list() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_list"]], "to_ndarray() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_ndarray"]], "to_ndarray() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_ndarray"]], "to_pandas() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_pandas"]], "to_pandas() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_pandas"]], "to_parquet() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_parquet"]], "unregister() (arkouda.index.index method)": [[33, "arkouda.index.Index.unregister"]], "unregister() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.unregister"]], "update_hdf() (arkouda.index.index method)": [[33, "arkouda.index.Index.update_hdf"]], "update_hdf() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.update_hdf"]], "allsymbols (in module arkouda.infoclass)": [[34, "arkouda.infoclass.AllSymbols"]], "registeredsymbols (in module arkouda.infoclass)": [[34, "arkouda.infoclass.RegisteredSymbols"]], "arkouda.infoclass": [[34, "module-arkouda.infoclass"]], "information() (in module arkouda.infoclass)": [[34, "arkouda.infoclass.information"]], "list_registry() (in module arkouda.infoclass)": [[34, "arkouda.infoclass.list_registry"]], "list_symbol_table() (in module arkouda.infoclass)": [[34, "arkouda.infoclass.list_symbol_table"]], "pretty_print_information() (in module arkouda.infoclass)": [[34, "arkouda.infoclass.pretty_print_information"]], "arkouda.io": [[35, "module-arkouda.io"]], "export() (in module arkouda.io)": [[35, "arkouda.io.export"]], "get_columns() (in module arkouda.io)": [[35, "arkouda.io.get_columns"]], "get_datasets() (in module arkouda.io)": [[35, "arkouda.io.get_datasets"]], "get_filetype() (in module arkouda.io)": [[35, "arkouda.io.get_filetype"]], "get_null_indices() (in module arkouda.io)": [[35, "arkouda.io.get_null_indices"]], "import_data() (in module arkouda.io)": [[35, "arkouda.io.import_data"]], "load() (in module arkouda.io)": [[35, "arkouda.io.load"]], "load_all() (in module arkouda.io)": [[35, "arkouda.io.load_all"]], "ls() (in module arkouda.io)": [[35, "arkouda.io.ls"]], "ls_csv() (in module arkouda.io)": [[35, "arkouda.io.ls_csv"]], "read() (in module arkouda.io)": [[35, "arkouda.io.read"]], "read_csv() (in module arkouda.io)": [[35, "arkouda.io.read_csv"]], "read_hdf() (in module arkouda.io)": [[35, "arkouda.io.read_hdf"]], "read_parquet() (in module arkouda.io)": [[35, "arkouda.io.read_parquet"]], "read_tagged_data() (in module arkouda.io)": [[35, "arkouda.io.read_tagged_data"]], "receive() (in module arkouda.io)": [[35, "arkouda.io.receive"]], "receive_dataframe() (in module arkouda.io)": [[35, "arkouda.io.receive_dataframe"]], "restore() (in module arkouda.io)": [[35, "arkouda.io.restore"]], "save_all() (in module arkouda.io)": [[35, "arkouda.io.save_all"]], "snapshot() (in module arkouda.io)": [[35, "arkouda.io.snapshot"]], "to_csv() (in module arkouda.io)": [[35, "arkouda.io.to_csv"]], "to_hdf() (in module arkouda.io)": [[35, "arkouda.io.to_hdf"]], "to_parquet() (in module arkouda.io)": [[35, "arkouda.io.to_parquet"]], "update_hdf() (in module arkouda.io)": [[35, "arkouda.io.update_hdf"]], "arkouda.io_util": [[36, "module-arkouda.io_util"]], "delimited_file_to_dict() (in module arkouda.io_util)": [[36, "arkouda.io_util.delimited_file_to_dict"]], "dict_to_delimited_file() (in module arkouda.io_util)": [[36, "arkouda.io_util.dict_to_delimited_file"]], "get_directory() (in module arkouda.io_util)": [[36, "arkouda.io_util.get_directory"]], "write_line_to_file() (in module arkouda.io_util)": [[36, "arkouda.io_util.write_line_to_file"]], "arkouda.join": [[37, "module-arkouda.join"]], "compute_join_size() (in module arkouda.join)": [[37, "arkouda.join.compute_join_size"]], "gen_ranges() (in module arkouda.join)": [[37, "arkouda.join.gen_ranges"]], "join_on_eq_with_dt() (in module arkouda.join)": [[37, "arkouda.join.join_on_eq_with_dt"]], "critical (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.CRITICAL"]], "debug (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.DEBUG"]], "error (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.ERROR"]], "info (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.INFO"]], "loglevel (class in arkouda.logger)": [[38, "arkouda.logger.LogLevel"]], "warn (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.WARN"]], "arkouda.logger": [[38, "module-arkouda.logger"]], "disableverbose() (in module arkouda.logger)": [[38, "arkouda.logger.disableVerbose"]], "enableverbose() (in module arkouda.logger)": [[38, "arkouda.logger.enableVerbose"]], "write_log() (in module arkouda.logger)": [[38, "arkouda.logger.write_log"]], "match (class in arkouda.match)": [[39, "arkouda.match.Match"]], "arkouda.match": [[39, "module-arkouda.match"]], "end() (arkouda.match.match method)": [[39, "arkouda.match.Match.end"], [100, "arkouda.match.Match.end"]], "find_matches() (arkouda.match.match method)": [[39, "arkouda.match.Match.find_matches"], [100, "arkouda.match.Match.find_matches"]], "group() (arkouda.match.match method)": [[39, "arkouda.match.Match.group"], [100, "arkouda.match.Match.group"]], "match_type() (arkouda.match.match method)": [[39, "arkouda.match.Match.match_type"], [100, "arkouda.match.Match.match_type"]], "matched() (arkouda.match.match method)": [[39, "arkouda.match.Match.matched"], [100, "arkouda.match.Match.matched"]], "start() (arkouda.match.match method)": [[39, "arkouda.match.Match.start"], [100, "arkouda.match.Match.start"]], "locationsinfo (arkouda.matcher.matcher attribute)": [[40, "arkouda.matcher.Matcher.LocationsInfo"]], "matcher (class in arkouda.matcher)": [[40, "arkouda.matcher.Matcher"]], "arkouda.matcher": [[40, "module-arkouda.matcher"]], "find_locations() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.find_locations"]], "findall() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.findall"]], "get_match() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.get_match"]], "split() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.split"]], "sub() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.sub"]], "errormode (class in arkouda.numeric)": [[41, "arkouda.numeric.ErrorMode"]], "abs() (in module arkouda.numeric)": [[41, "arkouda.numeric.abs"]], "arccos() (in module arkouda.numeric)": [[41, "arkouda.numeric.arccos"]], "arccosh() (in module arkouda.numeric)": [[41, "arkouda.numeric.arccosh"]], "arcsin() (in module arkouda.numeric)": [[41, "arkouda.numeric.arcsin"]], "arcsinh() (in module arkouda.numeric)": [[41, "arkouda.numeric.arcsinh"]], "arctan() (in module arkouda.numeric)": [[41, "arkouda.numeric.arctan"]], "arctan2() (in module arkouda.numeric)": [[41, "arkouda.numeric.arctan2"]], "arctanh() (in module arkouda.numeric)": [[41, "arkouda.numeric.arctanh"]], "arkouda.numeric": [[41, "module-arkouda.numeric"]], "cast() (in module arkouda.numeric)": [[41, "arkouda.numeric.cast"]], "ceil() (in module arkouda.numeric)": [[41, "arkouda.numeric.ceil"]], "cos() (in module arkouda.numeric)": [[41, "arkouda.numeric.cos"]], "cosh() (in module arkouda.numeric)": [[41, "arkouda.numeric.cosh"]], "cumprod() (in module arkouda.numeric)": [[41, "arkouda.numeric.cumprod"]], "cumsum() (in module arkouda.numeric)": [[41, "arkouda.numeric.cumsum"]], "deg2rad() (in module arkouda.numeric)": [[41, "arkouda.numeric.deg2rad"]], "exp() (in module arkouda.numeric)": [[41, "arkouda.numeric.exp"]], "expm1() (in module arkouda.numeric)": [[41, "arkouda.numeric.expm1"]], "floor() (in module arkouda.numeric)": [[41, "arkouda.numeric.floor"]], "hash() (in module arkouda.numeric)": [[41, "arkouda.numeric.hash"]], "histogram() (in module arkouda.numeric)": [[41, "arkouda.numeric.histogram"]], "histogram2d() (in module arkouda.numeric)": [[41, "arkouda.numeric.histogram2d"]], "histogramdd() (in module arkouda.numeric)": [[41, "arkouda.numeric.histogramdd"]], "ignore (arkouda.numeric.errormode attribute)": [[41, "arkouda.numeric.ErrorMode.ignore"]], "isfinite() (in module arkouda.numeric)": [[41, "arkouda.numeric.isfinite"]], "isinf() (in module arkouda.numeric)": [[41, "arkouda.numeric.isinf"]], "isnan() (in module arkouda.numeric)": [[41, "arkouda.numeric.isnan"]], "log() (in module arkouda.numeric)": [[41, "arkouda.numeric.log"]], "log10() (in module arkouda.numeric)": [[41, "arkouda.numeric.log10"]], "log1p() (in module arkouda.numeric)": [[41, "arkouda.numeric.log1p"]], "log2() (in module arkouda.numeric)": [[41, "arkouda.numeric.log2"]], "rad2deg() (in module arkouda.numeric)": [[41, "arkouda.numeric.rad2deg"]], "return_validity (arkouda.numeric.errormode attribute)": [[41, "arkouda.numeric.ErrorMode.return_validity"]], "round() (in module arkouda.numeric)": [[41, "arkouda.numeric.round"]], "sign() (in module arkouda.numeric)": [[41, "arkouda.numeric.sign"]], "sin() (in module arkouda.numeric)": [[41, "arkouda.numeric.sin"]], "sinh() (in module arkouda.numeric)": [[41, "arkouda.numeric.sinh"]], "square() (in module arkouda.numeric)": [[41, "arkouda.numeric.square"]], "strict (arkouda.numeric.errormode attribute)": [[41, "arkouda.numeric.ErrorMode.strict"]], "tan() (in module arkouda.numeric)": [[41, "arkouda.numeric.tan"]], "tanh() (in module arkouda.numeric)": [[41, "arkouda.numeric.tanh"]], "trunc() (in module arkouda.numeric)": [[41, "arkouda.numeric.trunc"]], "value_counts() (in module arkouda.numeric)": [[41, "arkouda.numeric.value_counts"]], "where() (in module arkouda.numeric)": [[41, "arkouda.numeric.where"]], "binops (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.BinOps"]], "opeqops (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.OpEqOps"]], "all() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.all"]], "all() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.all"]], "any() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.any"]], "any() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.any"]], "argmax() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.argmax"]], "argmax() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.argmax"]], "argmaxk() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.argmaxk"]], "argmaxk() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.argmaxk"]], "argmin() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.argmin"]], "argmin() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.argmin"]], "argmink() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.argmink"]], "argmink() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.argmink"]], "arkouda.pdarrayclass": [[42, "module-arkouda.pdarrayclass"]], "astype() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.astype"]], "attach() (arkouda.pdarrayclass.pdarray static method)": [[42, "arkouda.pdarrayclass.pdarray.attach"]], "attach_pdarray() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.attach_pdarray"]], "bigint_to_uint_arrays() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.bigint_to_uint_arrays"]], "broadcast_to_shape() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.broadcast_to_shape"]], "clear() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.clear"]], "clz() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.clz"]], "clz() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.clz"]], "corr() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.corr"]], "corr() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.corr"]], "cov() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.cov"]], "cov() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.cov"]], "ctz() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.ctz"]], "ctz() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.ctz"]], "divmod() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.divmod"]], "dot() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.dot"]], "dtype (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.dtype"]], "fill() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.fill"]], "fmod() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.fmod"]], "format_other() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.format_other"]], "info() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.info"]], "is_registered() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.is_registered"]], "is_sorted() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.is_sorted"]], "is_sorted() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.is_sorted"]], "itemsize (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.itemsize"]], "max() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.max"]], "max() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.max"]], "max_bits (arkouda.pdarrayclass.pdarray property)": [[42, "arkouda.pdarrayclass.pdarray.max_bits"]], "maxk() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.maxk"]], "maxk() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.maxk"]], "mean() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.mean"]], "mean() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.mean"]], "min() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.min"]], "min() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.min"]], "mink() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.mink"]], "mink() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.mink"]], "mod() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.mod"]], "name (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.name"]], "nbytes (arkouda.pdarrayclass.pdarray property)": [[42, "arkouda.pdarrayclass.pdarray.nbytes"]], "ndim (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.ndim"]], "objtype (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.objType"]], "opeq() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.opeq"]], "parity() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.parity"]], "parity() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.parity"]], "pdarray (class in arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.pdarray"]], "popcount() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.popcount"]], "popcount() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.popcount"]], "power() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.power"]], "pretty_print_info() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.pretty_print_info"]], "prod() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.prod"]], "prod() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.prod"]], "register() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.register"]], "reshape() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.reshape"]], "rotl() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.rotl"]], "rotl() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.rotl"]], "rotr() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.rotr"]], "rotr() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.rotr"]], "save() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.save"]], "shape (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.shape"]], "size (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.size"]], "slice_bits() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.slice_bits"]], "sqrt() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.sqrt"]], "std() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.std"]], "std() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.std"]], "sum() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.sum"]], "sum() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.sum"]], "to_csv() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_csv"]], "to_cuda() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_cuda"]], "to_hdf() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_hdf"]], "to_list() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_list"]], "to_ndarray() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_ndarray"]], "to_parquet() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_parquet"]], "transfer() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.transfer"]], "unregister() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.unregister"]], "unregister_pdarray_by_name() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.unregister_pdarray_by_name"]], "update_hdf() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.update_hdf"]], "value_counts() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.value_counts"]], "var() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.var"]], "var() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.var"]], "arange() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.arange"]], "arkouda.pdarraycreation": [[43, "module-arkouda.pdarraycreation"]], "array() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.array"]], "bigint_from_uint_arrays() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.bigint_from_uint_arrays"]], "from_series() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.from_series"]], "full() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.full"]], "full_like() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.full_like"]], "linspace() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.linspace"]], "ones() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.ones"]], "ones_like() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.ones_like"]], "randint() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.randint"]], "random_strings_lognormal() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.random_strings_lognormal"]], "random_strings_uniform() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.random_strings_uniform"]], "standard_normal() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.standard_normal"]], "uniform() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.uniform"]], "zeros() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.zeros"]], "zeros_like() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.zeros_like"]], "arkouda.pdarraysetops": [[44, "module-arkouda.pdarraysetops"]], "concatenate() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.concatenate"]], "in1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.in1d"]], "indexof1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.indexof1d"]], "intersect1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.intersect1d"]], "setdiff1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.setdiff1d"]], "setxor1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.setxor1d"]], "union1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.union1d"]], "arkouda.plotting": [[45, "module-arkouda.plotting"]], "hist_all() (in module arkouda.plotting)": [[45, "arkouda.plotting.hist_all"]], "plot_dist() (in module arkouda.plotting)": [[45, "arkouda.plotting.plot_dist"]], "generator (class in arkouda.random._generator)": [[46, "arkouda.random._generator.Generator"]], "arkouda.random._generator": [[46, "module-arkouda.random._generator"]], "default_rng() (in module arkouda.random._generator)": [[46, "arkouda.random._generator.default_rng"]], "integers() (arkouda.random._generator.generator method)": [[46, "arkouda.random._generator.Generator.integers"]], "random() (arkouda.random._generator.generator method)": [[46, "arkouda.random._generator.Generator.random"]], "standard_normal() (arkouda.random._generator.generator method)": [[46, "arkouda.random._generator.Generator.standard_normal"]], "uniform() (arkouda.random._generator.generator method)": [[46, "arkouda.random._generator.Generator.uniform"]], "arkouda.random._legacy": [[47, "module-arkouda.random._legacy"]], "randint() (in module arkouda.random._legacy)": [[47, "arkouda.random._legacy.randint"]], "standard_normal() (in module arkouda.random._legacy)": [[47, "arkouda.random._legacy.standard_normal"]], "uniform() (in module arkouda.random._legacy)": [[47, "arkouda.random._legacy.uniform"]], "generator (class in arkouda.random)": [[48, "arkouda.random.Generator"]], "arkouda.random": [[48, "module-arkouda.random"]], "integers() (arkouda.random.generator method)": [[48, "arkouda.random.Generator.integers"]], "randint() (in module arkouda.random)": [[48, "arkouda.random.randint"]], "random() (arkouda.random.generator method)": [[48, "arkouda.random.Generator.random"]], "standard_normal() (arkouda.random.generator method)": [[48, "arkouda.random.Generator.standard_normal"]], "standard_normal() (in module arkouda.random)": [[48, "arkouda.random.standard_normal"]], "uniform() (arkouda.random.generator method)": [[48, "arkouda.random.Generator.uniform"]], "uniform() (in module arkouda.random)": [[48, "arkouda.random.uniform"]], "row (class in arkouda.row)": [[49, "arkouda.row.Row"]], "arkouda.row": [[49, "module-arkouda.row"]], "arkouda.security": [[50, "module-arkouda.security"]], "generate_token() (in module arkouda.security)": [[50, "arkouda.security.generate_token"]], "generate_username_token_json() (in module arkouda.security)": [[50, "arkouda.security.generate_username_token_json"]], "get_arkouda_client_directory() (in module arkouda.security)": [[50, "arkouda.security.get_arkouda_client_directory"]], "get_home_directory() (in module arkouda.security)": [[50, "arkouda.security.get_home_directory"]], "get_username() (in module arkouda.security)": [[50, "arkouda.security.get_username"]], "username_tokenizer (in module arkouda.security)": [[50, "arkouda.security.username_tokenizer"]], "and() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.AND"]], "len_suffix (in module arkouda.segarray)": [[51, "arkouda.segarray.LEN_SUFFIX"]], "or() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.OR"]], "seg_suffix (in module arkouda.segarray)": [[51, "arkouda.segarray.SEG_SUFFIX"]], "segarray (class in arkouda.segarray)": [[51, "arkouda.segarray.SegArray"]], "val_suffix (in module arkouda.segarray)": [[51, "arkouda.segarray.VAL_SUFFIX"]], "xor() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.XOR"]], "aggregate() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.aggregate"]], "all() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.all"]], "any() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.any"]], "append() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.append"]], "append_single() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.append_single"]], "argmax() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.argmax"]], "argmin() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.argmin"]], "arkouda.segarray": [[51, "module-arkouda.segarray"]], "attach() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.attach"]], "concat() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.concat"]], "copy() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.copy"]], "filter() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.filter"]], "from_multi_array() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.from_multi_array"]], "from_parts() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.from_parts"]], "from_return_msg() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.from_return_msg"]], "get_jth() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_jth"]], "get_length_n() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_length_n"]], "get_ngrams() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_ngrams"]], "get_prefixes() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_prefixes"]], "get_suffixes() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_suffixes"]], "grouping (arkouda.segarray.segarray property)": [[51, "arkouda.segarray.SegArray.grouping"]], "hash() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.hash"]], "intersect() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.intersect"]], "is_registered() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.is_registered"]], "load() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.load"]], "max() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.max"]], "mean() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.mean"]], "min() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.min"]], "non_empty (arkouda.segarray.segarray property)": [[51, "arkouda.segarray.SegArray.non_empty"]], "nunique() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.nunique"]], "objtype (arkouda.segarray.segarray attribute)": [[51, "arkouda.segarray.SegArray.objType"]], "prepend_single() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.prepend_single"]], "prod() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.prod"]], "read_hdf() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.read_hdf"]], "register() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.register"]], "remove_repeats() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.remove_repeats"]], "save() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.save"]], "segarray() (in module arkouda.segarray)": [[51, "arkouda.segarray.segarray"]], "set_jth() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.set_jth"]], "setdiff() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.setdiff"]], "setxor() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.setxor"]], "sum() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.sum"]], "to_hdf() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.to_hdf"]], "to_list() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.to_list"]], "to_ndarray() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.to_ndarray"]], "to_parquet() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.to_parquet"]], "transfer() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.transfer"]], "union() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.union"]], "unique() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.unique"]], "unregister() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.unregister"]], "unregister_segarray_by_name() (arkouda.segarray.segarray static method)": [[51, "arkouda.segarray.SegArray.unregister_segarray_by_name"]], "update_hdf() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.update_hdf"]], "series (class in arkouda.series)": [[52, "arkouda.series.Series"]], "add() (arkouda.series.series method)": [[52, "arkouda.series.Series.add"]], "arkouda.series": [[52, "module-arkouda.series"]], "at (arkouda.series.series property)": [[52, "arkouda.series.Series.at"]], "attach() (arkouda.series.series static method)": [[52, "arkouda.series.Series.attach"]], "concat() (arkouda.series.series static method)": [[52, "arkouda.series.Series.concat"]], "diff() (arkouda.series.series method)": [[52, "arkouda.series.Series.diff"]], "dt (arkouda.series.series attribute)": [[52, "arkouda.series.Series.dt"]], "from_return_msg() (arkouda.series.series class method)": [[52, "arkouda.series.Series.from_return_msg"]], "has_repeat_labels() (arkouda.series.series method)": [[52, "arkouda.series.Series.has_repeat_labels"]], "head() (arkouda.series.series method)": [[52, "arkouda.series.Series.head"]], "iat (arkouda.series.series property)": [[52, "arkouda.series.Series.iat"]], "iloc (arkouda.series.series property)": [[52, "arkouda.series.Series.iloc"]], "is_registered() (arkouda.series.series method)": [[52, "arkouda.series.Series.is_registered"]], "isin() (arkouda.series.series method)": [[52, "arkouda.series.Series.isin"]], "loc (arkouda.series.series property)": [[52, "arkouda.series.Series.loc"]], "locate() (arkouda.series.series method)": [[52, "arkouda.series.Series.locate"]], "map() (arkouda.series.series method)": [[52, "arkouda.series.Series.map"]], "memory_usage() (arkouda.series.series method)": [[52, "arkouda.series.Series.memory_usage"]], "objtype (arkouda.series.series attribute)": [[52, "arkouda.series.Series.objType"]], "pdconcat() (arkouda.series.series static method)": [[52, "arkouda.series.Series.pdconcat"]], "register() (arkouda.series.series method)": [[52, "arkouda.series.Series.register"]], "shape (arkouda.series.series property)": [[52, "arkouda.series.Series.shape"]], "sort_index() (arkouda.series.series method)": [[52, "arkouda.series.Series.sort_index"]], "sort_values() (arkouda.series.series method)": [[52, "arkouda.series.Series.sort_values"]], "str_acc (arkouda.series.series attribute)": [[52, "arkouda.series.Series.str_acc"]], "tail() (arkouda.series.series method)": [[52, "arkouda.series.Series.tail"]], "to_dataframe() (arkouda.series.series method)": [[52, "arkouda.series.Series.to_dataframe"]], "to_list() (arkouda.series.series method)": [[52, "arkouda.series.Series.to_list"]], "to_pandas() (arkouda.series.series method)": [[52, "arkouda.series.Series.to_pandas"]], "topn() (arkouda.series.series method)": [[52, "arkouda.series.Series.topn"]], "unregister() (arkouda.series.series method)": [[52, "arkouda.series.Series.unregister"]], "validate_key() (arkouda.series.series method)": [[52, "arkouda.series.Series.validate_key"]], "validate_val() (arkouda.series.series method)": [[52, "arkouda.series.Series.validate_val"]], "value_counts() (arkouda.series.series method)": [[52, "arkouda.series.Series.value_counts"]], "argsort() (in module arkouda.sorting)": [[53, "arkouda.sorting.argsort"]], "arkouda.sorting": [[53, "module-arkouda.sorting"]], "coargsort() (in module arkouda.sorting)": [[53, "arkouda.sorting.coargsort"]], "sort() (in module arkouda.sorting)": [[53, "arkouda.sorting.sort"]], "binops (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.BinOps"]], "strings (class in arkouda.strings)": [[54, "arkouda.strings.Strings"]], "arkouda.strings": [[54, "module-arkouda.strings"]], "astype() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.astype"]], "attach() (arkouda.strings.strings static method)": [[54, "arkouda.strings.Strings.attach"]], "cached_regex_patterns() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.cached_regex_patterns"]], "capitalize() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.capitalize"]], "contains() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.contains"]], "decode() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.decode"]], "dtype (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.dtype"]], "encode() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.encode"]], "endswith() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.endswith"]], "entry (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.entry"]], "find_locations() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.find_locations"]], "findall() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.findall"]], "flatten() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.flatten"]], "from_parts() (arkouda.strings.strings static method)": [[54, "arkouda.strings.Strings.from_parts"]], "from_return_msg() (arkouda.strings.strings static method)": [[54, "arkouda.strings.Strings.from_return_msg"]], "fullmatch() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.fullmatch"]], "get_bytes() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_bytes"]], "get_lengths() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_lengths"]], "get_offsets() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_offsets"]], "get_prefixes() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_prefixes"]], "get_suffixes() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_suffixes"]], "group() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.group"]], "hash() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.hash"]], "info() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.info"]], "is_registered() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.is_registered"]], "isalnum() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isalnum"]], "isalpha() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isalpha"]], "isdigit() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isdigit"]], "isempty() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isempty"]], "islower() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.islower"]], "isspace() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isspace"]], "istitle() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.istitle"]], "isupper() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isupper"]], "logger (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.logger"]], "lower() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.lower"]], "lstick() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.lstick"]], "match() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.match"]], "nbytes (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.nbytes"]], "ndim (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.ndim"]], "objtype (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.objType"]], "peel() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.peel"]], "pretty_print_info() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.pretty_print_info"]], "purge_cached_regex_patterns() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.purge_cached_regex_patterns"]], "register() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.register"]], "rpeel() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.rpeel"]], "save() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.save"]], "search() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.search"]], "shape (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.shape"]], "size (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.size"]], "split() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.split"]], "startswith() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.startswith"]], "stick() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.stick"]], "strip() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.strip"]], "sub() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.sub"]], "subn() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.subn"]], "title() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.title"]], "to_csv() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_csv"]], "to_hdf() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_hdf"]], "to_list() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_list"]], "to_ndarray() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_ndarray"]], "to_parquet() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_parquet"]], "transfer() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.transfer"]], "unregister() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.unregister"]], "unregister_strings_by_name() (arkouda.strings.strings static method)": [[54, "arkouda.strings.Strings.unregister_strings_by_name"]], "update_hdf() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.update_hdf"]], "upper() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.upper"]], "datetime (class in arkouda.timeclass)": [[55, "arkouda.timeclass.Datetime"]], "timedelta (class in arkouda.timeclass)": [[55, "arkouda.timeclass.Timedelta"]], "abs() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.abs"]], "arkouda.timeclass": [[55, "module-arkouda.timeclass"]], "components (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.components"]], "date (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.date"]], "date_range() (in module arkouda.timeclass)": [[55, "arkouda.timeclass.date_range"]], "day (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day"]], "day_of_week (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day_of_week"]], "day_of_year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day_of_year"]], "dayofweek (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.dayofweek"]], "dayofyear (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.dayofyear"]], "days (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.days"]], "hour (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.hour"]], "is_leap_year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.is_leap_year"]], "is_registered() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.is_registered"]], "is_registered() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.is_registered"]], "isocalendar() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.isocalendar"]], "microsecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.microsecond"]], "microseconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.microseconds"]], "millisecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.millisecond"]], "minute (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.minute"]], "month (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.month"]], "nanosecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.nanosecond"]], "nanoseconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.nanoseconds"]], "register() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.register"]], "register() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.register"]], "second (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.second"]], "seconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.seconds"]], "special_objtype (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.special_objType"]], "special_objtype (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.special_objType"]], "std() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.std"]], "sum() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.sum"]], "sum() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.sum"]], "supported_opeq (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_opeq"]], "supported_opeq (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_opeq"]], "supported_with_datetime (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_datetime"]], "supported_with_datetime (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_datetime"]], "supported_with_pdarray (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_pdarray"]], "supported_with_pdarray (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_pdarray"]], "supported_with_r_datetime (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_datetime"]], "supported_with_r_datetime (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_datetime"]], "supported_with_r_pdarray (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_pdarray"]], "supported_with_r_pdarray (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_pdarray"]], "supported_with_r_timedelta (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_timedelta"]], "supported_with_r_timedelta (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_timedelta"]], "supported_with_timedelta (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_timedelta"]], "supported_with_timedelta (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_timedelta"]], "timedelta_range() (in module arkouda.timeclass)": [[55, "arkouda.timeclass.timedelta_range"]], "to_pandas() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.to_pandas"]], "to_pandas() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.to_pandas"]], "total_seconds() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.total_seconds"]], "unregister() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.unregister"]], "unregister() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.unregister"]], "week (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.week"]], "weekday (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.weekday"]], "weekofyear (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.weekofyear"]], "year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.year"]], "arkouda.util": [[56, "module-arkouda.util"]], "attach() (in module arkouda.util)": [[56, "arkouda.util.attach"]], "attach_all() (in module arkouda.util)": [[56, "arkouda.util.attach_all"]], "broadcast_dims() (in module arkouda.util)": [[56, "arkouda.util.broadcast_dims"]], "concatenate() (in module arkouda.util)": [[56, "arkouda.util.concatenate"]], "convert_bytes() (in module arkouda.util)": [[56, "arkouda.util.convert_bytes"]], "convert_if_categorical() (in module arkouda.util)": [[56, "arkouda.util.convert_if_categorical"]], "enrich_inplace() (in module arkouda.util)": [[56, "arkouda.util.enrich_inplace"]], "expand() (in module arkouda.util)": [[56, "arkouda.util.expand"]], "generic_concat() (in module arkouda.util)": [[56, "arkouda.util.generic_concat"]], "get_callback() (in module arkouda.util)": [[56, "arkouda.util.get_callback"]], "identity() (in module arkouda.util)": [[56, "arkouda.util.identity"]], "invert_permutation() (in module arkouda.util)": [[56, "arkouda.util.invert_permutation"]], "is_registered() (in module arkouda.util)": [[56, "arkouda.util.is_registered"]], "most_common() (in module arkouda.util)": [[56, "arkouda.util.most_common"]], "register() (in module arkouda.util)": [[56, "arkouda.util.register"]], "register_all() (in module arkouda.util)": [[56, "arkouda.util.register_all"]], "report_mem() (in module arkouda.util)": [[56, "arkouda.util.report_mem"]], "sparse_sum_help() (in module arkouda.util)": [[56, "arkouda.util.sparse_sum_help"]], "unregister() (in module arkouda.util)": [[56, "arkouda.util.unregister"]], "unregister_all() (in module arkouda.util)": [[56, "arkouda.util.unregister_all"]], "to_ndarray() (in module arkouda.strings)": [[84, "arkouda.Strings.to_ndarray"], [100, "arkouda.Strings.to_ndarray"]], "to_ndarray() (in module arkouda.pdarray)": [[84, "arkouda.pdarray.to_ndarray"], [95, "arkouda.pdarray.to_ndarray"]], "argsort() (in module arkouda.index)": [[85, "arkouda.Index.argsort"]], "argsort() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.argsort"]], "concat() (in module arkouda.index)": [[85, "arkouda.Index.concat"]], "concat() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.concat"]], "lookup() (in module arkouda.index)": [[85, "arkouda.Index.lookup"]], "lookup() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.lookup"]], "set_dtype() (in module arkouda.index)": [[85, "arkouda.Index.set_dtype"]], "set_dtype() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.set_dtype"]], "to_ndarray() (in module arkouda.arrayview)": [[88, "arkouda.ArrayView.to_ndarray"]], "to_ndarray() (in module arkouda.categorical)": [[89, "arkouda.Categorical.to_ndarray"]], "apply_permutation() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.apply_permutation"]], "argsort() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.argsort"]], "coargsort() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.coargsort"]], "concat() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.concat"]], "copy() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.copy"]], "drop() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.drop"]], "drop_duplicates() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.drop_duplicates"]], "groupby() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.groupby"]], "head() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.head"]], "rename() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.rename"]], "reset_index() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.reset_index"]], "sort_values() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.sort_values"]], "tail() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.tail"]], "to_pandas() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.to_pandas"]], "append() (in module arkouda.segarray)": [[96, "arkouda.SegArray.append"]], "append_single() (in module arkouda.segarray)": [[96, "arkouda.SegArray.append_single"]], "get_jth() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_jth"]], "get_length_n() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_length_n"]], "get_ngrams() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_ngrams"]], "get_prefixes() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_prefixes"]], "get_suffixes() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_suffixes"]], "intersect() (in module arkouda.segarray)": [[96, "arkouda.SegArray.intersect"]], "prepend_single() (in module arkouda.segarray)": [[96, "arkouda.SegArray.prepend_single"]], "remove_repeats() (in module arkouda.segarray)": [[96, "arkouda.SegArray.remove_repeats"]], "set_jth() (in module arkouda.segarray)": [[96, "arkouda.SegArray.set_jth"]], "setdiff() (in module arkouda.segarray)": [[96, "arkouda.SegArray.setdiff"]], "setxor() (in module arkouda.segarray)": [[96, "arkouda.SegArray.setxor"]], "to_ndarray() (in module arkouda.segarray)": [[96, "arkouda.SegArray.to_ndarray"]], "union() (in module arkouda.segarray)": [[96, "arkouda.SegArray.union"]], "head() (in module arkouda.series)": [[97, "arkouda.Series.head"]], "locate() (in module arkouda.series)": [[97, "arkouda.Series.locate"], [97, "id0"]], "pdconcat() (in module arkouda.series)": [[97, "arkouda.Series.pdconcat"]], "sort_index() (in module arkouda.series)": [[97, "arkouda.Series.sort_index"]], "sort_values() (in module arkouda.series)": [[97, "arkouda.Series.sort_values"]], "tail() (in module arkouda.series)": [[97, "arkouda.Series.tail"]], "to_pandas() (in module arkouda.series)": [[97, "arkouda.Series.to_pandas"]], "topn() (in module arkouda.series)": [[97, "arkouda.Series.topn"]], "value_counts() (in module arkouda.series)": [[97, "arkouda.Series.value_counts"]], "connect() (in module arkouda)": [[99, "arkouda.connect"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["CONTRIBUTING_LINK", "ENVIRONMENT", "autoapi/arkouda/accessor/index", "autoapi/arkouda/akscipy/_stats_py/index", "autoapi/arkouda/akscipy/index", "autoapi/arkouda/akscipy/special/_math/index", "autoapi/arkouda/akscipy/special/index", "autoapi/arkouda/alignment/index", "autoapi/arkouda/array_api/_array_object/index", "autoapi/arkouda/array_api/_constants/index", "autoapi/arkouda/array_api/_creation_functions/index", "autoapi/arkouda/array_api/_data_type_functions/index", "autoapi/arkouda/array_api/_dtypes/index", "autoapi/arkouda/array_api/_elementwise_functions/index", "autoapi/arkouda/array_api/_indexing_functions/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/_typing/index", "autoapi/arkouda/array_api/_utility_functions/index", "autoapi/arkouda/array_api/index", "autoapi/arkouda/array_api/linalg/index", "autoapi/arkouda/array_view/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/pdarrayclass/index", "autoapi/arkouda/pdarraycreation/index", "autoapi/arkouda/pdarraysetops/index", "autoapi/arkouda/plotting/index", "autoapi/arkouda/random/_generator/index", "autoapi/arkouda/random/_legacy/index", "autoapi/arkouda/random/index", "autoapi/arkouda/row/index", "autoapi/arkouda/security/index", "autoapi/arkouda/segarray/index", "autoapi/arkouda/series/index", "autoapi/arkouda/sorting/index", "autoapi/arkouda/strings/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/arrayview", "usage/categorical", "usage/creation", "usage/dataframe", "usage/groupby", "usage/histogram", "usage/indexing", "usage/pdarray", "usage/segarray", "usage/series", "usage/setops", "usage/startup", "usage/strings"], "filenames": ["CONTRIBUTING_LINK.md", "ENVIRONMENT.md", "autoapi/arkouda/accessor/index.rst", "autoapi/arkouda/akscipy/_stats_py/index.rst", "autoapi/arkouda/akscipy/index.rst", "autoapi/arkouda/akscipy/special/_math/index.rst", "autoapi/arkouda/akscipy/special/index.rst", "autoapi/arkouda/alignment/index.rst", "autoapi/arkouda/array_api/_array_object/index.rst", "autoapi/arkouda/array_api/_constants/index.rst", "autoapi/arkouda/array_api/_creation_functions/index.rst", "autoapi/arkouda/array_api/_data_type_functions/index.rst", "autoapi/arkouda/array_api/_dtypes/index.rst", "autoapi/arkouda/array_api/_elementwise_functions/index.rst", "autoapi/arkouda/array_api/_indexing_functions/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/_typing/index.rst", "autoapi/arkouda/array_api/_utility_functions/index.rst", "autoapi/arkouda/array_api/index.rst", "autoapi/arkouda/array_api/linalg/index.rst", "autoapi/arkouda/array_view/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/pdarrayclass/index.rst", "autoapi/arkouda/pdarraycreation/index.rst", "autoapi/arkouda/pdarraysetops/index.rst", "autoapi/arkouda/plotting/index.rst", "autoapi/arkouda/random/_generator/index.rst", "autoapi/arkouda/random/_legacy/index.rst", "autoapi/arkouda/random/index.rst", "autoapi/arkouda/row/index.rst", "autoapi/arkouda/security/index.rst", "autoapi/arkouda/segarray/index.rst", "autoapi/arkouda/series/index.rst", "autoapi/arkouda/sorting/index.rst", "autoapi/arkouda/strings/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/arrayview.rst", "usage/categorical.rst", "usage/creation.rst", "usage/dataframe.rst", "usage/groupby.rst", "usage/histogram.rst", "usage/indexing.rst", "usage/pdarray.rst", "usage/segarray.rst", "usage/series.rst", "usage/setops.rst", "usage/startup.rst", "usage/strings.rst"], "titles": ["Contributing", "Environment Variables", "arkouda.accessor", "arkouda.akscipy._stats_py", "arkouda.akscipy", "arkouda.akscipy.special._math", "arkouda.akscipy.special", "arkouda.alignment", "arkouda.array_api._array_object", "arkouda.array_api._constants", "arkouda.array_api._creation_functions", "arkouda.array_api._data_type_functions", "arkouda.array_api._dtypes", "arkouda.array_api._elementwise_functions", "arkouda.array_api._indexing_functions", "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._typing", "arkouda.array_api._utility_functions", "arkouda.array_api", "arkouda.array_api.linalg", "arkouda.array_view", "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.pdarrayclass", "arkouda.pdarraycreation", "arkouda.pdarraysetops", "arkouda.plotting", "arkouda.random._generator", "arkouda.random._legacy", "arkouda.random", "arkouda.row", "arkouda.security", "arkouda.segarray", "arkouda.series", "arkouda.sorting", "arkouda.strings", "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", "ArrayView in Arkouda", "Categoricals", "Creating Arrays", "DataFrames in Arkouda", "GroupBy", "Summarizing Data", "Indexing and Assignment", "The pdarray class", "SegArrays in Arkouda", "Series in Arkouda", "Array Set Operations", "Startup", "Strings in Arkouda"], "terms": {"i": [0, 1, 3, 4, 5, 6, 7, 8, 11, 20, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 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, 80, 81, 82, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99], "an": [0, 1, 7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 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], "open": [0, 7, 25, 28, 32, 33, 35, 36, 42, 46, 48, 51, 52, 54, 55, 80], "sourc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 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, 60, 68, 73, 75, 76, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 97, 98, 99, 100], "project": [0, 28, 32, 52, 59, 62, 75], "we": [0, 1, 8, 28, 32, 33, 35, 41, 42, 46, 48, 54, 56, 58, 59, 60, 62, 64, 66, 67, 70, 75, 76, 77, 79, 80, 93, 95], "love": 0, "see": [0, 1, 7, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 28, 30, 32, 41, 42, 45, 46, 48, 52, 54, 55, 56, 58, 59, 62, 63, 64, 73, 75, 78, 84, 87, 89, 92, 93, 95, 96, 97, 98, 100], "new": [0, 24, 25, 28, 30, 32, 33, 35, 36, 38, 39, 40, 41, 42, 45, 46, 51, 52, 54, 58, 62, 63, 64, 79, 91, 92, 95, 96, 97, 100], "contributor": [0, 3, 4, 32], "welcom": 0, "via": [0, 1, 25, 28, 30, 32, 42, 43, 54, 58, 75, 76, 77, 84, 89, 92, 94, 95, 100], "most": [0, 1, 27, 30, 32, 40, 52, 54, 59, 61, 62, 66, 68, 73, 75, 77, 80, 84, 90, 92, 95, 97, 100], "fall": [0, 56], "under": [0, 2, 24, 25, 27, 28, 30, 32, 33, 35, 42, 43, 51, 52, 54, 55, 59, 62, 84, 88, 89, 92, 95, 100], "broad": 0, "categori": [0, 25, 32, 53, 62, 68, 83, 86, 89], "If": [0, 1, 7, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 39, 40, 41, 42, 43, 44, 46, 48, 51, 52, 54, 55, 56, 58, 60, 61, 62, 63, 67, 68, 70, 73, 75, 76, 77, 78, 80, 81, 84, 87, 88, 89, 90, 91, 92, 95, 96, 97, 98, 99, 100], "your": [0, 1, 28, 32, 33, 35, 42, 54, 60, 61, 62, 64, 65, 73, 75, 76, 77, 78, 79, 80, 81, 91, 99, 100], "doesn": [0, 62, 75], "t": [0, 8, 20, 28, 32, 35, 54, 55, 58, 62, 63, 64, 75, 76, 77, 80, 82, 100], "fit": [0, 59, 62, 84], "either": [0, 25, 30, 32, 34, 35, 41, 42, 43, 44, 47, 48, 51, 52, 78, 80, 84, 96, 97, 98], "pleas": [0, 25, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 60, 62, 63, 66, 68, 70, 71, 75, 76, 77, 78, 89, 91, 92], "add": [0, 1, 13, 24, 25, 28, 30, 32, 35, 46, 48, 51, 52, 58, 62, 75, 76, 77, 78, 80, 91, 92], "anywai": [0, 90], "provid": [0, 11, 24, 25, 28, 30, 32, 33, 35, 42, 46, 48, 51, 52, 54, 56, 59, 61, 66, 67, 68, 70, 71, 75, 76, 77, 79, 84, 87, 91, 92, 96], "much": [0, 7, 24, 25, 28, 32, 35, 42, 51, 54, 61, 66, 68, 84, 88, 89, 95, 100], "detail": [0, 11, 20, 32, 34, 42, 59, 62, 75, 76, 77, 79, 93, 99, 100], "possibl": [0, 28, 32, 35, 41, 51, 54, 55, 58, 59, 62, 66, 75, 80, 84, 96, 100], "It": [0, 8, 27, 28, 32, 42, 50, 51, 56, 60, 61, 64, 66, 67, 68, 70, 73, 75, 76, 77, 80, 91, 92, 96], "alwai": [0, 30, 32, 35, 42, 55, 67, 84, 87, 89, 91, 92, 93, 95, 100], "good": [0, 62, 64], "idea": [0, 62, 64, 67, 84], "current": [0, 24, 25, 26, 28, 30, 32, 33, 34, 35, 41, 42, 43, 46, 48, 50, 54, 61, 62, 63, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 89, 90, 91, 92, 93, 95, 96, 99, 100], "list": [0, 7, 8, 10, 15, 20, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 41, 42, 43, 44, 45, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 71, 73, 75, 77, 78, 81, 84, 85, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "make": [0, 1, 25, 27, 28, 32, 41, 46, 48, 52, 55, 58, 59, 60, 61, 62, 64, 73, 75, 76, 77, 78, 80, 89, 91], "sure": [0, 28, 32, 33, 35, 42, 54, 62, 80], "alreadi": [0, 1, 25, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 63, 67, 68, 70, 75, 89, 92, 98], "present": [0, 7, 25, 27, 28, 32, 33, 35, 41, 42, 44, 51, 52, 54, 66, 68, 84, 93, 98], "us": [0, 1, 3, 4, 7, 8, 20, 25, 26, 27, 28, 30, 31, 32, 33, 35, 38, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 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], "github": [0, 3, 4, 32, 62, 64, 75, 76, 77, 81], "markdown": [0, 28, 32, 52], "especi": [0, 25, 28, 32, 64, 77, 89], "block": [0, 25, 32, 44, 54, 58, 66, 73, 90], "veri": [0, 28, 32, 66, 90, 91], "appreci": 0, "when": [0, 1, 7, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 44, 51, 52, 54, 55, 56, 58, 59, 62, 63, 64, 66, 68, 70, 73, 75, 77, 78, 79, 80, 84, 87, 89, 91, 92, 95, 96, 98], "includ": [0, 1, 7, 28, 30, 32, 33, 34, 35, 41, 42, 52, 54, 55, 58, 59, 62, 67, 68, 73, 75, 76, 78, 84, 87, 91, 92, 95, 96], "follow": [0, 1, 3, 4, 7, 26, 32, 41, 58, 59, 60, 62, 73, 75, 76, 77, 78, 79, 80, 81, 87, 89, 92, 95, 96, 98, 99, 100], "inform": [0, 1, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 25, 26, 30, 32, 34, 42, 46, 48, 54, 59, 62, 63, 64, 66, 67, 68, 70, 71, 73, 75, 76, 77, 78, 79, 89, 96, 98, 100], "summari": [0, 28, 32], "problem": [0, 59, 73, 82], "what": [0, 29, 32, 46, 51, 58, 62, 63, 64, 78, 99], "behavior": [0, 8, 28, 32, 42, 43, 46, 47, 48, 87, 88, 90, 91, 100], "did": [0, 26], "you": [0, 1, 25, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 58, 59, 60, 62, 63, 64, 65, 66, 68, 69, 73, 75, 76, 77, 78, 79, 80, 81, 91, 92, 94], "observ": [0, 3, 4, 32, 42, 87], "encount": [0, 32, 35], "expect": [0, 3, 4, 24, 28, 30, 32, 33, 35, 42, 54, 59, 68, 76, 77, 84, 88, 92, 95], "thi": [0, 1, 3, 4, 8, 20, 24, 25, 26, 27, 28, 30, 32, 33, 35, 38, 41, 42, 43, 45, 46, 48, 49, 50, 51, 52, 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, 93, 95, 96, 97, 98, 99, 100], "known": [0, 32, 41], "work": [0, 25, 28, 32, 35, 42, 44, 49, 54, 63, 66, 68, 70, 73, 76, 77, 78, 84, 89, 91, 94, 98, 100], "around": [0, 8, 20, 27, 32, 62, 64], "step": [0, 10, 30, 32, 59, 60, 61, 64, 75, 78, 81, 98, 99], "reproduc": [0, 32, 46, 47, 48, 65, 90], "simplifi": [0, 59], "program": [0, 25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 73, 92, 99], "demonstr": [0, 58], "configur": [0, 1, 59, 66, 73, 77, 80, 85, 91, 97], "": [0, 1, 2, 7, 24, 25, 26, 28, 29, 30, 32, 33, 34, 35, 36, 41, 42, 50, 51, 52, 54, 55, 58, 61, 62, 66, 75, 76, 77, 80, 81, 82, 84, 87, 88, 89, 91, 92, 93, 95, 96, 97, 99, 100], "output": [0, 1, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 46, 48, 51, 52, 54, 62, 66, 70, 73, 84, 87, 92, 93, 95, 98, 99], "ak": [0, 1, 3, 4, 5, 6, 7, 13, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 63, 64, 66, 67, 73, 75, 78, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100], "get_config": [0, 26], "like": [0, 2, 7, 27, 28, 30, 32, 42, 46, 48, 55, 60, 62, 63, 64, 66, 69, 73, 75, 78, 84, 85, 91, 92, 94, 97, 99, 100], "arkoudavers": 0, "version": [0, 3, 4, 25, 28, 32, 56, 59, 62, 68, 73, 75, 76, 77, 79, 80], "server": [0, 1, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 38, 39, 42, 43, 46, 47, 48, 50, 51, 52, 54, 55, 61, 63, 64, 76, 77, 80, 82, 83, 87, 88, 89, 90, 91, 92, 93, 95, 96, 100], "wa": [0, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 51, 52, 54, 55, 63, 68, 69, 75, 77, 84, 92, 95, 96], "built": [0, 24, 25, 32, 42, 54, 60, 62, 63, 64, 73, 75, 77, 78, 84, 88, 89, 95, 100], "Be": [0, 28, 32, 33, 35, 42, 54, 58], "specif": [0, 8, 20, 28, 32, 35, 46, 48, 64, 67, 68, 69, 76, 78, 83, 84, 91], "exampl": [0, 3, 4, 5, 6, 7, 20, 24, 25, 26, 28, 30, 32, 33, 35, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 59, 62, 68, 73, 75, 77, 78, 80, 84, 86, 87, 88, 90, 91, 92, 93, 95, 96, 98, 99, 100], "appropri": [0, 28, 32, 35, 58, 62, 69, 73, 75, 79, 84], "base": [0, 1, 2, 3, 4, 7, 8, 17, 20, 24, 25, 27, 28, 31, 32, 33, 35, 38, 41, 42, 46, 49, 53, 55, 56, 62, 75, 77, 81, 83, 84, 85, 86, 87, 88, 89, 91, 95, 97, 100], "anoth": [0, 28, 30, 32, 35, 41, 42, 54, 68, 73, 77, 80, 84, 91, 92, 94, 95, 96, 100], "librari": [0, 1, 58, 80, 100], "e": [0, 1, 2, 7, 9, 25, 27, 28, 30, 32, 35, 41, 42, 43, 51, 52, 54, 55, 58, 62, 63, 64, 76, 77, 79, 84, 87, 89, 90, 92, 96, 99, 100], "numpi": [0, 3, 4, 5, 6, 8, 20, 24, 25, 27, 29, 30, 32, 33, 37, 41, 42, 43, 46, 48, 51, 52, 54, 55, 58, 59, 66, 79, 82, 84, 87, 88, 89, 90, 93, 94, 95, 96, 98, 100], "panda": [0, 28, 32, 33, 35, 43, 52, 55, 58, 69, 71, 79, 84, 85, 89, 91], "scipi": [0, 3, 4, 32, 79], "link": [0, 1, 32, 35, 55, 62, 75, 76], "support": [0, 25, 27, 28, 29, 30, 32, 33, 35, 36, 41, 42, 43, 44, 46, 50, 51, 52, 54, 55, 58, 66, 69, 73, 76, 77, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "document": [0, 1, 57, 58, 59, 63, 64, 66, 71, 77, 78], "refer": [0, 3, 4, 28, 30, 32, 52, 63, 66, 75, 77, 79, 92], "don": [0, 28, 32, 35, 54, 63, 64, 80], "have": [0, 1, 5, 6, 7, 25, 28, 30, 32, 33, 35, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55, 58, 61, 62, 63, 64, 66, 67, 68, 70, 75, 76, 77, 78, 79, 84, 87, 89, 90, 91, 92, 95, 96, 97], "anyth": [0, 32, 42, 62], "mind": [0, 20, 66, 80], "check": [0, 1, 7, 20, 24, 25, 28, 30, 32, 33, 35, 41, 42, 51, 54, 56, 58, 62, 63, 64, 82, 89, 98, 99, 100], "out": [0, 26, 28, 32, 41, 51, 63, 64, 67, 68, 70, 75, 78, 93, 94, 96], "our": [0, 32, 42, 58, 59, 61, 62, 66, 68, 73, 75, 80, 81, 84], "outstand": 0, "filter": [0, 28, 31, 32, 51, 84], "label": [0, 25, 28, 30, 32, 33, 45, 52, 89, 91, 92, 97], "first": [0, 7, 28, 30, 32, 35, 36, 41, 42, 43, 44, 52, 54, 56, 60, 64, 65, 66, 67, 68, 73, 75, 76, 78, 83, 84, 87, 90, 91, 92, 93, 97, 100], "identifi": [0, 7, 25, 32, 35, 42, 95], "befor": [0, 32, 55, 59, 75, 84], "start": [0, 7, 8, 10, 20, 25, 28, 30, 32, 33, 37, 39, 42, 43, 51, 52, 53, 54, 55, 68, 83, 86, 89, 90, 92, 94, 96, 100], "onc": [0, 28, 32, 35, 42, 52, 54, 60, 61, 62, 64, 66, 67, 70, 75, 80], "find": [0, 7, 25, 28, 30, 32, 40, 42, 44, 50, 52, 54, 56, 59, 62, 65, 76, 87, 92, 93, 98, 100], "creat": [0, 24, 25, 27, 28, 30, 32, 33, 35, 36, 40, 42, 43, 45, 51, 52, 54, 55, 57, 58, 59, 62, 64, 68, 70, 73, 75, 76, 77, 78, 79, 80, 83, 84, 88, 89, 91, 92, 93, 95], "intend": [0, 25, 27, 28, 32, 41, 42, 51, 54, 67, 73, 76, 77, 85, 91, 97], "leav": [0, 32, 41, 93], "comment": [0, 63, 78], "indic": [0, 7, 11, 14, 17, 24, 25, 26, 27, 28, 30, 32, 33, 35, 37, 39, 41, 42, 44, 51, 52, 53, 54, 55, 56, 66, 68, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 97, 98, 100], "mention": [0, 64], "bear": [0, 62, 76, 77], "r": [0, 28, 32, 59, 62, 66, 76, 77, 82], "u": [0, 27, 32, 43, 55, 62, 76, 77, 84], "dev": [0, 76, 77, 79], "awar": 0, "assign": [0, 25, 28, 30, 32, 52, 67, 68, 83, 89, 92, 96, 100], "avoid": [0, 61, 64], "anyon": 0, "duplic": [0, 28, 32, 91], "need": [0, 8, 25, 28, 32, 35, 42, 51, 52, 54, 58, 59, 62, 63, 64, 67, 75, 76, 77, 78, 80, 84, 91, 97], "assist": [0, 78], "want": [0, 1, 28, 32, 73, 77, 79, 91], "discuss": 0, "design": [0, 62, 84], "someon": [0, 62], "tag": [0, 32, 35, 38, 62, 64], "reach": 0, "git": [0, 64, 76, 77], "fork": [0, 75, 76, 77, 81], "workflow": [0, 32, 35, 56, 62, 78, 84], "recommend": [0, 32, 41, 46, 48, 60, 64, 70, 76, 79, 80, 81, 91, 96], "simpl": [0, 20, 66, 78, 93], "branch": [0, 58, 59, 62, 75], "own": [0, 1, 32, 55, 96, 100], "standard": [0, 8, 25, 30, 32, 42, 43, 46, 47, 48, 55, 58, 59, 60, 87, 92, 93], "laid": 0, "pep8": 0, "continu": [0, 62], "integr": [0, 30, 32, 35, 42, 43, 47, 48, 62, 84, 90, 92], "ha": [0, 8, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 51, 52, 54, 55, 60, 62, 63, 67, 68, 78, 84, 87, 89, 90, 91, 92, 94, 95, 96, 97], "linter": 0, "flake8": [0, 79], "verifi": [0, 1, 28, 32, 69, 84, 91], "all": [0, 7, 21, 24, 25, 26, 28, 30, 32, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44, 45, 46, 48, 51, 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], "meet": 0, "requir": [0, 7, 8, 20, 26, 28, 30, 32, 33, 35, 37, 42, 43, 52, 60, 61, 63, 64, 68, 69, 70, 73, 78, 84, 90, 91, 92], "isort": 0, "black": 0, "typic": [0, 27, 32, 58, 63, 64, 89], "order": [0, 3, 4, 24, 25, 27, 28, 30, 32, 35, 41, 42, 43, 44, 51, 52, 53, 54, 56, 60, 68, 70, 75, 83, 86, 88, 89, 90, 91, 92, 93, 94, 96, 97, 100], "ensur": [0, 28, 32, 41, 62, 68, 75, 77, 91, 95], "consist": [0, 28, 32, 41, 66, 87, 91], "util": [0, 32, 35, 57, 62, 75, 76, 77], "line": [0, 36, 63, 67, 73, 78, 88, 99], "length": [0, 7, 25, 30, 32, 33, 35, 37, 39, 43, 44, 47, 48, 50, 51, 52, 54, 59, 68, 82, 87, 90, 92, 96, 97, 98, 100], "105": [0, 26], "paramet": [0, 3, 4, 5, 6, 7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 77, 84, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "example_featur": 0, "py": [0, 1, 58, 59, 63, 75, 78, 79, 82], "fix": [0, 32, 41, 55, 62, 80, 100], "reformat": [0, 84], "done": [0, 28, 32, 64, 75, 78, 91], "1": [0, 1, 3, 4, 5, 6, 7, 10, 18, 23, 24, 25, 26, 28, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 56, 57, 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], "file": [0, 1, 20, 24, 25, 28, 30, 32, 33, 35, 36, 42, 50, 51, 52, 54, 58, 60, 63, 64, 69, 70, 73, 75, 76, 77, 79, 80, 92, 100], "For": [0, 2, 7, 25, 30, 32, 35, 39, 43, 46, 47, 48, 53, 54, 55, 56, 58, 59, 63, 66, 71, 73, 75, 76, 77, 78, 81, 84, 86, 90, 92, 93, 94, 95, 96, 98, 100], "user": [0, 1, 24, 25, 27, 28, 30, 32, 33, 35, 38, 41, 42, 43, 45, 50, 51, 52, 54, 55, 56, 59, 62, 65, 66, 68, 69, 71, 73, 75, 76, 77, 78, 79, 80, 81, 84, 88, 89, 92, 95, 100], "pycharm": 0, "nice": 0, "interoper": 0, "tool": [0, 76, 77], "style": [0, 25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 91, 92, 95], "doc": [0, 3, 4, 28, 32, 52, 58, 75, 76, 88], "string": [0, 1, 3, 4, 7, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44, 50, 51, 52, 53, 55, 56, 57, 58, 59, 62, 78, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98], "look": [0, 1, 58, 62, 63, 66, 78, 84, 99], "similar": [0, 32, 35, 54, 59, 66, 84, 95, 96, 100], "surround": 0, "function": [0, 1, 8, 20, 25, 52, 54, 59, 62, 63, 66, 67, 69, 70, 73, 78, 83, 84, 85, 88, 89, 91, 92, 93, 95, 96, 97, 98, 100], "space": [0, 1, 7, 32, 41, 43, 54, 55, 59, 75, 78, 90, 93, 100], "The": [0, 1, 2, 3, 4, 7, 8, 20, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 41, 42, 43, 44, 46, 47, 48, 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, 94, 96, 97, 98, 99, 100], "ci": 0, "fail": [0, 28, 32, 35, 41, 62, 84, 91, 95], "tab": [0, 62, 75], "ar": [0, 1, 7, 8, 20, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 46, 48, 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, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "lowercamelcas": 0, "variabl": [0, 30, 32, 35, 37, 42, 50, 51, 54, 59, 60, 76, 77, 78, 87, 92, 96, 100], "name": [0, 1, 2, 7, 20, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 38, 42, 43, 46, 47, 48, 51, 52, 54, 55, 56, 59, 60, 62, 66, 67, 68, 70, 75, 77, 78, 79, 83, 84, 85, 89, 90, 91, 92, 97], "procedur": 0, "var": [0, 1, 19, 30, 32, 42, 58, 83, 87, 92, 93], "ax": [0, 15], "0": [0, 3, 4, 5, 6, 7, 10, 15, 19, 20, 24, 25, 26, 28, 30, 32, 33, 35, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 59, 60, 66, 67, 68, 73, 76, 77, 79, 80, 82, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "real": [0, 13, 32, 43, 47, 48, 62, 68], "proc": [0, 58], "printit": 0, "x": [0, 3, 4, 5, 6, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 27, 28, 29, 30, 32, 35, 41, 42, 45, 51, 54, 56, 66, 80, 84, 87, 88, 89, 91, 92, 95, 96, 100], "writeln": 0, "uppercamelcas": 0, "class": [0, 43, 59, 83, 84, 85, 88, 89, 91, 92, 96, 97, 100], "foo": [0, 2, 32], "foopar": 0, "re": [0, 25, 26, 28, 30, 32, 75, 92, 99, 100], "confirm": [0, 62], "again": [0, 64, 66, 67, 75, 76], "realli": [0, 32, 54], "behav": [0, 24, 32, 88], "properli": [0, 63, 68, 76, 77], "thing": [0, 8, 20, 66], "note": [0, 1, 2, 3, 4, 7, 8, 20, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 60, 64, 66, 68, 70, 75, 77, 78, 80, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "test_": 0, "begin": [0, 32, 54, 94, 100], "otherwis": [0, 24, 25, 28, 29, 30, 32, 33, 35, 39, 42, 43, 44, 51, 52, 54, 56, 58, 81, 84, 88, 89, 91, 92, 95, 96, 98, 100], "pytest": [0, 65, 79], "ini": [0, 59], "so": [0, 1, 25, 27, 28, 30, 32, 35, 41, 42, 46, 48, 51, 52, 54, 59, 61, 62, 63, 64, 78, 79, 80, 84, 87, 88, 91, 92, 97, 98], "dure": [0, 1, 32, 35, 56, 64, 66, 68, 69, 78, 79], "wiki": [0, 3, 4, 32], "more": [0, 1, 7, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 24, 25, 28, 32, 33, 35, 41, 42, 52, 54, 55, 58, 59, 60, 62, 63, 64, 66, 68, 70, 71, 73, 75, 76, 77, 79, 84, 88, 89, 91, 95, 96, 100], "info": [0, 1, 25, 28, 32, 34, 38, 42, 54], "how": [0, 24, 25, 27, 28, 32, 33, 35, 41, 42, 51, 54, 58, 59, 62, 67, 79, 88, 92, 95], "http": [0, 3, 4, 11, 28, 32, 52, 56, 58, 76, 77, 88], "com": [0, 3, 4, 32, 76, 77], "unit": [0, 1, 26, 28, 32, 33, 41, 52, 55, 56], "categoricaltest": 0, "v": [0, 51, 62, 76, 82, 96], "print": [0, 1, 25, 26, 28, 32, 34, 42, 49, 52, 54, 80, 99], "m": [0, 32, 33, 39, 41, 51, 55, 59, 75, 80, 100], "categorical_test": 0, "singl": [0, 2, 7, 8, 20, 24, 25, 27, 28, 30, 32, 33, 35, 37, 41, 42, 44, 46, 48, 51, 54, 63, 64, 66, 68, 70, 75, 78, 82, 84, 90, 91, 92, 94, 96, 98], "from": [0, 3, 4, 5, 6, 7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 35, 36, 38, 39, 41, 42, 43, 45, 46, 47, 48, 51, 52, 54, 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], "foo_test": 0, "server_util": [0, 1], "parallel_start_test": 0, "d": [0, 8, 20, 25, 32, 43, 44, 45, 46, 48, 51, 52, 54, 55, 66, 82, 96, 98, 100], "post": [0, 62], "local": [0, 1, 24, 25, 26, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 56, 59, 60, 68, 73, 75, 76, 77, 84, 90, 92, 97, 99], "catch": 0, "common": [0, 7, 30, 32, 44, 58, 80, 84, 92, 98, 100], "failur": [0, 32, 35, 75, 84], "earli": 0, "usual": [0, 30, 32, 58, 92], "mypi": [0, 79], "everi": [0, 1, 28, 32, 59, 91, 100], "should": [0, 1, 8, 20, 25, 28, 29, 30, 32, 35, 41, 42, 43, 52, 54, 56, 58, 62, 63, 64, 66, 67, 68, 69, 73, 75, 76, 77, 79, 84, 91, 92, 95, 99], "least": [0, 27, 28, 32, 42, 51, 53, 54, 86, 96], "one": [0, 1, 2, 7, 8, 20, 25, 28, 29, 30, 32, 33, 35, 36, 41, 42, 43, 44, 46, 48, 51, 52, 54, 58, 59, 62, 64, 66, 67, 68, 70, 73, 76, 77, 78, 79, 80, 84, 87, 89, 90, 91, 92, 96, 98, 100], "associ": [0, 1, 32, 35, 46, 48, 52, 56, 59, 62, 84, 96, 97], "number": [0, 1, 7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 35, 37, 40, 41, 42, 43, 46, 47, 48, 51, 52, 54, 55, 56, 59, 60, 62, 63, 64, 66, 68, 76, 78, 80, 82, 84, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "titl": [0, 32, 54, 62], "bodi": 0, "close": [0, 7, 32, 43, 55, 58, 66, 90], "keyword": [0, 25, 32, 46, 48, 51, 52, 90, 97], "doubt": [0, 62], "take": [0, 14, 27, 30, 32, 38, 42, 46, 48, 60, 61, 63, 64, 66, 69, 84, 92], "some": [0, 8, 25, 28, 32, 60, 66, 70, 75, 76, 89, 91, 96, 100], "99999": 0, "pr": [0, 62], "implement": [0, 8, 25, 26, 27, 28, 31, 32, 41, 42, 44, 46, 50, 51, 52, 54, 58, 67, 73, 87, 90, 99, 100], "arg": [0, 7, 32, 43, 51, 52, 55, 58, 78, 90, 92], "super": 0, "cool": 0, "help": [0, 27, 32, 78], "keep": [0, 7, 28, 32, 66, 77, 80, 84, 91], "part": [0, 8, 20, 32, 51, 54, 80, 100], "those": [0, 8, 20, 32, 53, 66, 76, 78, 86, 94], "As": [0, 32, 41, 42, 52, 62, 67, 69, 76, 77, 84, 87, 95, 97, 100], "person": 0, "who": [0, 76, 77], "left": [0, 7, 27, 28, 32, 41, 42, 53, 54, 55, 86, 93, 100], "feedback": 0, "resolv": [0, 61, 73, 80], "convers": [0, 25, 32, 84, 89, 95, 100], "decid": 0, "author": 0, "address": [0, 26, 27, 32, 99], "try": [0, 29, 32, 33, 35, 42, 80], "feel": 0, "readi": [0, 60, 62, 76, 77], "necessari": [0, 58, 62, 75, 80], "track": [0, 63, 70], "ani": [0, 7, 21, 24, 25, 28, 30, 32, 33, 34, 35, 36, 41, 42, 43, 46, 48, 51, 52, 54, 58, 59, 62, 64, 68, 70, 76, 77, 83, 87, 91, 92, 93, 95, 96, 100], "which": [0, 7, 24, 25, 26, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 55, 58, 59, 61, 62, 64, 66, 75, 76, 77, 78, 82, 84, 86, 87, 88, 89, 90, 91, 92, 95, 96, 98, 99, 100], "outsid": [0, 67, 78], "scope": [0, 78], "member": 0, "quit": [0, 73], "bit": [0, 11, 25, 27, 32, 41, 42, 43, 51, 54, 59, 63, 84, 88, 90, 91, 95], "experi": [0, 84], "unsur": 0, "ask": 0, "2": [0, 3, 4, 5, 6, 7, 24, 25, 28, 30, 32, 33, 35, 39, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 56, 58, 59, 60, 62, 66, 67, 68, 75, 76, 77, 78, 79, 80, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "concurr": [0, 84], "approv": 0, "limit": [0, 8, 24, 25, 32, 37, 42, 43, 54, 55, 67, 70, 73, 84, 88, 89, 91, 95, 100], "except": [0, 7, 32, 42, 58, 66, 76, 100], "after": [0, 25, 28, 32, 54, 62, 64, 75, 91, 100], "pass": [0, 1, 7, 20, 25, 27, 28, 30, 32, 35, 41, 42, 46, 51, 52, 54, 62, 84, 91, 92, 97], "conflict": 0, "ideal": [0, 62], "rebas": 0, "master": [0, 62, 75], "prefer": [0, 77, 79, 81], "wrote": 0, "best": [0, 7, 32], "practic": [0, 30, 32, 42, 78, 87, 92], "els": [0, 58, 62], "To": [0, 1, 28, 30, 32, 41, 46, 48, 55, 58, 59, 60, 64, 67, 73, 75, 77, 78, 88, 89, 91, 93, 95, 100], "commit": [0, 62], "histori": [0, 26, 32, 57, 62], "allow": [0, 3, 4, 25, 27, 28, 32, 33, 35, 38, 42, 43, 46, 47, 48, 51, 52, 54, 56, 59, 60, 66, 68, 69, 71, 78, 80, 84, 90, 96], "easi": [0, 32, 38, 59, 62, 66, 75], "manipul": 0, "squash": 0, "web": [0, 62], "interfac": [0, 62], "pierce314159": 0, "ethan": 0, "debandi99": 0, "consensu": [0, 62], "There": [1, 30, 32, 35, 59, 66, 75, 80, 90, 98], "can": [1, 7, 20, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 47, 48, 50, 51, 52, 54, 55, 58, 59, 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], "role": 1, "develop": [1, 25, 32, 62, 63, 64, 76, 77, 78, 81, 84], "highlight": [1, 62, 66], "variou": [1, 67], "avail": [1, 26, 32, 35, 42, 46, 59, 64, 68, 80, 84, 93], "separ": [1, 8, 27, 28, 32, 33, 35, 36, 42, 54, 59, 67, 68, 78, 84, 95, 100], "section": [1, 32, 41, 59, 61, 62, 63, 64, 66, 68, 73, 75, 79, 87], "These": [1, 20, 28, 32, 52, 66, 68, 71, 73, 84], "env": [1, 63, 73, 75, 76, 77, 79], "arkouda_serv": [1, 26, 29, 32, 60, 63, 64, 73, 75, 78, 99], "arkouda_server_connection_info": 1, "set": [1, 7, 24, 25, 27, 28, 30, 32, 33, 35, 38, 41, 42, 43, 44, 50, 51, 52, 54, 55, 59, 60, 62, 67, 68, 75, 76, 77, 78, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 100], "write": [1, 24, 25, 28, 32, 33, 35, 36, 38, 42, 51, 52, 54, 59, 62, 67, 84, 88], "port": [1, 25, 26, 28, 32, 35, 42, 51, 52, 54, 63, 73, 82, 99], "startup": [1, 73, 83], "tune": 1, "buffer": 1, "messag": [1, 24, 25, 26, 28, 32, 33, 38, 42, 43, 51, 54, 58, 73, 84], "aggreg": [1, 28, 30, 32, 51, 56, 66, 83, 84, 92], "sort": [1, 7, 18, 25, 28, 30, 32, 41, 42, 44, 51, 52, 54, 56, 57, 62, 82, 83, 87, 89, 90, 92, 93, 98, 100], "non": [1, 7, 25, 28, 30, 32, 40, 41, 42, 43, 44, 46, 47, 48, 52, 53, 54, 61, 84, 86, 87, 90, 92, 93, 94, 100], "crazi": 1, "system": [1, 24, 25, 32, 42, 50, 54, 58, 59, 77, 78, 79, 80, 81, 84, 87, 88, 89, 95, 99, 100], "thei": [1, 20, 25, 26, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 56, 60, 62, 67, 68, 69, 76, 77, 84, 88, 89, 92, 97], "per": [1, 24, 25, 26, 28, 30, 32, 33, 35, 42, 51, 54, 58, 59, 64, 68, 78, 84, 87, 92], "task": [1, 26], "content": [1, 67, 84], "between": [1, 25, 26, 32, 37, 41, 42, 43, 54, 55, 56, 59, 66, 78, 90, 93, 95, 100], "compet": 1, "arkouda_server_aggregation_dst_buff_s": 1, "commun": [1, 32, 53, 62, 77, 86, 90], "arkouda_server_aggregation_src_buff_s": 1, "arkouda_server_aggregation_yield_frequ": 1, "frequenc": [1, 3, 4, 32, 55], "yield": [1, 24, 25, 28, 32, 33, 35, 42, 51, 54, 91, 94], "default": [1, 3, 4, 7, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 37, 38, 39, 41, 42, 43, 44, 46, 47, 48, 50, 51, 52, 54, 55, 56, 59, 61, 67, 68, 73, 77, 78, 82, 84, 87, 88, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100], "1024": [1, 32, 42], "build": [1, 30, 32, 59, 62, 65, 73, 76, 80, 92, 99], "chpl_flag": [1, 61], "A": [1, 2, 24, 25, 26, 27, 28, 30, 31, 32, 35, 41, 42, 43, 45, 46, 50, 51, 52, 54, 62, 66, 72, 82, 84, 87, 88, 89, 91, 93, 94, 95, 96, 97, 98, 100], "automat": [1, 25, 32, 35, 52, 68, 84, 89, 97], "chpl": [1, 58, 63, 75, 76, 77, 78], "addit": [1, 30, 32, 41, 45, 46, 48, 58, 60, 68, 70, 76, 95, 98, 99], "ones": [1, 10, 26, 28, 32, 41, 43, 59, 63, 82, 83, 87, 90], "here": [1, 32, 54, 56, 59, 60, 63, 64, 65, 66, 68, 70, 75, 77, 78, 79, 80, 81, 99], "smemtrack": 1, "true": [1, 7, 10, 11, 18, 24, 25, 26, 27, 28, 30, 32, 33, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55, 56, 59, 66, 77, 84, 85, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "lhdf5": 1, "lhdf5_hl": 1, "lzmq": 1, "liconv": 1, "lidn2": 1, "fast": [1, 25, 32, 54], "unless": [1, 32, 35, 41, 46, 48, 54, 100], "arkouda_develop": [1, 63], "o1": 1, "mutual": 1, "exclus": [1, 32, 37, 43, 44, 46, 47, 48, 66, 90, 94, 98], "arkouda_quick_compil": [1, 63, 77], "loop": 1, "invari": 1, "code": [1, 3, 4, 25, 32, 33, 35, 53, 58, 62, 63, 66, 68, 73, 78, 83, 86, 89], "motion": 1, "ccflag": 1, "o0": 1, "arkouda_print_passes_fil": 1, "time": [1, 25, 26, 28, 30, 32, 33, 35, 37, 41, 42, 46, 51, 52, 54, 55, 59, 61, 63, 64, 67, 68, 70, 78, 82, 84, 89, 92, 93, 96, 98, 100], "specifi": [1, 7, 8, 11, 15, 24, 27, 28, 30, 32, 33, 35, 36, 42, 43, 45, 46, 47, 48, 51, 52, 54, 55, 56, 59, 63, 69, 84, 87, 88, 90, 91, 92, 96], "mainli": 1, "nightli": 1, "infrastructur": 1, "chpl_debug_flag": 1, "regex_max_captur": 1, "integ": [1, 25, 27, 28, 30, 32, 35, 37, 41, 42, 43, 44, 46, 48, 55, 68, 83, 87, 88, 89, 90, 91, 92, 95, 96, 98, 100], "chang": [1, 27, 28, 32, 33, 35, 42, 46, 59, 62, 64, 73, 76, 77, 79, 84, 87, 91], "maximum": [1, 26, 28, 30, 32, 33, 42, 43, 47, 48, 56, 59, 84, 87, 90, 91, 92, 93], "captur": [1, 39, 100], "group": [1, 25, 28, 30, 32, 39, 51, 52, 53, 54, 59, 66, 68, 83, 86, 89, 91, 92, 97, 98, 100], "access": [1, 2, 26, 32, 35, 50, 52, 54, 66, 71, 77, 83, 84, 99], "match": [1, 20, 24, 25, 28, 30, 32, 33, 35, 40, 41, 42, 43, 51, 52, 54, 55, 57, 59, 83, 84, 87, 88, 90, 92, 95, 97, 99], "20": [1, 3, 4, 7, 28, 32, 41, 46, 48, 62, 66, 79, 80, 87, 88, 94], "folk": 1, "instal": [1, 32, 42, 63, 80, 99], "anaconda": [1, 73, 75, 80, 81], "through": [1, 32, 41, 58, 60, 62, 73, 77], "instruct": [1, 32, 54, 73, 76, 77, 79, 80, 81, 99], "altern": [1, 62, 63, 75, 77, 80], "setup": [1, 75, 80], "them": [1, 28, 32, 35, 44, 54, 62, 76, 84, 91, 98], "explicitli": [1, 28, 32, 44, 78, 98], "arkouda_zmq_path": 1, "zmq": [1, 75], "arkouda_hdf5_path": 1, "hdf5": [1, 24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 67, 69, 70, 71, 75, 79, 84, 92, 100], "arkouda_arrow_path": 1, "arrow": [1, 79], "arkouda_iconv_path": 1, "iconv": [1, 75, 79], "arkouda_idn2_path": 1, "idn2": [1, 75, 79], "ld_library_path": 1, "lib": [1, 75, 80, 98], "arkouda_skip_check_dep": 1, "skip": [1, 30, 32, 35, 54, 76, 84, 92, 98, 100], "autom": [1, 62], "do": [1, 7, 24, 25, 26, 28, 30, 32, 33, 35, 41, 42, 51, 52, 54, 59, 63, 64, 76, 78, 79, 81, 87, 88, 91, 92, 97], "repeat": [1, 25, 32, 51, 89, 96], "sinc": [1, 8, 32, 41, 46, 64, 89, 91, 95, 100], "dep": [1, 75, 76, 77], "been": [1, 25, 26, 28, 32, 35, 42, 44, 51, 54, 60, 61, 62, 75, 78, 87, 89, 90], "up": [1, 7, 25, 26, 28, 30, 32, 35, 41, 42, 44, 51, 54, 58, 61, 64, 65, 75, 76, 77, 78, 84, 87, 88, 89, 90, 98, 100], "arkouda_server_user_modul": [1, 78], "absolut": [1, 32, 41, 55, 78, 87], "must": [1, 5, 6, 7, 25, 26, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 45, 46, 48, 51, 52, 54, 55, 58, 60, 63, 66, 67, 73, 75, 76, 78, 87, 90, 91, 92, 94, 95, 96, 97, 99, 100], "also": [1, 7, 8, 25, 27, 30, 32, 37, 41, 43, 44, 51, 52, 54, 61, 63, 66, 67, 69, 70, 71, 73, 76, 80, 84, 90, 94, 95, 96, 98, 100], "servermodul": [1, 63, 64, 78], "cfg": [1, 63, 64, 78], "regist": [1, 25, 27, 28, 30, 32, 33, 34, 42, 51, 52, 54, 55, 56, 58, 83, 92], "readm": 1, "verbos": [1, 32, 34, 38], "arkouda_verbos": 1, "arkouda_server_host": 1, "hostnam": [1, 25, 26, 28, 32, 35, 42, 51, 54, 63, 73, 82, 99], "arkouda_server_port": 1, "arkouda_client_timeout": 1, "control": [1, 27, 32, 41, 95], "timeout": [1, 26, 99], "arkouda_full_stack_test": 1, "option": [1, 7, 25, 26, 27, 28, 30, 31, 32, 33, 35, 37, 39, 42, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55, 58, 59, 62, 68, 73, 75, 76, 77, 79, 82, 84, 90, 91, 92, 97, 98, 99, 100], "test_data_url": 1, "readalltest": 1, "read_all_test": 1, "arkouda_numlocal": 1, "where": [1, 16, 25, 26, 28, 30, 32, 33, 35, 36, 37, 41, 42, 43, 44, 50, 51, 54, 56, 58, 59, 60, 61, 68, 76, 77, 83, 84, 92, 93, 94, 95, 96, 98, 99, 100], "found": [1, 7, 28, 32, 33, 35, 42, 54, 58, 59, 66, 70, 77, 78, 80], "arkouda_hom": 1, "locat": [1, 30, 32, 33, 41, 42, 50, 52, 54, 59, 62, 64, 75, 80, 87, 92, 97, 100], "execut": [1, 26, 31, 32, 35, 42, 54, 58, 60, 61, 63, 64, 67, 75, 76, 78, 89, 99], "warn": [1, 32, 35, 38, 54, 84, 100], "subject": [1, 32, 55], "futur": [1, 27, 32, 35, 46, 54, 84, 93], "intern": [1, 8, 20, 32, 37, 42, 54, 62], "arkouda_client_directori": [1, 50], "parent": [1, 28, 32, 40], "token": [1, 26, 50, 73, 99], "txt": 1, "arkouda_tunnel_serv": 1, "ssh": 1, "tunnel": 1, "url": [1, 26, 28, 32, 52, 73, 75, 99], "arkouda_key_fil": 1, "keyfil": 1, "arkouda_password": 1, "password": [1, 28, 32, 52, 80], "arkouda_log_level": 1, "side": [1, 24, 25, 26, 28, 30, 32, 33, 34, 35, 39, 42, 43, 46, 48, 51, 52, 54, 55, 58, 62, 63, 73, 78, 80, 84, 87, 88, 89, 92, 93, 94, 95, 96, 99, 100], "log": [1, 3, 4, 5, 6, 13, 30, 32, 38, 41, 43, 45, 54, 83, 87, 92], "level": [1, 32, 38, 44, 52, 59, 63, 67, 68, 75, 76, 77, 78, 81, 84, 97, 98], "arkouda_client_mod": 1, "mode": [1, 24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 83, 90, 92], "ui": 1, "api": [1, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 28, 30, 32, 52, 56, 58, 72, 92, 95], "displai": [1, 27, 28, 32, 45, 52, 56, 75, 80, 91], "splash": 1, "cachedaccessor": [2, 32], "str": [2, 10, 11, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 50, 51, 52, 54, 55, 56, 59, 67, 84, 85, 87, 88, 89, 90, 91, 92, 95, 99, 100], "custom": [2, 32, 38, 58, 67, 75, 93], "properti": [2, 8, 20, 25, 28, 32, 33, 42, 51, 52, 55, 58, 68], "object": [2, 7, 8, 10, 20, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44, 45, 46, 50, 51, 52, 54, 55, 56, 58, 67, 68, 69, 70, 71, 80, 83, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "descriptor": [2, 32, 54], "cach": [2, 25, 32, 54], "param": [2, 25, 32, 33, 35, 42, 51, 54, 59], "namespac": [2, 8, 20, 32, 35], "g": [2, 25, 27, 28, 30, 32, 35, 41, 42, 51, 52, 54, 55, 56, 63, 64, 66, 76, 84, 87, 89, 90, 92, 96, 99, 100], "df": [2, 28, 32, 66, 91], "type": [2, 3, 4, 5, 6, 7, 8, 11, 20, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 59, 69, 75, 79, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 96, 97, 99, 100], "extens": [2, 25, 32, 33, 35, 42, 51, 54, 75, 84], "method": [2, 8, 25, 26, 27, 28, 30, 31, 32, 35, 41, 42, 43, 46, 47, 48, 50, 51, 54, 61, 66, 67, 83, 84, 89, 90, 92, 93, 95], "cl": [2, 32], "__init__": [2, 32], "assum": [2, 28, 30, 32, 35, 43, 44, 52, 62, 67, 68, 69, 76, 77, 81, 84, 91, 92, 97, 98], "seri": [2, 28, 32, 33, 43, 55, 57], "datafram": [2, 32, 33, 35, 45, 49, 52, 57, 69, 84, 97], "index": [2, 7, 10, 24, 25, 27, 28, 30, 32, 35, 37, 39, 42, 43, 44, 51, 52, 54, 57, 59, 66, 75, 82, 83, 84, 87, 89, 92, 93, 96, 97, 100], "argument": [2, 7, 27, 28, 30, 32, 41, 42, 46, 48, 51, 52, 54, 56, 58, 73, 78, 97], "data": [2, 11, 24, 25, 27, 28, 29, 30, 32, 33, 35, 41, 42, 43, 44, 45, 51, 52, 53, 54, 55, 56, 58, 59, 66, 69, 71, 72, 83, 85, 86, 88, 89, 90, 92, 96, 97, 99, 100], "datetimeaccessor": [2, 32], "stringaccessor": [2, 32], "date_oper": [2, 32], "string_oper": [2, 32], "power_divergenceresult": [3, 4, 32], "namedtupl": [3, 4, 17, 32], "statist": [3, 4, 30, 32, 42, 59, 83, 87, 92], "pvalu": [3, 4, 32], "result": [3, 4, 7, 25, 28, 30, 32, 33, 35, 37, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 54, 55, 58, 59, 66, 67, 68, 69, 77, 84, 87, 90, 91, 92, 95, 96, 97, 100], "power": [3, 4, 13, 32, 42, 72, 94], "diverg": [3, 4, 32], "test": [3, 4, 7, 25, 28, 32, 35, 44, 60, 62, 63, 64, 66, 73, 78, 91, 98], "float64": [3, 4, 5, 6, 12, 28, 29, 30, 32, 41, 42, 43, 44, 47, 48, 53, 59, 67, 68, 82, 86, 87, 90, 91, 92, 93, 95, 98], "chisquar": [3, 4, 32], "f_ob": [3, 4, 32], "f_exp": [3, 4, 32], "none": [3, 4, 7, 8, 10, 14, 15, 16, 19, 20, 21, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 40, 41, 42, 43, 45, 46, 47, 48, 49, 51, 52, 54, 55, 56, 59, 76, 77, 84, 85, 89, 90, 91, 92, 93, 95, 97, 99], "ddof": [3, 4, 30, 32, 42, 55, 87, 92, 93], "comput": [3, 4, 5, 6, 25, 26, 28, 30, 32, 37, 41, 42, 51, 54, 58, 66, 84, 87, 89, 91, 92, 93, 95, 96, 98, 100], "chi": [3, 4, 32], "squar": [3, 4, 13, 30, 32, 41, 42, 87, 92], "p": [3, 4, 7, 32, 42, 43], "valu": [3, 4, 7, 8, 17, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 37, 41, 42, 43, 44, 46, 47, 48, 51, 52, 54, 55, 56, 59, 66, 68, 70, 77, 82, 83, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 98, 99, 100], "pdarrai": [3, 4, 5, 6, 7, 24, 25, 27, 28, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 100], "int": [3, 4, 7, 8, 10, 11, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 50, 51, 52, 54, 55, 56, 58, 68, 84, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "delta": [3, 4, 30, 32, 37, 42, 87, 92, 93], "degre": [3, 4, 30, 32, 41, 42, 87, 92, 93], "freedom": [3, 4, 30, 32, 42, 87, 92, 93], "return": [3, 4, 5, 6, 7, 11, 20, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 67, 69, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 99, 100], "akstat": [3, 4, 32], "import": [3, 4, 5, 6, 25, 27, 28, 32, 33, 35, 41, 45, 50, 52, 54, 58, 62, 68, 73, 75, 78, 91, 93, 99], "connect": [3, 4, 5, 6, 25, 26, 28, 32, 33, 43, 50, 52, 58, 63, 80, 83, 84, 91], "arrai": [3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 58, 59, 67, 68, 73, 82, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 97, 100], "10": [3, 4, 7, 25, 28, 30, 32, 35, 41, 42, 43, 45, 46, 47, 48, 51, 52, 53, 54, 56, 58, 59, 66, 75, 77, 79, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97], "30": [3, 4, 7, 32, 52, 63, 79, 88], "8": [3, 4, 5, 6, 28, 30, 32, 35, 41, 42, 43, 46, 47, 48, 51, 53, 54, 59, 66, 67, 77, 79, 84, 86, 87, 88, 90, 91, 92, 94, 95, 96], "333333333333334": [3, 4, 32], "03960235520756414": [3, 4, 32], "stat": [3, 4, 32, 59], "power_diverg": [3, 4, 32], "en": [3, 4, 32, 58], "wikipedia": [3, 4, 32], "org": [3, 4, 11, 28, 32, 52, 56, 58, 88], "squared_test": [3, 4, 32], "gener": [3, 4, 11, 20, 25, 26, 28, 31, 32, 37, 38, 41, 42, 43, 45, 46, 47, 48, 50, 52, 55, 57, 58, 59, 63, 64, 66, 67, 68, 70, 75, 76, 80, 82, 84, 87, 90, 97], "html": [3, 4, 11, 28, 32, 52, 56, 58, 75, 88], "lambda_": [3, 4, 32], "lambda": [3, 4, 32], "pearson": [3, 4, 28, 32, 42], "cressi": [3, 4, 32], "read": [3, 4, 24, 25, 28, 32, 33, 35, 36, 42, 52, 54, 67, 68, 69, 70, 88, 100], "likelihood": [3, 4, 30, 32, 42, 87, 92], "freeman": [3, 4, 32], "tukei": [3, 4, 32], "mod": [3, 4, 32, 42], "neyman": [3, 4, 32], "correspond": [3, 4, 7, 25, 27, 28, 30, 32, 33, 35, 36, 37, 39, 41, 42, 43, 50, 51, 52, 54, 58, 68, 70, 84, 87, 89, 91, 92, 93, 94, 96, 97, 100], "5": [3, 4, 5, 6, 7, 24, 25, 26, 28, 30, 32, 33, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 59, 66, 67, 68, 70, 77, 79, 84, 86, 87, 88, 90, 91, 92, 94, 95, 96, 98, 100], "3": [3, 4, 5, 6, 24, 28, 30, 32, 33, 35, 39, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 56, 58, 59, 66, 67, 68, 76, 77, 79, 82, 83, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98, 100], "y": [3, 4, 5, 6, 32, 41, 42, 45, 60, 76], "109302162163285": [3, 4, 32], "04380595350226197": [3, 4, 32], "modifi": [3, 4, 28, 32, 63, 91], "scale": [3, 4, 25, 32, 45, 61, 66, 72], "2024": [3, 4, 32], "v1": [3, 4, 32], "12": [3, 4, 7, 28, 30, 32, 35, 41, 51, 54, 56, 59, 79, 87, 88, 92, 94, 96], "special": [4, 27, 32, 52, 57, 95, 97], "xlogi": [5, 6, 32], "pdarrayclass": [5, 6, 24, 25, 27, 28, 30, 32, 33, 35, 37, 39, 41, 43, 44, 47, 48, 51, 52, 53, 54, 57, 91], "np": [5, 6, 8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 24, 25, 28, 29, 30, 32, 37, 41, 42, 43, 45, 51, 54, 55, 66, 84, 87, 88, 89, 90, 91, 92, 93, 95, 96, 100], "datatyp": [5, 6, 32, 43, 68], "castabl": [5, 6, 32], "4": [5, 6, 24, 25, 28, 30, 32, 33, 35, 39, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 54, 56, 59, 66, 68, 76, 77, 79, 84, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98, 100], "6": [5, 6, 7, 24, 28, 30, 32, 33, 35, 41, 42, 43, 44, 51, 54, 56, 59, 66, 76, 77, 79, 80, 82, 84, 87, 88, 90, 91, 92, 93, 94, 96, 98, 100], "7": [5, 6, 28, 30, 32, 41, 42, 43, 44, 46, 47, 48, 51, 52, 53, 56, 66, 76, 77, 79, 84, 86, 87, 88, 90, 91, 92, 94, 96, 98], "6094379124341003": [5, 6, 32], "5835189384561099": [5, 6, 32], "8377304471659395": [5, 6, 32], "317766166719343": [5, 6, 32], "00000000000000000": [5, 6, 28, 32, 91], "4657359027997265": [5, 6, 32], "4930614433405491": [5, 6, 32], "9314718055994531": [5, 6, 32], "nonuniqueerror": [7, 32], "valueerror": [7, 25, 26, 28, 30, 32, 33, 35, 36, 37, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 84, 86, 87, 89, 90, 92, 93, 96, 97, 99, 100], "inappropri": [7, 32], "correct": [7, 19, 28, 32, 58, 63, 76, 80, 82, 91], "map": [7, 25, 26, 27, 28, 32, 35, 36, 46, 48, 52, 54, 56, 84, 91, 100], "multipl": [7, 28, 32, 35, 41, 51, 55, 58, 59, 60, 66, 68, 70, 71, 78, 82, 84, 85, 87, 91, 96], "spars": [7, 30, 32, 56, 92, 95], "sequenc": [7, 25, 27, 32, 33, 41, 42, 43, 44, 51, 53, 56, 86, 90, 95, 96, 98, 100], "dens": [7, 25, 30, 32, 92], "replac": [7, 28, 32, 35, 40, 42, 51, 54, 60, 62, 68, 77, 78, 79, 96, 100], "queri": [7, 32, 84], "item": [7, 25, 28, 32, 42, 43, 44, 52, 56, 89, 91, 97, 98], "search": [7, 25, 32, 39, 44, 54, 83, 89], "each": [7, 24, 25, 26, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 44, 46, 48, 51, 52, 54, 55, 56, 58, 59, 66, 68, 75, 78, 84, 87, 88, 89, 91, 92, 93, 95, 96, 97, 98, 100], "row": [7, 28, 30, 32, 33, 35, 42, 44, 51, 52, 53, 54, 57, 66, 67, 84, 86, 91, 92, 96, 98], "same": [7, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 44, 50, 51, 52, 53, 54, 55, 62, 66, 67, 68, 70, 76, 77, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 100], "shape": [7, 8, 10, 15, 20, 24, 25, 28, 32, 33, 41, 42, 46, 48, 52, 54, 56, 68, 83, 87, 88, 89, 95], "dtype": [7, 8, 10, 11, 19, 20, 24, 25, 28, 30, 32, 33, 35, 37, 40, 41, 42, 43, 44, 46, 47, 48, 51, 53, 54, 55, 57, 58, 59, 66, 82, 83, 84, 87, 88, 90, 91, 92, 93, 94, 95, 98, 100], "its": [7, 11, 13, 14, 15, 16, 17, 18, 21, 25, 29, 32, 33, 41, 42, 51, 52, 54, 62, 68, 77, 87, 95, 96, 97, 100], "int64": [7, 12, 25, 27, 28, 29, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 46, 47, 48, 51, 53, 54, 55, 58, 59, 66, 67, 68, 82, 84, 86, 87, 89, 90, 91, 92, 93, 95, 96, 98, 100], "in1d_interv": [7, 32], "val": [7, 29, 30, 32, 51, 52, 56, 92, 96], "interv": [7, 32, 41, 43, 46, 48, 55, 90, 93], "symmetr": [7, 32, 44, 51, 66, 83, 98], "fals": [7, 16, 18, 19, 21, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 51, 52, 54, 55, 56, 59, 66, 82, 84, 85, 87, 89, 90, 91, 92, 95, 96, 98, 100], "membership": [7, 32, 44, 98], "half": [7, 32, 46, 48], "python": [7, 8, 20, 24, 25, 26, 27, 31, 32, 42, 43, 44, 50, 52, 54, 59, 72, 75, 80, 81, 83, 84, 87, 88, 89, 90, 91, 94, 95, 100], "float": [7, 10, 11, 19, 26, 28, 32, 41, 42, 43, 46, 47, 48, 87, 90, 91, 93, 95], "tupl": [7, 8, 10, 11, 15, 16, 19, 20, 21, 25, 27, 28, 29, 30, 32, 37, 41, 42, 43, 44, 47, 48, 51, 52, 54, 56, 66, 84, 89, 90, 91, 92, 93, 95, 97, 98, 100], "overlap": [7, 28, 32, 40, 54, 100], "lower_bounds_inclus": [7, 32], "upper_bounds_exclus": [7, 32], "bool": [7, 10, 11, 12, 15, 16, 18, 19, 21, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 59, 68, 82, 84, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 100], "boolean": [7, 11, 25, 28, 30, 32, 39, 41, 42, 44, 51, 52, 54, 66, 68, 87, 89, 91, 92, 94, 95, 96, 97, 98, 100], "contain": [7, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 39, 41, 42, 43, 44, 45, 51, 52, 53, 54, 55, 57, 58, 59, 63, 64, 66, 67, 68, 73, 78, 82, 83, 84, 86, 87, 89, 90, 91, 92, 95, 96, 97, 98, 100], "rang": [7, 25, 28, 32, 33, 35, 37, 41, 42, 43, 46, 47, 48, 51, 52, 54, 55, 82, 84, 87, 90, 91, 93, 97, 100], "defin": [7, 8, 20, 25, 27, 28, 29, 30, 31, 32, 33, 35, 38, 41, 42, 43, 51, 52, 54, 55, 58, 62, 88, 89, 90, 91, 92, 93, 95], "low": [7, 27, 28, 32, 41, 42, 43, 46, 47, 48, 66, 84, 90], "high": [7, 27, 28, 32, 41, 42, 43, 46, 47, 48, 66, 90], "inclus": [7, 28, 32, 41, 42, 43, 46, 47, 48, 55, 87, 90, 94], "equival": [7, 24, 25, 28, 30, 32, 35, 41, 42, 43, 44, 53, 54, 55, 56, 63, 66, 86, 87, 88, 90, 98], "But": [7, 32], "faster": [7, 25, 32, 44, 63, 89, 98], "mani": [7, 25, 32, 59, 89, 92], "second": [7, 26, 32, 36, 41, 43, 44, 52, 54, 55, 56, 58, 59, 63, 66, 87, 90, 95, 97, 98, 99, 100], "trivial": [7, 32], "size": [7, 8, 20, 24, 25, 28, 29, 30, 32, 33, 35, 37, 41, 42, 43, 46, 47, 48, 51, 52, 53, 54, 55, 56, 59, 66, 68, 69, 70, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 100], "interval_lookup": [7, 32], "kei": [7, 25, 28, 30, 32, 33, 34, 35, 36, 41, 44, 52, 58, 66, 68, 78, 80, 85, 91, 92, 97, 98], "fillvalu": [7, 32], "tiebreak": [7, 32], "hierarch": [7, 32], "appli": [7, 28, 30, 32, 41, 59, 87, 91, 92, 100], "over": [7, 25, 28, 32, 35, 41, 42, 46, 48, 51, 54, 82, 87, 88, 89, 91, 93, 95, 96, 100], "express": [7, 25, 32, 35, 54, 59, 83, 84, 89, 91, 94, 95], "upper_bounds_inclus": [7, 32], "entri": [7, 28, 32, 42, 52, 54, 58, 59, 91], "scalar": [7, 25, 32, 41, 42, 51, 52, 58, 59, 82, 83, 89, 93, 94, 96, 97], "numer": [7, 28, 32, 42, 43, 45, 52, 53, 57, 68, 83, 84, 86, 89, 95, 97, 100], "than": [7, 8, 24, 25, 28, 30, 32, 33, 35, 41, 42, 43, 44, 46, 48, 51, 52, 53, 54, 60, 62, 63, 70, 84, 86, 88, 89, 90, 91, 92, 95, 98, 100], "lowest": [7, 28, 32, 42, 43, 46, 48], "chosen": [7, 32, 41, 42, 87, 95, 96], "given": [7, 20, 25, 28, 30, 32, 35, 42, 43, 44, 46, 48, 54, 55, 56, 59, 79, 84, 89, 90, 91, 92, 100], "valid": [7, 20, 25, 32, 35, 41, 43, 52, 54, 84, 89, 95, 100], "is_cosort": [7, 32], "iff": [7, 25, 32, 33, 42, 52, 54, 55, 87, 93], "cosort": [7, 32], "were": [7, 24, 30, 32, 33, 35, 42, 51, 54, 63, 78, 88, 92, 96, 100], "column": [7, 25, 28, 30, 32, 33, 35, 42, 45, 51, 52, 53, 54, 66, 67, 70, 71, 84, 86, 92, 96, 97], "tabl": [7, 26, 28, 32, 34, 42, 51, 52, 54, 58, 59, 79, 95, 96], "cosorted": [7, 32], "rais": [7, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 47, 48, 50, 51, 52, 53, 54, 55, 58, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100], "typeerror": [7, 25, 27, 28, 29, 30, 32, 33, 35, 37, 38, 41, 42, 43, 44, 47, 48, 51, 52, 53, 54, 55, 58, 84, 86, 87, 89, 90, 92, 93, 97, 98, 100], "left_align": [7, 32], "right": [7, 27, 28, 32, 42, 46, 53, 54, 55, 62, 86, 91, 94, 99, 100], "two": [7, 23, 25, 27, 28, 30, 32, 33, 37, 41, 42, 43, 44, 51, 52, 54, 55, 56, 66, 67, 76, 78, 84, 87, 90, 92, 98, 100], "impli": [7, 32, 94], "discard": [7, 25, 32, 89], "appear": [7, 25, 28, 30, 32, 33, 35, 42, 44, 52, 54, 62, 92, 93], "lookup": [7, 32, 33, 52], "domain": [7, 32], "uniqu": [7, 17, 25, 28, 30, 32, 33, 41, 42, 44, 51, 52, 54, 66, 68, 83, 84, 89, 92, 93, 94, 96, 97, 98, 100], "treat": [7, 24, 27, 28, 29, 32, 53, 59, 66, 86, 88, 91], "evalu": [7, 32, 42, 87, 93], "while": [7, 32, 35, 53, 64, 68, 70, 75, 80, 84, 86], "cannot": [7, 24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 51, 52, 54, 55, 70, 80, 84, 88, 89, 92, 95, 100], "other": [7, 25, 27, 28, 30, 32, 33, 35, 41, 42, 43, 46, 48, 51, 53, 54, 55, 59, 63, 64, 66, 84, 85, 86, 87, 89, 92, 96, 98, 100], "complex": [7, 32, 73], "achiev": [7, 32, 75], "arang": [7, 10, 24, 28, 30, 32, 35, 41, 42, 43, 44, 45, 51, 52, 58, 66, 83, 84, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98], "desir": [7, 26, 27, 32, 41, 42, 43, 46, 47, 48, 50, 59, 60, 73, 78, 87, 90, 93, 95, 99, 100], "word": [7, 32, 46, 48], "keys1": [7, 32], "twenti": [7, 32], "_": [7, 32, 39, 54, 100], "keys2": [7, 32], "three": [7, 32, 43, 44, 54, 55, 75, 90, 94, 95, 100], "four": [7, 32, 44, 54, 55, 90, 100], "five": [7, 32, 44, 54, 90, 100], "21": [7, 32, 41, 87, 88], "22": [7, 32, 87, 88], "23": [7, 32, 42, 88], "24": [7, 32, 33, 41, 42, 52, 59, 79, 87, 88], "25": [7, 30, 32, 35, 42, 43, 52, 88, 90, 92], "args1": [7, 32], "thirti": [7, 32], "args2": [7, 32], "aku": [7, 32, 33, 49, 85], "direct": [7, 32, 62, 68, 75], "intermedi": [7, 32], "revkei": [7, 32], "revindic": [7, 32], "revarg": [7, 32], "idx": [7, 28, 32, 33, 66], "right_align": [7, 32], "hand": [7, 32, 62, 94], "logic": [7, 24, 25, 32, 41, 43, 47, 48, 51, 54, 58, 83, 88, 90, 93, 96], "surviv": [7, 32], "search_interv": [7, 32], "uint": [7, 28, 32, 35, 42, 43, 54, 67], "compon": [7, 25, 27, 28, 30, 32, 33, 34, 42, 51, 52, 54, 55, 56, 59, 68, 70, 92], "dimens": [7, 24, 25, 28, 32, 41, 42, 54, 66, 68, 88, 89, 95, 96], "multi": [7, 24, 27, 30, 32, 35, 44, 52, 66, 85, 88, 90, 92, 95, 97, 98], "dimension": [7, 24, 32, 41, 43, 52, 84, 88, 95, 97], "satisfi": [7, 28, 32, 35], "condit": [7, 16, 28, 32, 41, 42, 87], "11": [7, 28, 32, 41, 51, 56, 59, 64, 66, 67, 87, 88, 91, 93, 94, 96], "end": [7, 25, 28, 32, 37, 39, 41, 42, 43, 51, 54, 55, 61, 83, 89, 90, 94, 96, 100], "9": [7, 25, 28, 30, 32, 35, 41, 42, 43, 51, 53, 54, 56, 59, 66, 76, 77, 84, 86, 87, 88, 90, 91, 92, 93, 94, 96, 100], "15": [7, 25, 28, 32, 46, 48, 54, 77, 88, 94], "bi_start": [7, 32], "bigint_from_uint_arrai": [7, 32, 42, 43], "cast": [7, 8, 27, 32, 41, 42, 43, 54, 58, 83, 84, 90, 100], "uint64": [7, 12, 27, 29, 30, 32, 41, 42, 43, 47, 48, 53, 59, 68, 82, 86, 87, 90, 91, 93, 95, 100], "bi_end": [7, 32], "bi_val": [7, 32], "92233720368547758091": [7, 32], "92233720368547758090": [7, 32], "166020696663385964564": [7, 32], "36893488147419103233": [7, 32], "92233720368547758085": [7, 32], "92233720368547758095": [7, 32], "110680464442257309696": [7, 32], "110680464442257309708": [7, 32], "166020696663385964574": [7, 32], "unsqueez": [7, 32], "zero_up": [7, 32], "wrapper": [8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 27, 32, 95], "ndarrai": [8, 20, 24, 25, 32, 42, 43, 45, 51, 54, 66, 84, 87, 88, 89, 95, 96, 100], "differ": [8, 25, 26, 27, 28, 30, 32, 33, 35, 37, 41, 42, 43, 44, 50, 51, 52, 54, 55, 56, 58, 59, 64, 66, 67, 68, 70, 76, 77, 83, 84, 88, 90, 91, 92, 93, 98, 99], "particular": [8, 28, 32, 52, 78], "promot": [8, 58], "rule": [8, 32, 41, 95], "subset": [8, 25, 26, 28, 31, 32, 51, 78, 87, 91, 96], "goal": 8, "minim": [8, 28, 32, 63, 64, 90, 91], "compliant": 8, "onli": [8, 20, 25, 28, 30, 32, 33, 35, 37, 39, 41, 42, 43, 44, 46, 51, 52, 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, 95, 96, 97, 98, 100], "subclass": 8, "n": [8, 20, 25, 28, 30, 32, 35, 41, 42, 43, 44, 46, 47, 48, 51, 52, 54, 55, 67, 77, 79, 82, 87, 88, 89, 90, 91, 92, 96, 97], "docstr": [8, 11, 13, 14, 15, 16, 17, 18, 20, 21, 58], "restrict": [8, 20], "usag": [8, 20, 28, 32, 33, 52, 65, 73, 82, 96, 99], "attribut": [8, 24, 25, 28, 33, 35, 42, 54, 55, 84, 88, 95], "underscor": [8, 20], "construct": [8, 20, 25, 32, 43, 46, 51, 54, 58, 66, 83, 92, 94], "directli": [8, 20, 25, 32, 42, 52, 53, 54, 66, 75, 86, 88, 89, 91, 95, 100], "rather": [8, 20, 25, 28, 32, 54], "creation": [8, 20, 25, 32, 58, 62, 83], "asarrai": [8, 10, 20], "devic": [8, 10, 20], "_type": [8, 10, 11, 19], "mt": [8, 20], "ndim": [8, 20, 24, 25, 32, 42, 54, 83, 88, 89, 95], "ellipsi": [8, 10, 11, 15, 16, 19, 20, 21, 32, 42, 43, 47, 48, 56], "to_devic": [8, 20], "stream": [8, 20, 32, 46, 48, 63], "to_ndarrai": [8, 20, 24, 25, 27, 32, 33, 41, 42, 43, 45, 51, 54, 55, 66, 83, 84, 88, 89, 93, 95, 96, 100], "convert": [8, 20, 24, 25, 27, 28, 32, 33, 41, 42, 43, 51, 52, 54, 55, 56, 67, 84, 88, 89, 91, 95, 96, 97, 98, 100], "tolist": [8, 20], "nest": [8, 20, 32, 35, 68, 84], "inf": [9, 32, 41], "nan": [9, 28, 30, 32, 41, 52, 91, 92, 95], "pi": [9, 32, 41], "stop": [10, 26, 32, 43, 90, 94], "_array_object": [10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 23], "obj": [10, 32, 35, 56], "nestedsequ": 10, "supportsbufferprotocol": [10, 20], "copi": [10, 11, 15, 24, 28, 32, 33, 35, 51, 53, 96], "empti": [10, 27, 28, 30, 32, 35, 41, 42, 44, 51, 52, 54, 75, 87, 90, 91, 93, 97], "empty_lik": 10, "ey": 10, "n_row": 10, "n_col": 10, "k": [10, 32, 42, 59, 87, 93], "from_dlpack": 10, "full": [10, 25, 32, 39, 41, 43, 45, 54, 55, 61, 63, 73, 75, 77, 81, 89, 100], "fill_valu": [10, 32, 43], "full_lik": [10, 32, 43], "linspac": [10, 30, 32, 41, 43, 83, 87, 90, 92, 95], "num": [10, 26, 29, 32, 41], "endpoint": [10, 32, 46, 48], "meshgrid": 10, "xy": 10, "ones_lik": [10, 32, 43, 83, 90], "tril": 10, "triu": 10, "zero": [10, 30, 32, 41, 42, 43, 62, 83, 90, 92, 94, 95], "zeros_lik": [10, 32, 43, 83, 90], "astyp": [11, 28, 32, 42, 54], "can_cast": 11, "from_": 11, "compat": [11, 13, 14, 15, 16, 17, 18, 21, 25, 28, 32, 42, 51, 55, 56, 91, 92], "finfo_object": 11, "ep": 11, "max": [11, 19, 30, 32, 41, 42, 51, 54, 59, 83, 87, 92, 93, 100], "min": [11, 19, 30, 32, 41, 42, 51, 59, 83, 87, 92, 93], "smallest_norm": 11, "iinfo_object": 11, "isdtyp": 11, "kind": [11, 29, 32], "whether": [11, 25, 28, 30, 32, 35, 37, 39, 41, 44, 51, 52, 54, 55, 66, 84, 89, 96, 97, 98, 100], "latest": [11, 32, 56, 58, 76, 77, 80], "api_specif": [11, 32, 56], "result_typ": 11, "arrays_and_dtyp": 11, "complex128": [12, 29, 32], "complex64": [12, 29, 32], "float32": [12, 29, 32, 87, 90, 93], "int16": [12, 29, 32, 87, 90, 93, 95, 100], "int32": [12, 29, 32, 87, 90, 93, 95, 100], "int8": [12, 29, 32, 87, 90, 93, 95, 100], "uint16": [12, 29, 32, 87, 90, 93, 95, 100], "uint32": [12, 29, 32, 35, 84, 87, 90, 93, 95, 100], "uint8": [12, 29, 32, 41, 54, 68, 87, 90, 93, 95, 100], "ab": [13, 32, 41, 55, 83, 87], "aco": 13, "arcco": [13, 32, 41], "acosh": 13, "arccosh": [13, 32, 41], "x1": [13, 16, 23], "x2": [13, 16, 23], "asin": 13, "arcsin": [13, 32, 41], "asinh": 13, "arcsinh": [13, 32, 41], "atan": 13, "arctan": [13, 32, 41], "atan2": 13, "arctan2": [13, 32, 41], "atanh": 13, "arctanh": [13, 32, 41], "bitwise_and": 13, "bitwise_invert": 13, "invert": [13, 30, 32, 44, 98], "bitwise_left_shift": 13, "left_shift": 13, "bitwise_or": 13, "bitwise_right_shift": 13, "right_shift": 13, "bitwise_xor": 13, "ceil": [13, 32, 41], "conj": 13, "co": [13, 30, 32, 41, 43, 83, 87, 92], "cosh": [13, 32, 41], "divid": [13, 32, 42], "equal": [13, 28, 32, 37, 41, 46, 48, 68, 70, 93, 96], "exp": [13, 32, 41, 43, 83, 87], "expm1": [13, 32, 41], "floor": [13, 32, 41, 42], "floor_divid": [13, 32, 42], "greater": [13, 32, 43, 46, 48, 90], "greater_equ": 13, "imag": 13, "isfinit": [13, 32, 41], "isinf": [13, 32, 41], "isnan": [13, 32, 41], "less": [13, 25, 30, 32, 33, 42, 46, 48, 51, 54], "less_equ": 13, "log10": [13, 32, 41], "log1p": [13, 32, 41], "log2": [13, 32, 41], "logaddexp": 13, "logical_and": 13, "logical_not": 13, "logical_or": 13, "logical_xor": 13, "multipli": [13, 30, 32, 46, 48, 58, 92], "neg": [13, 32, 43, 46, 51, 61, 90, 94, 96], "not_equ": 13, "posit": [13, 28, 32, 39, 40, 42, 52, 54, 94, 97, 100], "pow": 13, "remaind": [13, 32, 42, 54, 100], "round": [13, 32, 41, 59], "sign": [13, 32, 35, 41, 42, 46, 48, 84, 91, 95], "sin": [13, 32, 41, 83, 87], "sinh": [13, 32, 41], "sqrt": [13, 30, 32, 42, 87, 92], "subtract": 13, "tan": [13, 32, 41], "tanh": [13, 32, 41], "trunc": [13, 32, 41], "axi": [14, 15, 16, 18, 19, 21, 23, 28, 32, 33, 45, 51, 52, 53, 86, 91, 96, 97], "broadcast_arrai": 15, "broadcast_to": 15, "broadcast": [15, 30, 32, 41, 42, 56, 83, 87, 92], "concat": [15, 28, 32, 33, 51, 52, 91, 97], "concaten": [15, 25, 28, 32, 44, 51, 52, 54, 56, 58, 83, 96, 97, 100], "expand_dim": 15, "flip": 15, "permute_dim": 15, "transpos": [15, 51, 84], "reshap": [15, 24, 32, 42, 83, 88], "roll": 15, "shift": 15, "squeez": 15, "stack": [15, 100], "argmax": [16, 30, 32, 42, 51, 83, 87, 92, 93], "keepdim": [16, 19, 21], "argmin": [16, 30, 32, 42, 51, 83, 87, 92, 93], "nonzero": [16, 30, 32, 40, 54, 100], "uniqueallresult": 17, "count": [17, 28, 30, 32, 40, 41, 42, 51, 52, 54, 59, 66, 83, 87, 92, 96, 100], "inverse_indic": 17, "uniquecountsresult": 17, "uniqueinverseresult": 17, "unique_al": 17, "unique_count": 17, "unique_invers": 17, "unique_valu": [17, 32, 41, 42, 93], "argsort": [18, 25, 26, 28, 30, 32, 33, 42, 53, 83, 86, 87, 89, 91, 92, 100], "descend": [18, 28, 32, 43, 52, 90, 91, 97], "stabl": [18, 32, 53, 86, 88], "mean": [19, 26, 28, 30, 32, 35, 42, 43, 46, 48, 50, 51, 54, 59, 83, 84, 87, 92, 93], "prod": [19, 30, 32, 42, 51, 83, 87, 92, 93], "prod_sum_dtyp": 19, "std": [19, 30, 32, 42, 55, 83, 87, 92, 93], "sum": [19, 28, 30, 32, 41, 42, 51, 55, 56, 83, 87, 92, 93], "annot": 20, "aren": [20, 76, 77], "signatur": [20, 31, 58], "input": [20, 25, 27, 28, 30, 41, 42, 43, 44, 51, 53, 55, 58, 62, 84, 86, 87, 89, 92, 95, 97, 98], "pycapsul": 20, "supportsdlpack": 20, "protocol": 20, "proto": 20, "def": [20, 58, 67, 78], "meth": 20, "self": [20, 25, 28, 32, 42, 51, 54, 84, 85, 88, 89, 91, 95, 96, 97, 100], "Such": 20, "primarili": [20, 84], "static": [20, 25, 28, 30, 32, 33, 42, 51, 52, 54, 92], "checker": 20, "recogn": 20, "structur": [20, 25, 28, 32, 51, 66, 70, 91, 92, 95, 96, 100], "subtyp": 20, "duck": 20, "c": [20, 24, 25, 28, 32, 33, 42, 43, 44, 45, 51, 52, 54, 59, 61, 63, 76, 82, 88, 91, 95, 96, 98, 100], "func": 20, "pep": 20, "544": 20, "decor": 20, "runtime_check": 20, "act": [20, 32, 42, 58], "runtim": [20, 26, 61], "presenc": 20, "ignor": [20, 28, 30, 32, 35, 41, 55, 84, 91, 95], "genproto": 20, "linalg": [22, 32, 57], "matmul": 23, "matrix": [23, 28, 30, 32, 56, 92], "product": [23, 30, 32, 41, 42, 43, 84, 87, 88, 92, 93], "matrix_transpos": 23, "tensordot": 23, "vecdot": 23, "arrayview": [24, 32, 35, 41, 42, 83, 84, 95], "row_major": [24, 32, 42, 88], "view": [24, 32, 62, 66, 71, 75, 81, 88, 95], "arraryview": [24, 32, 88], "similarli": [24, 32, 59, 66, 88], "store": [24, 27, 28, 30, 32, 33, 35, 43, 47, 48, 50, 54, 59, 67, 68, 71, 80, 84, 88, 89, 90, 92, 96, 100], "being": [24, 28, 32, 33, 35, 41, 42, 52, 66, 68, 69, 70, 78, 84, 88, 91, 94, 97], "element": [24, 25, 28, 30, 32, 36, 37, 39, 41, 42, 43, 44, 51, 52, 54, 55, 58, 66, 78, 83, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 100], "int_scalar": [24, 25, 28, 29, 30, 32, 35, 41, 42, 43, 47, 48, 51, 53, 54, 55, 86, 87, 88, 90, 92, 93, 95], "items": [24, 32, 42, 43, 54, 83, 84, 88, 95], "byte": [24, 25, 28, 29, 32, 33, 35, 37, 42, 43, 52, 54, 56, 68, 73, 84, 88, 89, 91, 95, 100], "By": [24, 25, 27, 28, 30, 32, 33, 35, 41, 42, 44, 51, 54, 55, 88, 92, 98, 100], "f": [24, 25, 32, 41, 42, 43, 54, 73, 76, 77, 79, 84, 87, 88, 100], "column_major": [24, 32, 42, 88], "objtyp": [24, 25, 28, 30, 32, 33, 42, 51, 52, 54, 68], "to_hdf": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54, 68, 71, 83, 84, 92], "prefix_path": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54, 92], "dataset": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54, 67, 68, 70, 71, 92, 100], "truncat": [24, 25, 27, 30, 32, 33, 35, 41, 42, 51, 54, 68, 70, 92], "file_typ": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54, 92], "distribut": [24, 25, 27, 28, 30, 32, 33, 35, 42, 43, 45, 46, 47, 48, 51, 54, 73, 76, 77, 84, 87, 88, 89, 90, 92, 95, 98, 100], "save": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 59, 60, 62, 63, 68, 69, 70, 84, 89, 92, 98], "path": [24, 28, 32, 33, 35, 36, 42, 50, 59, 64, 75, 76, 77, 78, 80, 84], "append": [24, 25, 28, 30, 32, 33, 35, 42, 44, 51, 54, 68, 70, 83, 90, 92, 100], "overwrit": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 92, 95], "exist": [24, 25, 26, 28, 30, 32, 33, 35, 36, 42, 43, 51, 54, 68, 70, 75, 90, 91, 92, 99], "format": [24, 25, 26, 27, 28, 32, 33, 34, 35, 42, 50, 51, 52, 54, 58, 66, 68, 69, 70, 78, 91, 96, 99, 100], "date": [24, 32, 55, 62], "to_list": [24, 25, 27, 32, 33, 42, 51, 52, 54, 66, 84, 88, 95, 96, 100], "transfer": [24, 25, 28, 32, 35, 42, 51, 54, 59, 84, 88, 89, 91, 95, 96, 100], "client": [24, 25, 28, 32, 42, 43, 54, 55, 57, 69, 75, 76, 77, 78, 79, 80, 83, 88, 89, 91, 95, 96, 100], "exce": [24, 25, 28, 32, 42, 43, 47, 48, 54, 55, 56, 84, 88, 89, 90, 91, 95, 100], "maxtransferbyt": [24, 25, 28, 32, 42, 43, 54, 55, 84, 88, 89, 91, 95, 100], "runtimeerror": [24, 25, 26, 28, 30, 32, 33, 34, 35, 39, 41, 42, 43, 44, 51, 52, 54, 55, 84, 87, 88, 89, 90, 92, 93, 95, 98, 99, 100], "error": [24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 38, 39, 41, 42, 43, 51, 52, 54, 55, 58, 68, 70, 80, 84, 87, 88, 89, 91, 92, 93, 95, 99, 100], "thrown": [24, 25, 28, 32, 33, 34, 35, 39, 42, 43, 51, 52, 54, 84, 87, 88, 89, 93, 95, 100], "receiv": [24, 25, 26, 28, 32, 33, 35, 42, 51, 54, 84, 88, 95, 99], "doe": [24, 25, 26, 28, 30, 32, 33, 35, 36, 42, 43, 45, 51, 52, 54, 63, 66, 68, 70, 84, 88, 89, 90, 91, 92, 95, 97, 99, 100], "protect": [24, 25, 32, 42, 43, 54, 84, 88, 89, 95, 100], "overflow": [24, 25, 32, 41, 42, 54, 84, 88, 89, 95, 100], "memori": [24, 25, 26, 28, 32, 33, 35, 42, 51, 52, 54, 64, 65, 68, 73, 84, 88, 89, 95, 100], "run": [24, 25, 26, 28, 32, 35, 41, 42, 51, 54, 63, 64, 66, 73, 75, 76, 77, 79, 80, 82, 84, 88, 89, 95, 96, 99, 100], "assumpt": [24, 25, 32, 42, 43, 54, 84, 88, 89, 95, 100], "mai": [24, 25, 28, 32, 33, 35, 42, 43, 44, 46, 54, 66, 68, 73, 75, 77, 79, 80, 84, 88, 89, 90, 91, 95, 100], "overrid": [24, 25, 27, 32, 42, 43, 54, 63, 84, 88, 89, 95, 100], "larger": [24, 25, 32, 42, 43, 54, 62, 66, 84, 88, 89, 95, 100], "proce": [24, 25, 32, 42, 43, 54, 84, 88, 89, 95, 100], "caution": [24, 25, 32, 42, 43, 54, 84, 88, 89, 95, 100], "update_hdf": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54], "repack": [24, 25, 27, 28, 30, 32, 33, 35, 42, 51, 54], "ad": [24, 25, 27, 28, 32, 33, 35, 38, 42, 51, 54, 63, 65, 66, 70, 75, 84, 99], "directori": [24, 25, 28, 30, 32, 33, 35, 36, 42, 50, 51, 54, 59, 60, 63, 64, 73, 75, 76, 77, 78, 79, 80, 81, 82, 92], "filenam": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 59, 84, 92], "prefix": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 55, 83, 92, 100], "share": [24, 25, 28, 30, 32, 33, 42, 51, 54, 62, 80, 92], "releas": [24, 25, 28, 32, 33, 35, 42, 51, 54, 59, 64, 65, 76, 77], "delet": [24, 25, 26, 27, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 59, 64, 73, 92], "inaccess": [24, 25, 28, 32, 33, 35, 42, 51, 54], "overwritten": [24, 25, 28, 32, 33, 35, 42, 51, 54, 68, 70], "remov": [24, 25, 28, 32, 33, 35, 42, 51, 54, 59, 63, 79, 91, 96, 100], "remain": [24, 25, 28, 32, 33, 35, 42, 51, 54, 76, 84, 85, 91, 97], "better": [24, 25, 28, 32, 33, 35, 42, 51, 54], "perform": [24, 25, 28, 30, 32, 33, 35, 37, 41, 42, 44, 51, 54, 59, 61, 62, 63, 66, 67, 69, 75, 83, 84, 87, 90, 91, 92, 95], "caus": [24, 25, 28, 32, 33, 35, 42, 51, 54, 73, 75], "expand": [24, 25, 28, 32, 33, 35, 42, 51, 54, 56, 84], "success": [24, 25, 26, 28, 32, 33, 35, 37, 41, 42, 51, 54, 95, 99], "file_format": [24, 25, 28, 32, 33, 35, 42, 51, 54], "_local": [24, 25, 28, 32, 33, 35, 42, 51, 54, 68], "determin": [24, 25, 28, 30, 32, 33, 35, 42, 51, 54, 56, 62, 68, 78, 84, 89, 91, 92], "becaus": [24, 25, 28, 32, 33, 35, 41, 43, 47, 48, 51, 54, 63, 66, 67, 68, 69, 73, 84, 89, 90, 91, 96, 100], "kwarg": [25, 28, 30, 32, 43, 49, 52, 55, 56, 89, 92], "repres": [25, 27, 30, 32, 51, 52, 54, 55, 59, 68, 89, 92, 100], "belong": [25, 32, 89], "often": [25, 32, 89, 93], "speed": [25, 32, 44, 61, 65, 78, 89, 90, 98], "oper": [25, 26, 27, 28, 30, 32, 33, 35, 42, 50, 51, 53, 54, 58, 59, 62, 69, 73, 79, 81, 82, 83, 86, 91, 92, 94, 99], "cost": [25, 32, 89], "initi": [25, 26, 32, 42, 43, 46, 47, 48, 59, 77, 82, 89, 90, 95, 99], "navalu": [25, 32, 89], "miss": [25, 28, 32, 89], "null": [25, 32, 35, 54, 68, 89, 100], "permut": [25, 28, 30, 32, 53, 54, 56, 68, 83, 86, 89, 92, 98], "segment": [25, 30, 32, 35, 37, 51, 54, 56, 68, 83, 84, 89, 92, 96, 98, 100], "offset": [25, 30, 32, 35, 43, 54, 68, 84, 89, 98, 100], "union": [25, 26, 28, 32, 34, 35, 37, 41, 42, 43, 44, 47, 48, 51, 53, 54, 66, 83, 84, 86, 87, 89, 90, 93, 98, 100], "nlevel": [25, 32, 83, 89], "distinct": [25, 28, 32, 89], "rank": [25, 32, 42, 43, 54, 68, 83, 84, 89, 90, 94], "nbyte": [25, 28, 32, 33, 42, 43, 52, 54, 56, 84], "binop": [25, 28, 32, 35, 42, 51, 54], "registerablepiec": [25, 32], "requiredpiec": [25, 32], "attach": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 56, 83, 92], "user_defined_nam": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 92], "deprec": [25, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 62, 84, 92], "is_regist": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 56, 83, 92], "unregist": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 56, 83, 92], "unregister_categorical_by_nam": [25, 32], "merg": [25, 28, 32, 56, 62], "synchron": [25, 32], "interleav": [25, 28, 32, 44, 90], "greatli": [25, 32, 44, 90], "improv": [25, 32, 44, 62, 63, 78, 90], "determinist": [25, 32, 44, 90], "expens": [25, 32], "slower": [25, 32, 100], "substr": [25, 27, 32, 54, 83, 89], "str_scalar": [25, 29, 32, 40, 54, 89, 100], "regex": [25, 32, 54, 89, 100], "regular": [25, 32, 54, 83, 89], "handl": [25, 26, 28, 32, 41, 54, 69, 84, 89, 91, 95, 100], "re2": [25, 32, 54, 75, 89, 100], "lookahead": [25, 32, 54, 89, 100], "lookbehind": [25, 32, 54, 89, 100], "rasi": [25, 32, 54, 89, 100], "startswith": [25, 32, 54, 83, 89, 100], "endswith": [25, 32, 54, 83, 89, 100], "significantli": [25, 32, 63, 89], "instead": [25, 27, 28, 30, 32, 35, 42, 46, 48, 54, 59, 82, 84, 87, 89, 92, 100], "classmethod": [25, 27, 28, 32, 33, 51, 52, 89], "from_cod": [25, 32, 83, 89], "pre": [25, 32, 56, 89], "constructor": [25, 32, 46, 48, 51, 66, 89], "normal": [25, 26, 27, 28, 30, 32, 42, 43, 46, 47, 48, 55, 58, 87, 89, 91, 92], "from_return_msg": [25, 27, 28, 30, 32, 33, 51, 52, 54], "rep_msg": [25, 27, 28, 30, 32, 33, 51, 54, 78], "place": [25, 27, 28, 30, 32, 33, 35, 38, 42, 50, 51, 52, 54, 55, 56, 60, 64, 87, 91, 92], "togeth": [25, 28, 30, 32, 54, 56, 91, 92, 98], "instanc": [25, 27, 28, 30, 32, 42, 43, 52, 54, 59, 70, 75, 78, 84, 87, 91, 92, 93, 95, 100], "guarante": [25, 32, 53, 54, 86, 100], "lie": [25, 32, 54], "contigu": [25, 32, 37, 54], "necessarili": [25, 32, 52, 54], "groupbi": [25, 28, 30, 32, 35, 51, 54, 56, 83, 89, 100], "simpli": [25, 26, 32, 41, 90], "even": [25, 28, 30, 32, 42, 68, 87, 91, 92, 99], "128": [25, 32, 41, 51, 54], "hash": [25, 32, 41, 51, 53, 54, 86], "ith": [25, 32, 51, 54], "siphash128": [25, 32, 54], "balanc": [25, 32, 54], "dictionari": [25, 26, 28, 30, 32, 35, 36, 46, 48, 54, 56, 78, 84, 91, 92], "realist": [25, 32, 54], "about": [25, 26, 32, 34, 42, 54, 55, 58, 59, 63, 73, 78, 87, 88, 100], "probabl": [25, 32, 46, 48, 54], "collis": [25, 32, 41, 54], "neglig": [25, 32, 54], "in1d": [25, 32, 44, 58, 66, 83, 89, 98, 100], "against": [25, 32, 51, 54, 59, 66, 84, 96, 100], "intersect1d": [25, 32, 44, 51, 58, 66, 83, 96, 98], "union1d": [25, 32, 44, 51, 58, 66, 83, 96, 98], "consid": [25, 32, 62, 100], "wise": [25, 32, 41, 42, 83, 88], "b": [25, 26, 28, 30, 32, 33, 35, 37, 41, 42, 43, 44, 45, 46, 48, 51, 52, 53, 54, 56, 66, 82, 86, 87, 91, 92, 93, 94, 95, 96, 98, 100], "arbitrarili": [25, 32], "larg": [25, 32, 59, 87], "cat": [25, 32, 35, 80], "cattwo": [25, 32], "json": [25, 26, 32, 34, 42, 50, 54], "bool_": [25, 32, 42, 54, 55, 87, 93], "registri": [25, 28, 30, 32, 33, 34, 42, 52, 54, 55, 56, 92], "registrationerror": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 92], "mi": [25, 32, 33, 52, 55], "immun": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 92], "until": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 64, 92], "isna": [25, 32], "parse_hdf_categor": [25, 32], "dict": [25, 26, 28, 30, 32, 34, 35, 36, 46, 48, 49, 52, 56, 91, 92], "conjunct": [25, 32, 84, 89, 100], "load_al": [25, 28, 32, 33, 35, 42, 54, 71], "reconstitut": [25, 32], "convent": [25, 32], "In": [25, 28, 30, 32, 35, 41, 42, 46, 48, 54, 58, 59, 60, 62, 63, 66, 73, 75, 76, 78, 80, 84, 87, 92, 93, 94, 96, 99, 100], "call": [25, 26, 27, 28, 30, 32, 35, 42, 43, 46, 47, 48, 51, 52, 54, 58, 66, 70, 73, 75, 77, 78, 84, 87, 88, 90, 91, 92, 95, 99], "pretty_print_info": [25, 32, 42, 54], "human": [25, 32, 34, 42, 54], "readabl": [25, 32, 34, 35, 42, 54, 68, 84], "underli": [25, 27, 28, 30, 32, 33, 41, 51, 52, 55, 92], "root": [25, 27, 28, 30, 32, 33, 42, 52, 55, 59, 68, 76, 84, 87, 92], "now": [25, 27, 28, 30, 32, 33, 42, 46, 51, 52, 54, 55, 56, 58, 63, 64, 67, 70, 75, 76, 77, 92], "updat": [25, 27, 28, 30, 32, 33, 35, 42, 45, 51, 52, 54, 55, 70, 75, 80, 84, 92], "modif": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 78, 91, 92], "origin": [25, 27, 28, 30, 32, 33, 35, 39, 41, 42, 44, 51, 52, 54, 55, 87, 89, 90, 91, 92, 96, 100], "fluid": [25, 27, 28, 30, 32, 33, 42, 51, 52, 54, 55, 92], "unabl": [25, 27, 28, 30, 32, 33, 42, 52, 54, 55, 92], "reset_categori": [25, 32], "recomput": [25, 32, 35], "unus": [25, 32, 35, 84], "slice": [25, 28, 32, 42, 66, 83, 88, 89, 91, 96, 100], "case": [25, 26, 30, 32, 33, 35, 41, 42, 46, 48, 52, 54, 55, 59, 61, 66, 67, 68, 70, 75, 76, 78, 80, 87, 97], "elimin": [25, 32, 70], "categorical_arrai": [25, 32], "compress": [25, 28, 32, 33, 35, 42, 51, 54, 59, 94, 96], "parquet": [25, 28, 30, 32, 33, 35, 42, 51, 54, 59, 67, 69, 71, 84, 92], "collect": [25, 28, 30, 32, 33, 35, 42, 49, 51, 54, 76, 92], "chunk": [25, 32, 33, 35, 42, 51, 54], "within": [25, 26, 28, 30, 31, 32, 33, 35, 42, 43, 46, 48, 51, 54, 58, 59, 68, 70, 90, 91, 92, 96], "written": [25, 28, 30, 32, 33, 35, 36, 38, 42, 51, 52, 54, 67, 68, 69, 70, 71, 75, 84, 92, 95], "impact": [25, 30, 32, 33, 42, 51, 61, 62, 64, 92], "snappi": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70, 75], "gzip": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70], "brotli": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70], "zstd": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70], "lz4": [25, 28, 32, 33, 35, 42, 51, 54, 59, 70], "neither": [25, 32, 33, 42, 43, 54, 55, 90, 100], "nor": [25, 32, 33, 42, 43, 54, 90, 100], "state": [25, 32, 46, 48, 54, 62], "charact": [25, 26, 27, 31, 32, 43, 54, 78, 100], "set_categori": [25, 32], "new_categori": [25, 32], "old": [25, 32, 62], "unchang": [25, 32], "na": [25, 32, 68], "standardize_categori": [25, 32], "remap": [25, 32], "load": [25, 28, 32, 33, 35, 42, 51, 54, 67, 68, 70, 71, 80, 84], "produc": [25, 32, 54, 89, 100], "to_parquet": [25, 28, 32, 33, 35, 42, 51, 54, 70, 71, 84], "On": [25, 26, 32, 99], "due": [25, 28, 32, 35, 67, 70, 84], "issu": [25, 28, 30, 32, 58, 62, 75, 80, 92, 96], "visibl": [25, 26, 32, 33, 35, 42, 51, 54, 99], "permiss": [25, 32, 33, 42, 51, 54], "form": [25, 29, 32, 33, 42, 50, 51, 54, 62, 78, 100], "numlocal": [25, 26, 28, 32, 33, 35, 42, 51, 54, 99], "effici": [25, 28, 32, 33, 42, 54, 96, 100], "o": [25, 28, 32, 33, 42, 50, 51, 54, 81, 83], "reli": [25, 32, 33, 42, 51, 54, 92], "to_str": [25, 32], "isinst": [25, 32, 58], "send": [25, 26, 28, 32, 35, 42, 43, 51, 54, 58, 84, 91, 99], "node": [25, 28, 32, 35, 42, 51, 54, 59, 68, 82, 84], "1234": [25, 28, 32, 35, 42, 51, 54, 62], "1235": [25, 28, 32, 35, 42, 51, 54], "1236": [25, 28, 32, 35, 42, 51, 54], "1237": [25, 28, 32, 35, 42, 51, 54], "receive_arrai": [25, 28, 32, 42, 51, 54], "complet": [25, 26, 28, 32, 42, 51, 54, 58, 60, 62, 75, 77, 99, 100], "op": [25, 27, 28, 32, 35, 42, 51, 54, 59], "previous": [25, 28, 30, 32, 33, 35, 42, 51, 52, 54, 55, 92], "attempt": [25, 28, 30, 32, 33, 35, 42, 51, 52, 53, 54, 55, 75, 84, 91, 92], "without": [25, 28, 32, 35, 42, 64, 73, 75, 84, 91], "localhost": [26, 73, 99], "5555": [26, 73, 99], "access_token": [26, 99], "connect_url": [26, 73, 99], "access_channel": [26, 99], "channel": [26, 99], "machin": [26, 59, 60, 63, 73, 76, 77, 99], "whicn": [26, 99], "interpret": [26, 32, 35, 59, 84, 99], "socket": [26, 99], "enabl": [26, 32, 38, 42, 50, 63, 75, 76, 78, 84, 99], "authent": [26, 50, 73, 99], "tcp": [26, 73, 99], "token_valu": [26, 99], "zmqchannel": [26, 99], "connectionerror": [26, 99], "pars": [26, 27, 28, 32, 33, 42, 52, 58, 99], "seen": [26, 99], "disconnect": [26, 32, 42], "generate_histori": 26, "num_command": [26, 31], "command_filt": [26, 31], "command": [26, 31, 32, 42, 58, 59, 60, 62, 64, 73, 75, 77, 78, 79, 80, 99], "shell": [26, 31, 32, 35, 77, 84], "jupyt": [26, 31, 73], "notebook": [26, 31, 73], "ipython": [26, 31, 73], "cmd_filter": 26, "retriev": [26, 31, 32, 34, 42, 50, 52, 62], "select": [26, 28, 31, 32, 35, 51, 52, 58, 62, 75, 81, 91, 96], "10000": 26, "randint": [26, 30, 32, 41, 43, 47, 48, 53, 66, 83, 86, 87, 90, 92, 93], "500": [26, 60, 63], "457": 26, "647": 26, "9362": 26, "9602": 26, "9683": 26, "get": [26, 28, 29, 31, 32, 35, 41, 51, 58, 59, 62, 63, 64, 76, 80, 84, 88, 95, 96], "serverhostnam": 26, "serverport": 26, "numpu": 26, "processor": [26, 59], "maxtaskpar": 26, "physicalmemori": 26, "get_mem_avail": 26, "as_perc": 26, "amount": [26, 28, 32, 42, 78, 91, 100], "kb": [26, 28, 32, 33, 52, 56], "mb": [26, 28, 32, 33, 52, 56], "gb": [26, 28, 32, 33, 52, 56], "tb": 26, "pb": 26, "percent": 26, "get_mem_statu": 26, "statu": 26, "total_mem": 26, "total": [26, 28, 30, 32, 35, 54, 59, 84, 92], "physic": [26, 39, 100], "host": [26, 28, 32, 50, 52, 75], "avail_mem": 26, "arkouda_mem_alloc": 26, "alloc": 26, "chapel": [26, 32, 41, 46, 58, 61, 63, 68, 72, 73, 75, 78, 79, 80, 81, 95, 99, 100], "process": [26, 32, 34, 35, 52, 58, 65, 68, 73, 80, 84, 96, 100], "pct_avail_mem": 26, "percentag": [26, 56], "locale_id": 26, "id": [26, 59, 80, 92], "locale_hostnam": 26, "get_mem_us": 26, "symbol": [26, 32, 34, 42, 51, 54, 58, 95], "get_server_command": 26, "commandmap": [26, 58, 78], "print_server_command": 26, "ruok": 26, "imok": 26, "imnotok": 26, "occur": [26, 28, 30, 32, 35, 40, 41, 42, 52, 54, 58, 75, 92, 93, 97, 100], "basic": [26, 32, 33, 42, 50, 62, 80, 88, 95], "wai": [26, 59, 63, 68, 73, 78, 87, 89, 90, 91, 95, 100], "quick": [26, 63], "healthcheck": 26, "respons": [26, 28, 32, 54, 58], "both": [26, 28, 32, 35, 37, 42, 44, 55, 63, 66, 68, 69, 73, 75, 84, 89, 98, 100], "latter": [26, 100], "shutdown": [26, 63, 64, 78], "symtabl": 26, "shut": [26, 73, 78], "down": [26, 61, 62, 64, 73, 75, 78], "bitvector": [27, 32], "width": [27, 32, 100], "64": [27, 32, 41, 42, 43, 47, 48, 59, 90, 91, 95], "revers": [27, 30, 32], "vector": [27, 30, 32, 83, 92], "flag": [27, 32, 35, 45, 59, 64, 78, 99], "field": [27, 32, 43, 54, 62, 84, 100], "signific": [27, 32, 41, 42, 53, 62, 78, 86, 87], "binari": [27, 32, 43, 76, 77, 87], "thin": [27, 32], "mostli": [27, 32], "affect": [27, 32, 46, 48], "conserv": [27, 32], "special_objtyp": [27, 32, 55], "opeq": [27, 32, 42], "export": [27, 32, 35, 41, 60, 63, 75, 76, 77, 80, 93], "callback": [27, 32], "callabl": [27, 28, 32, 91], "msb_left": [27, 32], "pad": [27, 32, 62], "show_int": [27, 32], "back": [27, 30, 32, 56, 58, 61, 64, 84, 92], "represent": [27, 28, 32, 42], "accord": [27, 28, 32, 41, 52, 91, 95], "ipv4": [27, 32, 35, 84], "ip": [27, 32], "export_uint": [27, 32], "ipaddress": [27, 32], "ip_address": [27, 32, 33, 85], "helper": [27, 32, 56], "proof": [27, 32], "made": [27, 28, 32, 54, 100], "accomod": [27, 32], "ipv6": [27, 32], "prevent": [27, 32, 35, 42, 51, 67, 68, 76, 96], "inadvert": [27, 32], "is_ipv4": [27, 32], "ip2": [27, 32], "well": [27, 32, 59, 66, 79], "deal": [27, 32], "is_ipv6": [27, 32], "initialdata": [28, 32, 91], "userdict": [28, 32, 49], "homogen": [28, 32, 91], "frame": [28, 32, 52, 91, 97], "stringifi": [28, 32, 91], "usernam": [28, 32, 50, 52, 91], "alic": [28, 32, 91], "bob": [28, 32, 91], "carol": [28, 32, 91], "userid": [28, 32, 91, 92], "111": [28, 32, 54, 91], "222": [28, 32, 91], "333": [28, 32, 91], "dai": [28, 32, 55, 62, 91, 92], "slightli": [28, 32, 35, 91], "stride": [28, 32, 37, 43, 90, 91, 94], "col1": [28, 32, 91], "col2": [28, 32, 91], "u0": [28, 32, 33], "multiindex": [28, 32, 33, 52, 85, 97], "use_seri": [28, 32, 91], "as_index": [28, 32, 91], "dropna": [28, 30, 32, 83, 91, 92], "groupbyclass": [28, 32, 44, 52, 57, 91, 98], "drop": [28, 30, 32, 42, 62, 87, 92], "kept": [28, 30, 32, 51, 91, 92], "0x7f2cf23e10c0": [28, 32, 91], "onto": [28, 32, 54, 100], "sens": [28, 32, 52], "whose": [28, 32, 51, 52, 54, 97], "df1": [28, 32], "df2": [28, 32], "apply_permut": [28, 32, 91], "perm": [28, 32, 53, 56, 86, 91], "entir": [28, 32, 51, 54, 59, 64, 91, 96], "unsort": [28, 32, 91], "arbitrari": [28, 32, 91], "invers": [28, 32, 41, 56, 91], "perm_arri": [28, 32, 91], "ascend": [28, 30, 32, 33, 41, 42, 52, 85, 91, 93, 97], "coargsort": [28, 32, 53, 83, 86, 89, 91, 100], "sorted_df1": [28, 32, 91], "sorted_df2": [28, 32, 91], "my_table_nam": [28, 32], "col3": [28, 32, 91], "essenti": [28, 32, 42, 51, 54, 91, 96], "deep": [28, 32, 51, 91], "reflect": [28, 32, 77, 91, 96], "shallow": [28, 32, 91], "vice": [28, 32, 84, 91], "versa": [28, 32, 84, 91], "caller": [28, 32, 52, 91], "df_deep": [28, 32, 91], "df_shallow": [28, 32, 91], "corr": [28, 32, 42], "pairwis": [28, 32], "correl": [28, 32, 42], "inplac": [28, 32, 91], "datefram": [28, 32, 91], "drop_dupl": [28, 32, 91], "duplcat": [28, 32, 91], "iter": [28, 32, 35, 43, 53, 59, 83, 84, 86], "dedup": [28, 32, 91], "last": [28, 32, 42, 43, 52, 53, 54, 62, 78, 86, 91, 97, 99, 100], "filter_by_rang": [28, 32], "highest": [28, 32, 42, 43], "unlimit": [28, 32], "qualifi": [28, 32], "filtered_df": [28, 32], "from_panda": [28, 32], "pd_df": [28, 32, 66, 91], "pd": [28, 32, 35, 43, 55, 56, 66, 84, 91], "core": [28, 31, 32, 59, 62, 91], "ak_df": [28, 32, 45, 91], "alia": [28, 30, 32, 51, 55, 91, 92], "head": [28, 32, 52, 62], "quickli": [28, 32, 60, 91], "tail": [28, 32, 43, 52], "mismatch": [28, 30, 32, 75, 92], "unregister_dataframe_by_nam": [28, 32], "isin": [28, 32, 52], "show": [28, 32, 35, 45, 75, 84, 88, 92], "col_a": [28, 32], "col_b": [28, 32], "position": [28, 32], "other_df": [28, 32], "col_c": [28, 32], "infer": [28, 29, 30, 32, 35, 43, 68, 84], "my_dir": [28, 32], "my_data_locale0000": [28, 32], "my_data": [28, 32], "pathlib": [28, 32, 36, 50], "my_path": [28, 32], "join": [28, 32, 51, 54, 57, 58, 83], "getcwd": [28, 32], "hdf5_output": [28, 32], "mkdir": [28, 32], "exist_ok": [28, 32], "memory_usag": [28, 32, 33, 52], "contribut": [28, 32, 52, 58], "One": [28, 30, 32, 33, 42, 52, 56, 66, 92, 97], "5000": [28, 32], "40000": [28, 32], "39": [28, 32, 59], "0625": [28, 32], "88281": [28, 32], "approxim": [28, 32], "memory_usage_info": [28, 32], "1000": [28, 32, 33, 37, 85, 93], "00": [28, 32, 59], "inner": [28, 32, 37], "left_suffix": [28, 32], "_x": [28, 32], "right_suffix": [28, 32], "_y": [28, 32], "convert_int": [28, 32], "databas": [28, 32], "pydata": [28, 32, 52], "intersect": [28, 32, 44, 51, 66, 83, 98], "suffix": [28, 32, 35, 51, 54, 68, 83, 100], "effect": [28, 32, 55, 64, 98], "left_df": [28, 32], "right_df": [28, 32], "col2_x": [28, 32], "col2_i": [28, 32], "outer": [28, 32, 94], "read_csv": [28, 32, 35, 67, 71], "col_delim": [28, 32, 33, 35, 42, 54], "csv": [28, 32, 33, 35, 42, 54, 71, 84], "header": [28, 32, 33, 35, 42, 54, 84], "delimit": [28, 32, 33, 35, 36, 42, 52, 54, 59, 62, 67, 84, 100], "allow_error": [28, 32, 33, 35, 42, 54, 84], "unknown": [28, 32, 33, 35, 42, 43, 54], "arkouda_typ": [28, 32, 33, 35, 42, 54], "to_csv": [28, 32, 33, 35, 42, 54, 67, 71], "newlin": [28, 32, 33, 35, 42, 54, 67], "unlik": [28, 32, 35, 54, 55], "utf": [28, 32, 35, 54], "csv_output": [28, 32], "_locale0000": [28, 32], "renam": [28, 32], "mapper": [28, 32, 91], "nonexist": [28, 32, 91], "99": [28, 32, 59, 91], "lower": [28, 32, 46, 48, 54, 68, 91], "reset_index": [28, 32, 91], "longer": [28, 32, 43, 68, 79, 91], "correctli": [28, 32, 80, 91], "perm_df": [28, 32, 91], "sampl": [28, 32, 41, 43, 46, 47, 48], "random": [28, 32, 43, 45, 57, 59, 82, 83], "disk": [28, 32, 33, 35, 42, 54, 100], "preserv": [28, 32, 52, 97, 100], "sort_index": [28, 32, 52, 97], "sort_valu": [28, 32, 52, 91, 97], "denot": [28, 32, 33, 35, 42, 54, 55], "NOT": [28, 32, 33, 35, 41, 42, 54, 75, 84, 95], "across": [28, 32, 35, 68, 84], "hdf_output": [28, 32], "to_markdown": [28, 32, 52], "wt": [28, 32, 52], "tablefmt": [28, 32, 52], "grid": [28, 32, 45, 52], "storage_opt": [28, 32, 52], "friendli": [28, 32, 52], "tablul": [28, 32, 52], "pypi": [28, 32, 52], "tabul": [28, 32, 52, 79], "extra": [28, 32, 52], "storag": [28, 32, 52, 59], "etc": [28, 32, 52, 62, 76, 80], "fsspec": [28, 32, 52], "s3": [28, 32, 52], "gc": [28, 32, 52], "backend": [28, 32, 52, 61, 75], "small": [28, 32, 41, 52, 68, 84], "animal_1": [28, 32], "elk": [28, 32, 52], "pig": [28, 32, 52], "animal_2": [28, 32], "dog": [28, 32, 52], "quetzal": [28, 32, 52], "suppress": [28, 32], "to_panda": [28, 32, 33, 52, 55, 66, 91, 97], "datalimit": [28, 32, 91], "retain_index": [28, 32, 91], "megabyt": [28, 32, 91], "request": [28, 30, 32, 36, 42, 43, 54, 58, 62, 90, 91, 92], "estim": [28, 30, 32, 42, 87, 91, 92], "convert_categor": [28, 32, 35], "categor": [28, 30, 32, 33, 35, 41, 44, 52, 53, 56, 57, 83, 84, 85, 86, 87, 90, 91, 92, 93, 95, 97, 98], "parquet_output": [28, 32], "update_nrow": [28, 32], "diffaggreg": [28, 32], "differenc": [28, 32], "14": [28, 30, 32, 46, 48, 59, 66, 67, 76, 87, 88, 92, 94], "16": [28, 32, 41, 46, 48, 56, 59, 60, 61, 76, 77, 87, 88, 94], "18": [28, 32, 42, 46, 48, 59, 87, 88, 94], "intx": [28, 32], "ident": [28, 32, 56, 87, 95], "point": [28, 32, 33, 37, 41, 42, 43, 47, 48, 52, 80, 90, 91, 95], "intersect_df": [28, 32], "invert_permut": [28, 32, 56], "arkouda_supported_dtyp": [29, 32], "dtypeobject": [29, 32], "scalardtyp": [29, 32], "all_scalar": [29, 32, 43, 90], "enum": [29, 32, 38, 41, 68], "bigint": [29, 32, 41, 42, 43, 59, 84, 90, 95], "bittyp": [29, 32], "bool_scalar": [29, 32], "check_np_dtyp": [29, 32], "dt": [29, 32, 37, 41, 52, 95], "assert": [29, 32], "float_scalar": [29, 32, 42, 43, 47, 48], "get_byteord": [29, 32], "concret": [29, 32], "byteord": [29, 32], "turn": [29, 32, 52, 63, 73, 97], "get_server_byteord": [29, 32], "inttyp": [29, 32], "issupportednumb": [29, 32], "numeric_scalar": [29, 32, 41, 42, 43, 46, 47, 48, 87, 90], "numpy_scalar": [29, 32, 42, 87], "resolve_scalar_dtyp": [29, 32], "str_": [29, 32, 87, 89, 93, 100], "translate_np_dtyp": [29, 32], "split": [29, 32, 40, 54, 62, 83], "unsupport": [29, 30, 32, 35, 50, 53, 84, 98], "groupby_reduction_typ": [30, 32], "groupabl": [30, 32, 44, 92, 98], "assume_sort": [30, 32, 92, 98], "prepar": [30, 32, 75, 92], "nkei": [30, 32, 52, 83, 92], "unique_kei": [30, 32, 83, 92], "ngroup": [30, 32, 83, 92], "logger": [30, 32, 54, 57, 83, 92], "arkoudalogg": [30, 32, 38, 54, 92], "nativ": [30, 32, 69, 70, 77, 84, 92, 96], "inherit": [30, 32, 92, 95], "overload": [30, 32, 92], "_get_grouping_kei": [30, 32, 92], "reduct": [30, 32, 42, 82, 83, 92, 93], "AND": [30, 32, 51, 83, 92], "bitwis": [30, 32, 92, 95], "reduc": [30, 32, 63, 65, 92], "OR": [30, 32, 51, 62, 83, 92], "xor": [30, 32, 42, 51, 83, 92], "skipna": [30, 32, 92], "calcul": [30, 32, 35, 42, 44, 59, 68, 84, 87, 92, 93, 98], "77777777777777768": [30, 32, 92], "55555555555555536": [30, 32, 92], "33333333333333348": [30, 32, 92], "11111111111111116": [30, 32, 92], "77777777777777779": [30, 32, 92], "55555555555555558": [30, 32, 92], "33333333333333337": [30, 32, 92], "33333333333333326": [30, 32, 92], "group_ani": [30, 32, 92], "group_argmaxima": [30, 32, 92], "minimum": [30, 32, 42, 43, 76, 87, 92, 93], "group_argminima": [30, 32, 92], "unregister_groupby_by_nam": [30, 32, 83, 92], "fill": [30, 32, 42, 43, 46, 48, 59, 82, 90, 92], "constant": [30, 32, 42, 83, 92], "put": [30, 32, 64, 92], "analog": [30, 32, 55, 92], "tensor": [30, 32, 92], "replic": [30, 32, 92], "With": [30, 32, 78, 88, 92, 94], "build_from_compon": [30, 32, 83, 92], "init": [30, 32, 77, 92], "rebuild": [30, 32, 58, 61, 63, 64, 92], "orig_kei": [30, 32, 92], "groupable_element_typ": [30, 32, 52, 92, 97], "maxima": [30, 32, 92], "group_maxima": [30, 32, 92], "averag": [30, 32, 42, 43, 59, 87, 92], "group_mean": [30, 32, 92], "6666666666666665": [30, 32, 92], "7999999999999998": [30, 32, 92], "median": [30, 32, 59, 83, 92], "group_median": [30, 32, 92], "75": [30, 32, 43, 90, 92], "minima": [30, 32, 92], "group_minima": [30, 32, 92], "modal": [30, 32, 92], "most_common": [30, 32, 56, 83, 92], "nuniqu": [30, 32, 51, 83, 92], "group_nuniqu": [30, 32, 92], "group_product": [30, 32, 92], "108": [30, 32, 92], "00000000000003": [30, 32, 92], "9999999999999982": [30, 32, 92], "deviat": [30, 32, 42, 43, 55, 87, 92, 93], "group_std": [30, 32, 92], "len": [30, 32, 42, 51, 54, 87, 92, 94, 96, 100], "howev": [30, 32, 41, 42, 68, 75, 79, 80, 87, 89, 92], "divisor": [30, 32, 42, 87, 92], "unbias": [30, 32, 42, 87, 92], "varianc": [30, 32, 42, 87, 92, 93], "infinit": [30, 32, 41, 42, 87, 92], "popul": [30, 32, 36, 40, 42, 87, 92], "se": [30, 32, 42, 87, 92], "5275252316519465": [30, 32, 92], "0954451150103321": [30, 32, 92], "group_sum": [30, 32, 92], "segarrai": [30, 32, 35, 41, 57, 83, 84, 91, 92], "group_var": [30, 32, 92], "hypothet": [30, 32, 37, 42, 87, 92], "333333333333333": [30, 32, 92], "go": [30, 32, 62, 64, 76, 80, 90], "suppli": [30, 32, 35, 43, 51, 68, 70, 71, 90, 91], "row_start": [30, 32], "nnz": [30, 32], "row_numb": [30, 32], "pda": [30, 32, 41, 42, 43, 53, 55, 58, 86, 87, 90, 93, 95, 98], "return_group": [30, 32, 98], "return_indic": [30, 32, 98], "come": [30, 32, 64, 84, 90, 98], "applic": [30, 32, 41, 84, 90, 92, 98], "along": [30, 32, 41, 43, 90, 98], "consider": [30, 32, 98, 100], "historyretriev": 31, "abstract": 31, "_filter_arkouda_command": 31, "repl": [31, 32, 40, 54, 100], "notebookhistoryretriev": 31, "historyaccessor": 31, "shellhistoryretriev": 31, "akscipi": [32, 57], "array_api": [32, 57], "accessor": [32, 57], "align": [32, 33, 57], "array_view": [32, 35, 57, 88], "client_dtyp": [32, 35, 57], "infoclass": [32, 57], "io": [32, 57, 58, 59, 69, 70, 71], "io_util": [32, 57], "matcher": [32, 57], "pdarraycr": [32, 42, 57], "pdarraysetop": [32, 51, 57, 58, 96], "plot": [32, 41, 57, 84, 93], "secur": [32, 41, 57], "timeclass": [32, 35, 57], "allsymbol": [32, 34], "__allsymbols__": [32, 34], "datetim": [32, 35, 43, 55, 59, 84], "_base_unit": [32, 55], "_abstractbasetim": [32, 55], "datetimeindex": [32, 55], "timeseri": [32, 55], "datetime64": [32, 43, 55], "carri": [32, 55], "Not": [32, 35, 41, 52, 55, 59, 91], "sensit": [32, 55], "sec": [32, 55, 59], "accept": [32, 52, 55, 59, 97], "week": [32, 55, 92], "w": [32, 39, 55, 100], "hour": [32, 55], "h": [32, 41, 45, 55, 82, 93, 99], "minut": [32, 55], "millisecond": [32, 55], "l": [32, 35, 55, 60, 62, 66, 67, 75, 84], "microsecond": [32, 55], "nanosecond": [32, 43, 55], "combin": [32, 54, 55, 56, 64], "mix": [32, 54, 55, 59, 88], "day_of_week": [32, 55], "day_of_year": [32, 55], "dayofweek": [32, 55, 92], "dayofyear": [32, 55], "is_leap_year": [32, 55], "month": [32, 55, 62], "weekdai": [32, 55], "weekofyear": [32, 55], "year": [32, 55], "supported_opeq": [32, 55], "supported_with_datetim": [32, 55], "supported_with_pdarrai": [32, 55], "supported_with_r_datetim": [32, 55], "supported_with_r_pdarrai": [32, 55], "supported_with_r_timedelta": [32, 55], "supported_with_timedelta": [32, 55], "isocalendar": [32, 55], "errormod": [32, 41, 95], "enumer": [32, 38, 41], "deriv": [32, 35, 36, 38, 41, 54, 95], "return_valid": [32, 41, 95], "strict": [32, 41, 95], "name_dict": [32, 46, 48], "seed": [32, 43, 46, 47, 48, 59, 82, 90], "expos": [32, 46, 48, 95], "drawn": [32, 43, 46, 47, 48, 90], "varieti": [32, 46, 48], "mimic": [32, 46, 48], "default_rng": [32, 46, 48], "akint64": [32, 43, 46, 47, 48], "discret": [32, 46, 48], "uniform": [32, 41, 43, 46, 47, 48, 53, 84, 86, 87, 90], "abov": [32, 46, 48, 59, 64, 66, 73, 75, 76, 91, 100], "largest": [32, 42, 46, 48, 52, 87, 97], "uniformli": [32, 43, 46, 47, 48, 90], "rng": [32, 46, 48, 55], "13": [32, 41, 46, 48, 56, 59, 76, 79, 87, 88, 93, 94], "47108547995356098": [32, 46, 48], "055256829926011691": [32, 46, 48], "62511314008006458": [32, 46, 48], "16400145561571539": [32, 46, 48], "standard_norm": [32, 43, 46, 47, 48], "draw": [32, 43, 46, 47, 48], "stdev": [32, 46, 48], "mu": [32, 43, 46, 47, 48], "sigma": [32, 43, 46, 47, 48], "1923875335537315": [32, 46, 48], "8797352989638163": [32, 46, 48], "7085325853376141": [32, 46, 48], "021728052940979934": [32, 46, 48], "boundari": [32, 46, 48, 55], "upper": [32, 46, 48, 54, 62], "030785499755523249": [32, 46, 48], "08505865366367038": [32, 46, 48], "38552048588998722": [32, 46, 48], "allow_list": [32, 33, 85], "max_list_s": [32, 33, 85], "maintain": [32, 33, 35, 51, 69, 84], "older": [32, 33, 42, 68, 76], "is_uniqu": [32, 33], "rtype": [32, 33, 52], "abc": [32, 33, 67], "factori": [32, 33, 54], "consum": [32, 33, 52], "insensit": [32, 33, 42, 54, 59], "save_al": [32, 33, 35, 42, 71], "set_dtyp": [32, 33, 85], "repons": [32, 33, 42, 54], "to_dict": [32, 33], "loglevel": [32, 38], "critic": [32, 38], "debug": [32, 38, 58, 60, 64], "48": [32, 33, 52], "registeredsymbol": [32, 34], "__registeredsymbols__": [32, 34], "individu": [32, 49, 60, 100], "1d": [32, 44, 51, 52, 96, 97, 98], "enter": [32, 52, 84, 97], "_locindex": [32, 52], "supported_scalar": [32, 52], "iat": [32, 52], "_ilocindex": [32, 52], "iloc": [32, 52], "loc": [32, 52], "str_acc": [32, 52], "registerd": [32, 52], "index_label": [32, 52], "value_label": [32, 52], "horizont": [32, 51, 52, 96, 97], "vertic": [32, 51, 52, 96], "verticl": [32, 52, 97], "diff": [32, 52], "consecut": [32, 43, 52, 90], "repmsg": [32, 52, 58], "has_repeat_label": [32, 52], "lst": [32, 52], "scaler": [32, 52, 97], "s2": [32, 41, 52, 87], "give": [32, 42, 52, 67, 79, 97, 99], "rest": [32, 52], "smaller": [32, 52, 62, 67, 84], "3000": [32, 52], "46": [32, 41, 52, 87], "875": [32, 52], "pdconcat": [32, 52, 97], "smallest": [32, 42, 52, 87, 97], "to_datafram": [32, 52], "anim": [32, 52], "topn": [32, 52, 97], "top": [32, 52, 58, 63, 68, 75, 76, 77, 81, 97], "validate_kei": [32, 52], "might": [32, 52, 75, 77, 78], "keyerror": [32, 52], "indexerror": [32, 52], "validate_v": [32, 52], "value_count": [32, 41, 42, 52, 83, 93, 97], "frequent": [32, 52, 78, 97], "strings_pdarrai": [32, 54], "bytes_s": [32, 54], "resid": [32, 42, 54, 95], "encapsul": [32, 43, 50, 54], "composit": [32, 54], "raw": [32, 54, 100], "compos": [32, 43, 54, 73, 84], "shorthand": [32, 42, 54], "cached_regex_pattern": [32, 54], "pattern": [32, 39, 40, 54, 62, 66, 92, 100], "capit": [32, 54], "letter": [32, 54], "capitilz": [32, 54], "lowercas": [32, 43, 54], "decod": [32, 54], "fromencod": [32, 54], "toencod": [32, 54], "encod": [32, 54, 59, 100], "strings_start": [32, 54, 100], "ing": [32, 54, 100], "strings_end": [32, 54, 100], "find_loc": [32, 40, 54, 83, 100], "postit": [32, 54, 100], "positon": [32, 54, 100], "findal": [32, 40, 54, 83, 100], "num_match": [32, 54, 100], "return_match_origin": [32, 39, 40, 54, 100], "conta": [32, 54, 100], "1_2___": [32, 39, 54, 100], "____": [32, 39, 54, 100], "__4___5____6___7": [32, 39, 54, 100], "___": [32, 54, 100], "__": [32, 39, 54, 100], "flatten": [32, 37, 51, 54, 68, 83, 96], "return_seg": [32, 40, 54, 100], "unpack": [32, 54, 73, 77, 100], "flat": [32, 54, 100], "peel": [32, 54, 83, 100], "rpeel": [32, 54, 83, 100], "orig": [32, 54, 100], "six": [32, 54, 100], "one_two": [32, 54, 100], "three_____four____f": [32, 54, 100], "under_flat": [32, 54, 100], "under_map": [32, 54, 100], "from_part": [32, 51, 54], "offset_attrib": [32, 54], "bytes_attrib": [32, 54], "assembl": [32, 54], "entiti": [32, 54], "could": [32, 42, 45, 51, 54, 63, 78, 100], "fullmatch": [32, 54, 83, 100], "whole": [32, 54, 62, 100], "span": [32, 54, 100], "get_byt": [32, 54], "getter": [32, 54], "110": [32, 54], "101": [32, 54], "116": [32, 54], "119": [32, 54], "104": [32, 54], "114": [32, 54], "get_length": [32, 54], "get_offset": [32, 54], "get_prefix": [32, 51, 54, 83, 96], "return_origin": [32, 51, 54, 96], "proper": [32, 41, 51, 54, 56, 96], "long": [32, 51, 54, 64, 96], "enough": [32, 51, 54, 68, 76, 77, 96], "mask": [32, 51, 54, 96], "origin_indic": [32, 51, 54, 96], "get_suffix": [32, 51, 54, 83, 96], "compil": [32, 54, 61, 64, 65, 75, 76, 77, 78, 80], "ssegmentedstr": [32, 54], "usehash": [32, 54], "mere": [32, 54], "isalnum": [32, 54], "alphanumer": [32, 54], "islow": [32, 54], "isupp": [32, 54], "istitl": [32, 54], "not_alnum": [32, 54], "alnum": [32, 54], "strings0": [32, 54], "strings1": [32, 54], "strings2": [32, 54], "isalpha": [32, 54], "alphabet": [32, 54], "not_alpha": [32, 54], "alpha": [32, 54, 59, 82], "stringa": [32, 54], "stringb": [32, 54], "stringc": [32, 54], "isdigit": [32, 54], "digit": [32, 53, 54, 86], "not_digit": [32, 54], "120": [32, 54], "121": [32, 54], "122": [32, 54], "isempti": [32, 54], "not_empti": [32, 54], "isspac": [32, 54], "whitespac": [32, 35, 54], "not_spac": [32, 54], "u0009": [32, 54], "u000b": [32, 54], "u000c": [32, 54], "u000d": [32, 54], "u0009nu000bu000cu000d": [32, 54], "titlecas": [32, 54], "uppercas": [32, 43, 54], "lstick": [32, 54, 83, 100], "insert": [32, 54, 100], "experiment": [32, 54, 100], "stick": [32, 54, 64, 83, 100], "includedelimit": [32, 54, 100], "keepparti": [32, 54, 100], "fromright": [32, 54, 100], "off": [32, 54, 63, 100], "partit": [32, 54, 100], "sought": [32, 54, 100], "prepend": [32, 51, 54, 83, 100], "purge_cached_regex_pattern": [32, 54], "purg": [32, 54], "later": [32, 42, 54, 79], "former": [32, 42, 54, 100], "free": [32, 42, 54], "registr": [32, 42, 54], "rpartit": [32, 54, 100], "compar": [32, 54, 62, 82, 84, 100], "strings_arrai": [32, 54, 68], "save_offset": [32, 54], "upon": [32, 41, 54, 77, 78, 81, 87], "maxsplit": [32, 40, 54, 100], "occurr": [32, 40, 41, 42, 54, 87, 93, 100], "5____6___7": [32, 54, 100], "ior": [32, 54, 100], "toleft": [32, 54, 100], "strip": [32, 54], "char": [32, 54], "lead": [32, 42, 54], "trail": [32, 42, 54], "omit": [32, 54, 55, 59, 68], "1string": [32, 54], "sub": [32, 40, 51, 54, 83, 100], "obtain": [32, 40, 54, 100], "substitut": [32, 40, 54, 73, 75, 100], "substitu": [32, 54, 100], "subn": [32, 54, 83, 100], "new_str": [32, 54, 100], "number_of_substit": [32, 54, 100], "segstr": [32, 54], "hello": [32, 54, 84, 100], "my": [32, 54, 63, 84, 100], "world": [32, 54, 84, 100], "u5": [32, 54, 84, 100], "unregister_strings_by_nam": [32, 54], "timedelta": [32, 35, 43, 55, 84], "durat": [32, 55], "timedeltaindex": [32, 55], "timedelta64": [32, 55], "total_second": [32, 55], "akab": 32, "akbool": 32, "akcast": 32, "target": [32, 36, 41, 43, 59, 61, 62, 75, 84, 90, 94, 95], "never": [32, 41, 95], "uninterpret": [32, 41, 95], "63": [32, 41, 42, 95], "succeed": [32, 41, 95], "safe": [32, 41, 62, 95], "underflow": [32, 41, 95], "precis": [32, 35, 41, 84, 95], "capac": [32, 41, 95], "hold": [32, 41, 95], "akfloat64": 32, "akuint64": 32, "third": [32, 43, 62, 90], "max_bit": [32, 42, 43, 59, 84, 90, 95], "zerodivisionerror": [32, 42, 43, 90], "decreas": [32, 42, 43, 63, 87, 90, 93], "cosin": [32, 41, 87], "At": [32, 41, 42, 87], "elsewher": [32, 41, 42, 87], "retain": [32, 41, 42, 56, 87], "hyperbol": [32, 41], "sine": [32, 41, 87], "tangent": [32, 41], "denom": [32, 41], "pair": [32, 36, 37, 41, 51, 96], "angl": [32, 41], "radian": [32, 41], "rai": [32, 41], "denomin": [32, 41, 42], "placement": [32, 41], "circl": [32, 41], "argmaxk": [32, 42, 83, 87, 93], "maxmum": [32, 42, 87], "outperform": [32, 42, 87], "grow": [32, 42, 87], "beyond": [32, 42, 66, 87], "certain": [32, 42, 60, 78, 87], "depend": [32, 42, 68, 76, 77, 80, 81, 87, 96], "million": [32, 41, 42, 87], "degrad": [32, 42, 87], "argmink": [32, 42, 83, 87, 93], "algorithm": [32, 41, 53, 56, 73, 86], "sortingalgorithm": [32, 53, 86], "radixsortlsd": [32, 53, 86], "radix": [32, 53, 86], "resili": [32, 53, 86], "intens": [32, 53, 66, 86, 90], "dequ": [32, 43, 84], "malform": [32, 43, 84], "overwhelm": [32, 43, 84], "bandwidth": [32, 43, 84], "pdrrai": [32, 41, 43, 84], "twice": [32, 43, 84], "recurs": [32, 43, 84], "respect": [32, 41, 42, 43, 44, 55, 62, 84, 90], "attach_al": [32, 56], "attach_pdarrai": [32, 42], "bound": [32, 42, 43, 47, 48, 51, 55, 90, 96], "unregister_pdarray_by_nam": [32, 42], "list_registri": [32, 34, 42], "100": [32, 41, 42, 45, 56, 59, 66, 87], "my_zero": [32, 42], "potenti": [32, 42], "reconnect": [32, 42], "bigint_to_uint_arrai": [32, 42, 43], "18446744073709551616": [32, 42, 43], "18446744073709551617": [32, 42, 43], "18446744073709551618": [32, 42, 43], "18446744073709551619": [32, 42, 43], "18446744073709551620": [32, 42, 43], "broadcast_dim": [32, 56], "sa": [32, 56], "sb": [32, 56], "broadcast_to_shap": [32, 42], "clear": [32, 42], "clz": [32, 42], "lz": [32, 42], "62": [32, 42, 59], "61": [32, 42], "60": [32, 42], "move": [32, 53, 56, 64, 66, 86, 90, 96], "forward": [32, 53, 80, 86, 96], "thu": [32, 35, 43, 53, 58, 68, 69, 86, 96], "lexicograph": [32, 53, 62, 86], "compute_join_s": [32, 37], "convert_if_categor": [32, 56], "cov": [32, 42], "covari": [32, 42], "create_pdarrai": [32, 58], "gpu": [32, 42], "ctz": [32, 42], "cumprod": [32, 41, 83, 87], "cumul": [32, 41, 45, 82, 87], "th": [32, 41, 51, 87, 96], "5728783400481925": [32, 41, 87], "0472855509390593": [32, 41, 87], "33": [32, 41, 87], "78523998586553": [32, 41, 87], "134": [32, 41, 87], "05309592737584": [32, 41, 87], "450": [32, 41, 87], "21589865655358": [32, 41, 87], "cumsum": [32, 41, 83, 87], "1598310770203937": [32, 41, 87], "4110385860243131": [32, 41, 87], "1622479306453748": [32, 41, 87], "710615785506533": [32, 41, 87], "945880905466208": [32, 41, 87], "date_rang": [32, 55], "period": [32, 55], "freq": [32, 55], "tz": [32, 55], "impos": [32, 55], "dateoffset": [32, 55], "5h": [32, 55], "offset_alias": [32, 55], "alias": [32, 55], "tzinfo": [32, 55], "zone": [32, 55], "asia": [32, 55], "hong_kong": [32, 55], "timezon": [32, 55], "naiv": [32, 55], "midnight": [32, 55], "Of": [32, 55], "exactli": [32, 55], "linearli": [32, 43, 55, 90], "learn": [32, 55, 58, 73], "deg2rad": [32, 41], "disableverbos": [32, 38], "disabl": [32, 38, 60], "defaultt": [32, 38], "divmod": [32, 42], "dividend": [32, 42], "floordivis": [32, 42], "modular": [32, 42, 64], "divis": [32, 42], "quotient": [32, 42], "No": [32, 42, 75, 80], "div": [32, 42], "dot": [32, 42, 62], "pda1": [32, 42, 44, 98], "pda2": [32, 42, 44, 98], "elementwis": [32, 42], "singleton": [32, 42], "enableverbos": [32, 38], "exponenti": [32, 41, 87], "7182818284590451": [32, 41, 87], "3890560989306504": [32, 41, 87], "085536923187668": [32, 41, 87], "54": [32, 41, 87], "598150033144236": [32, 41, 87], "84010843172504": [32, 41, 87], "454368507659211": [32, 41, 87], "5571769623557188": [32, 41, 87], "494295836924771": [32, 41, 87], "478894913238722": [32, 41, 87], "minu": [32, 41], "exp1m": [32, 41], "19": [32, 41, 56, 88, 94], "53": [32, 41], "45": [32, 41], "32": [32, 41, 42, 50, 59, 66, 68, 76, 77], "read_path": [32, 35, 84], "dataset_nam": [32, 35, 84], "ak_data": [32, 35, 84], "write_fil": [32, 35, 84], "return_obj": [32, 35, 84], "read_parquet": [32, 35, 71, 84], "read_hdf": [32, 35, 51, 71, 84], "import_data": [32, 35, 69, 84], "fmod": [32, 42], "from_seri": [32, 43], "overridden": [32, 43, 50], "situat": [32, 43], "57600036956445599": [32, 43], "41619265571741659": [32, 43], "6615356693784662": [32, 43], "choic": [32, 43, 75], "to_datetim": [32, 43], "2018": [32, 43], "01": [32, 43, 59, 62, 64], "1514764800000000000": [32, 43], "parseabl": [32, 43, 90], "deleg": [32, 41, 43, 47, 48, 90, 93], "accordingli": [32, 43, 68, 90], "gen_rang": [32, 37], "return_length": [32, 37], "actual": [32, 37, 58, 67], "generic_concat": [32, 56], "get_callback": [32, 56], "get_column": [32, 35, 67, 71], "get_dataset": [32, 35, 67, 71, 84], "column_delim": [32, 35, 84], "read_nest": [32, 35, 84], "get_filetyp": [32, 35], "get_null_indic": [32, 35], "datasetnam": [32, 35, 84], "siphash": [32, 41], "risk": [32, 41, 68], "few": [32, 41, 66], "strongli": [32, 41], "cryptograph": [32, 41], "emploi": [32, 41], "adversari": [32, 41], "engin": [32, 41], "linear": [32, 41, 100], "subsequ": [32, 41, 68], "xore": [32, 41], "cancel": [32, 41], "henc": [32, 41], "rotat": [32, 41, 42], "ordin": [32, 41], "hist_al": [32, 45], "col": [32, 45], "histogram": [32, 41, 45, 83], "visual": [32, 45], "randn": [32, 45], "bin": [32, 41, 42, 45, 75, 76, 77, 80, 93], "evenli": [32, 41, 43, 90, 93], "edg": [32, 41, 45, 93], "notimplementederror": [32, 41, 58, 93], "histogram2d": [32, 41, 93], "matplotlib": [32, 41, 45, 79, 93], "pyplot": [32, 41, 45, 93], "plt": [32, 41, 45, 93], "nbin": [32, 41, 93], "bi": [32, 41], "coordin": [32, 41, 88], "nx": [32, 41, 59], "ny": [32, 41], "hist": [32, 41], "x_edg": [32, 41], "y_edg": [32, 41], "histogramdd": [32, 41], "multidimension": [32, 41], "nd": [32, 41], "z": [32, 41], "glob": [32, 35, 84], "runtimewarn": [32, 35, 84], "assume_uniqu": [32, 44, 98], "indexof1d": [32, 44], "arr": [32, 44], "multia": [32, 44, 98], "multib": [32, 44, 98], "issupportedint": 32, "as_compon": [32, 56], "is_sort": [32, 42, 83, 87, 93], "monoton": [32, 42, 87, 93], "finit": [32, 41], "join_on_eq_with_dt": [32, 37], "a1": [32, 37, 41, 87], "a2": [32, 37, 41, 87], "t1": [32, 37], "t2": [32, 37], "pred": [32, 37], "result_limit": [32, 37], "window": [32, 37, 50, 73, 81], "predic": [32, 37], "timestamp": [32, 37], "milli": [32, 37], "result_array_on": [32, 37], "true_dt": [32, 37], "abs_dt": [32, 37], "pos_dt": [32, 37], "list_symbol_t": [32, 34], "path_prefix": [32, 35], "calc_string_offset": [32, 35, 84], "detect": [32, 35, 68, 84], "termin": [32, 35, 68, 73, 80, 99], "invalid": [32, 35, 84], "filenotfound": [32, 35], "cwd": [32, 35, 42], "name_prefix_local": [32, 35, 42], "filetyp": [32, 35, 84], "datsetnam": [32, 35], "read_": [32, 35], "natur": [32, 41, 87], "logarithm": [32, 41, 87], "3025850929940459": [32, 41, 87], "6051701859880918": [32, 41, 87], "3219280948873626": [32, 41, 87], "6438561897747253": [32, 41, 87], "plu": [32, 41], "h5l": [32, 35], "imit": [32, 35], "technic": [32, 35], "ls_csv": [32, 35, 67, 71], "maxk": [32, 42, 78, 83, 87, 93], "degred": [32, 42, 87], "mink": [32, 42, 78, 83, 87, 93], "complementari": [32, 42], "Ones": [32, 43, 90], "pariti": [32, 42], "odd": [32, 42], "mydtyp": [32, 42, 95], "attributi": [32, 42, 95], "opeqop": [32, 42], "coeffici": [32, 42], "format_oth": [32, 42], "itself": [32, 42, 62], "popcount": [32, 42], "fastest": [32, 42], "fortran": [32, 42, 95], "rotl": [32, 42], "rotr": [32, 42], "h5": [32, 35, 42, 84], "slice_bit": [32, 42], "bottom": [32, 42, 62], "65": [32, 42], "0b101111111111111111111111111111111111111111111111111111111111111111": [32, 42], "0b10": [32, 42], "numeric_and_bool_scalar": [32, 42], "to_cuda": [32, 42], "numba": [32, 42], "devicend": [32, 42], "builtin": [32, 42], "devicendarrai": [32, 42], "importerror": [32, 42], "cuda": [32, 42], "modulenotfounderror": [32, 42], "cours": [32, 42], "name_prefix": [32, 35, 42, 84], "to_parqet": [32, 42], "attahc": [32, 42], "plot_dist": [32, 45], "xlabel": [32, 45], "newfig": [32, 45], "graph": [32, 45, 92], "figur": [32, 45, 64], "below": [32, 45, 59, 60, 66, 75, 76, 77, 79, 84, 91], "pwr": [32, 42], "uniniti": [32, 42], "vari": [32, 42, 66, 75, 77, 79, 81, 96], "27": [32, 42, 59, 66, 88], "pretty_print_inform": [32, 34], "rad2deg": [32, 41], "pull": [32, 35, 43, 62, 68], "undefin": [32, 43, 47, 48, 90], "92176432277231968": [32, 43, 47, 48, 90], "083130710959903542": [32, 43, 47, 48, 90], "68894208386667544": [32, 43, 47, 48, 90], "9160772326374946": [32, 43, 47, 48, 90], "353429832157099": [32, 43, 47, 48, 90], "5392023718621486": [32, 43, 47, 48, 90], "random_strings_lognorm": [32, 43], "logmean": [32, 43], "logstd": [32, 43], "printabl": [32, 43], "lognorm": [32, 43], "heavi": [32, 43], "toward": [32, 43], "tvkjte": [32, 43], "abocorhfm": [32, 43], "ludmmgtb": [32, 43], "kwoqnphz": [32, 43], "vsxrrl": [32, 43], "fp": [32, 43], "3q4kc": [32, 43], "hf": [32, 43], "ie": [32, 43], "djkba": [32, 43], "5oz1": [32, 43], "random_strings_uniform": [32, 43], "minlen": [32, 43], "maxlen": [32, 43], "tvkj": [32, 43], "ewab": [32, 43], "hfmd": [32, 43], "4k": [32, 43], "hff": [32, 43], "stricttyp": [32, 35, 84], "tell": [32, 35, 59, 84], "versu": [32, 35, 84], "independ": [32, 35, 50, 84], "sequenti": [32, 35, 84], "dset_nam": [32, 35], "strict_typ": [32, 35], "tag_data": [32, 35], "tagdata": [32, 35], "read_tagged_data": [32, 35], "record": [32, 35], "filename_cod": [32, 35], "filname_cod": [32, 35], "col_nam": [32, 35], "sent": [32, 35, 69], "receive_datafram": [32, 35], "send_arrai": [32, 35], "register_al": [32, 56], "myarrai": [32, 56], "restor": [32, 35], "snapshot": [32, 35], "alongsid": [32, 35], "rot": [32, 42], "160": [32, 42], "384": [32, 42], "896": [32, 42], "2048": [32, 42], "4608": [32, 42], "512": [32, 42], "256": [32, 42, 59], "96": [32, 42], "56": [32, 42, 67], "nearest": [32, 41], "14159": [32, 41], "wrong": [32, 35, 99], "setdiff1d": [32, 44, 51, 58, 66, 83, 96, 98], "setxor1d": [32, 44, 51, 58, 66, 83, 96, 98], "skew": 32, "bia": 32, "weight": 32, "9442193396379163": 32, "4142135623730951": [32, 42], "7320508075688772": [32, 42], "68586185091150265": [32, 43, 47, 48], "1723810583573375": [32, 43, 47, 48], "567584107142031": [32, 43, 47, 48], "timedelta_rang": [32, 55], "invok": [32, 43, 47, 48], "30013431967121934": [32, 43, 47, 48], "47383036230759112": [32, 43, 47, 48], "0441791878997098": [32, 43, 47, 48], "unregister_al": [32, 56], "return_count": [32, 41, 93], "choos": [32, 41, 62, 77, 80, 87, 99], "claus": [32, 41, 87], "unequ": [32, 41, 87], "cond": [32, 41, 87], "s1": [32, 41, 87], "c1": [32, 41, 87], "c2": [32, 41, 87], "write_log": [32, 38], "log_msg": [32, 38], "clientgeneratedlog": [32, 38], "log_lvl": [32, 38], "identif": [32, 38], "delimited_file_to_dict": 36, "unsupportedoper": 36, "dict_to_delimited_fil": 36, "oerror": 36, "get_directori": 36, "write_line_to_fil": 36, "unsupportedopt": 36, "parent_entry_nam": [39, 40], "match_typ": [39, 40, 83, 100], "matchtyp": [39, 40, 100], "find_match": [39, 83, 100], "group_num": [39, 100], "return_group_origin": [39, 100], "isaac": [39, 100], "newton": [39, 100], "calculu": [39, 100], "gottfri": [39, 100], "leibniz": [39, 100], "math": [39, 100], "indici": [39, 100], "locationsinfo": 40, "get_match": 40, "return_num_sub": 40, "pcg64": 46, "manner": [46, 58], "unstabl": 46, "unalt": 46, "generate_token": 50, "secret": 50, "token_hex": 50, "hexidecim": 50, "generate_username_token_json": 50, "get_arkouda_client_directori": 50, "platform": 50, "artifact": 50, "home": [50, 75, 78], "environ": [50, 59, 73, 78, 79], "get_home_directori": 50, "expandus": 50, "get_usernam": 50, "environmenterror": 50, "linux": [50, 59, 75, 80, 81], "maco": [50, 73, 76, 81], "aka": 50, "darwin": [50, 77], "username_token": 50, "len_suffix": 51, "_length": 51, "seg_suffix": 51, "_segment": [51, 68], "non_empti": 51, "increas": [51, 96], "append_singl": [51, 83, 96], "unord": 51, "yet": [51, 75, 84, 88], "discard_empti": 51, "from_multi_arrai": 51, "face": [51, 62, 95], "get_jth": [51, 83, 96], "j": [51, 60, 61, 76, 77, 96], "backward": [51, 56, 96], "get_length_n": [51, 83, 96], "get_ngram": [51, 83, 96], "gram": [51, 96], "came": [51, 96], "ngram": [51, 83], "seg_a": [51, 96], "seg_b": [51, 96], "segment_nam": 51, "value_nam": 51, "prepend_singl": [51, 83, 96], "remove_repeat": [51, 83, 96], "return_multipl": [51, 96], "condens": [51, 96], "norepeat": [51, 96], "set_jth": [51, 83, 96], "setdiff": [51, 83, 96], "setxor": [51, 83, 96], "segarr": [51, 96], "unregister_segarray_by_nam": 51, "val_suffix": 51, "_valu": [51, 68], "convert_byt": 56, "enrich_inplac": 56, "keynam": 56, "seg": 56, "earlier": [56, 66], "report_mem": 56, "sparse_sum_help": 56, "idx1": 56, "idx2": 56, "val1": 56, "val2": 56, "percent_transfer_limit": 56, "matric": 56, "would": [56, 60, 64, 69, 84, 87, 92], "vals1": 56, "vals2": 56, "inds2": 56, "28": [56, 88], "page": [57, 62, 75], "auto": [57, 62], "arkouda": [57, 59, 62, 64, 65, 69, 71, 79, 80, 81, 82, 83, 84, 86, 87, 89, 90, 92, 93, 94, 95, 98], "sphinx": [57, 75, 79], "autoapi": [57, 79], "guid": [58, 73, 75, 76, 77], "describ": [58, 62], "walk": [58, 60, 73], "times2": 58, "conform": 58, "somewher": 58, "subdirectori": 58, "numpydoc": 58, "readthedoc": 58, "generic_msg": [58, 78], "repli": 58, "possibli": 58, "typecheck": 58, "doubl": 58, "cmd": [58, 78], "arg1": 58, "__all__": 58, "machineri": 58, "broken": 58, "dispatch": 58, "arraysetop": [58, 98], "arraysetopsmsg": 58, "modul": [58, 63, 64, 73, 84, 100], "sake": 58, "simplic": 58, "happen": [58, 62], "serverdaemon": 58, "times2msg": 58, "gensymentri": 58, "getgenerictypearrayentri": 58, "tosymentri": 58, "symentri": 58, "st": 58, "addentri": 58, "servererrorstr": 58, "src": [58, 78], "respond": 58, "reqmsg": 58, "msgarg": 58, "borrow": 58, "messagearg": 58, "symtab": 58, "msgtupl": 58, "throw": 58, "vname": 58, "nextnam": 58, "gent": 58, "getgenerictypedarrayentri": 58, "getvalueof": 58, "av": 58, "createsymentri": 58, "attrib": 58, "aslogg": 58, "getmodulenam": [58, 78], "getroutinenam": 58, "getlinenumb": 58, "msgtype": 58, "errormsg": 58, "ret": 58, "final": [58, 59, 62, 75], "resisterfunct": 58, "abl": [58, 62, 68, 69, 75, 84], "launch": [58, 80, 83], "script": [58, 63, 77, 78, 82], "undoubl": 58, "overview": 59, "simplest": 59, "navig": [59, 62, 75, 76, 77, 79], "python3": [59, 63, 75, 76], "autosav": 59, "benchmark_v2": 59, "commandlin": 59, "0001_0d4865d7c9453adc6af6409568da326845c358b9_20230406_165330": 59, "Will": 59, "counter_nam": 59, "trial": [59, 82], "comma": [59, 67, 75], "NO": 59, "comparison": [59, 67, 89, 95, 96, 100], "maxbit": 59, "wraparound": 59, "unaffect": 59, "index_s": [59, 82], "gather": [59, 83], "scatter": [59, 83], "value_s": [59, 82], "idna": 59, "ascii": 59, "io_only_writ": 59, "io_only_read": 59, "io_only_delet": 59, "io_files_per_loc": 59, "io_compress": 59, "io_path": 59, "ak_io_benchmark": 59, "measur": [59, 82], "rate": 59, "encoding_benchmark": 59, "arkouda_root": 59, "cpython": 59, "64bit": 59, "0014_31de39be8b19c76d073a8999def6673a305c250d_20230405_145759_uncommit": 59, "strings_encodedecod": 59, "stddev": 59, "iqr": 59, "outlier": 59, "bench_encod": 59, "3304": 59, "2561": 59, "7544": 59, "5306": 59, "8075": 59, "9012": 59, "210": 59, "3306": 59, "79": 59, "3805": 59, "02": 59, "8800": 59, "7336": 59, "6465": 59, "58": 59, "4231": 59, "5246": 59, "267": 59, "8380": 59, "bench_decod": 59, "4444": 59, "03": 59, "4177": 59, "7852": 59, "4097": 59, "5622": 59, "04": [59, 80], "5837": 59, "264": 59, "1882": 59, "4621": 59, "9177": 59, "2250": 59, "6125": 59, "50": [59, 66], "0197": 59, "17": [59, 66, 88, 94], "9991": 59, "90": 59, "236": 59, "6864": 59, "88": 59, "0015_31de39be8b19c76d073a8999def6673a305c250d_20230405_145947_uncommit": 59, "4298": 59, "6450": 59, "5541": 59, "0889": 59, "5801": 59, "1436": 59, "281": 59, "3620": 59, "4875": 59, "5255": 59, "7912": 59, "07": 59, "4328": 59, "87": 59, "5652": 59, "4869": 59, "263": 59, "7659": 59, "94": 59, "lot": 59, "benefici": [59, 70], "purpos": [59, 62, 85, 91, 97], "main": [59, 62, 68], "area": 59, "care": 59, "lesser": 59, "extent": 59, "cpu": 59, "architectur": 59, "ran": [59, 63], "350": 59, "relat": [59, 62, 66], "machine_info": 59, "msi": 59, "x86_64": [59, 76, 80], "python_compil": 59, "gcc": [59, 76], "python_implement": 59, "python_implementation_vers": 59, "python_vers": 59, "python_build": 59, "nov": 59, "26": [59, 88], "2020": 59, "57": 59, "microsoft": [59, 80], "wsl2": [59, 81], "cpuinfo_vers": 59, "cpuinfo_version_str": 59, "arch": 59, "arch_string_raw": 59, "vendor_id_raw": 59, "genuineintel": 59, "brand_raw": 59, "intel": 59, "tm": 59, "i7": 59, "8750h": 59, "20ghz": 59, "hz_advertised_friendli": 59, "2000": 59, "ghz": 59, "hz_actual_friendli": 59, "2080": 59, "hz_advertis": 59, "2200000000": 59, "hz_actual": 59, "2207999000": 59, "model": 59, "158": 59, "famili": 59, "3dnowprefetch": 59, "abm": 59, "adx": 59, "ae": 59, "apic": 59, "arch_cap": 59, "avx": 59, "avx2": 59, "bmi1": 59, "bmi2": 59, "clflush": 59, "clflushopt": 59, "cmov": 59, "constant_tsc": 59, "cpuid": 59, "cx16": 59, "cx8": 59, "de": 59, "erm": 59, "f16c": 59, "flush_l1d": 59, "fma": 59, "fpu": 59, "fsgsbase": 59, "fxsr": 59, "ht": 59, "hypervisor": 59, "ibpb": 59, "ibr": 59, "invpcid": 59, "invpcid_singl": 59, "lahf_lm": 59, "lm": 59, "mca": 59, "mce": 59, "mmx": 59, "movb": 59, "msr": 59, "mtrr": 59, "nopl": 59, "osxsav": 59, "pae": 59, "pat": 59, "pcid": 59, "pclmulqdq": 59, "pdpe1gb": 59, "pge": 59, "pni": 59, "popcnt": 59, "pse": 59, "pse36": 59, "pti": 59, "rdrand": 59, "rdrnd": 59, "rdseed": 59, "rdtscp": 59, "rep_good": 59, "sep": 59, "smap": 59, "smep": 59, "ss": 59, "ssbd": 59, "sse": 59, "sse2": 59, "sse4_1": 59, "sse4_2": 59, "ssse3": 59, "stibp": 59, "syscal": 59, "tsc": 59, "vme": 59, "xgetbv1": 59, "xsave": 59, "xsavec": 59, "xsaveopt": 59, "xtopologi": 59, "l3_cache_s": 59, "9437184": 59, "l2_cache_s": 59, "mib": 59, "l1_data_cache_s": 59, "196608": 59, "l1_instruction_cache_s": 59, "l2_cache_line_s": 59, "l2_cache_associ": 59, "commit_info": 59, "31de39be8b19c76d073a8999def6673a305c250d": 59, "2023": [59, 73, 76], "04t16": 59, "author_tim": 59, "04t12": 59, "dirti": 59, "2324_pytest_benchmark_doc": 59, "fullnam": 59, "extra_info": 59, "descript": [59, 62, 66, 83], "problem_s": 59, "transfer_r": 59, "0002": 59, "gib": 59, "disable_gc": 59, "timer": 59, "perf_count": 59, "min_round": 59, "max_tim": 59, "min_tim": 59, "5e": 59, "06": 59, "warmup": 59, "004066600000442122": 59, "007168699999965611": 59, "0048064200000226265": 59, "001326192548940973": 59, "004246700000294368": 59, "0009575499998391024": 59, "q1": 59, "004131924999910552": 59, "q3": 59, "005089474999749655": 59, "iqr_outli": 59, "stddev_outli": 59, "ld15iqr": 59, "hd15iqr": 59, "208": 59, "0550596900172": 59, "024032100000113132": 59, "00383609999971668": 59, "0043372999998609885": 59, "004057779999857303": 59, "00018361238254747651": 59, "0040258999997604406": 59, "0002090000002681336": 59, "0039507749997937935": 59, "004159775000061927": 59, "246": 59, "44017172817806": 59, "020288899999286514": 59, "05t15": 59, "09": [59, 76], "097392": 59, "pai": 59, "attent": 59, "featur": [60, 61, 62, 63, 65, 75, 78, 84, 92], "chpl_comm": [60, 76, 77], "gasnet_spawnfn": 60, "gasnet_route_output": 60, "chpl_gasnet_cfg_opt": 60, "ibv": 60, "gasnet_quiet": 60, "gasnet_masterip": 60, "127": 60, "gasnet_workerip": 60, "chpl_test_timeout": 60, "chpl_rt_oversubscrib": 60, "ye": 60, "gasnetsetup": 60, "cd": [60, 73, 76, 77, 79], "chpl_home": [60, 76, 77], "nl": [60, 73, 99], "too": [61, 84], "parallel": [61, 84, 95, 98], "leverag": [61, 76], "increment": [61, 62], "everyth": [61, 62], "cut": [61, 62, 64], "somewhat": 61, "heroic": 61, "acceler": 61, "makebinari": 61, "bottleneck": 61, "tend": 61, "chpl_target_compil": 61, "clang": [61, 76], "gnu": [61, 80], "j16": 61, "outlin": [62, 68], "taken": [62, 78], "evolv": 62, "gain": 62, "team": 62, "action": 62, "click": [62, 75, 81], "draft": 62, "button": 62, "bring": 62, "text": [62, 67, 84], "box": 62, "publish": 62, "scheme": 62, "yyyi": 62, "mm": 62, "dd": 62, "v2022": 62, "31": [62, 80], "hei": 62, "mistak": 62, "ok": 62, "dash": 62, "underneath": 62, "excel": 62, "next": [62, 64, 75, 78, 99], "major": [62, 67, 85, 91, 97], "minor": 62, "review": 62, "Or": 62, "straight": 62, "green": 62, "believ": 62, "loos": 62, "remot": [62, 76, 77, 99], "upstream": [62, 76, 77], "someth": [62, 63, 99], "fetch": [62, 64], "previou": [62, 64, 77], "recent": 62, "ellips": 62, "prev": 62, "onlin": [62, 80], "concis": 62, "onelin": 62, "graphic": 62, "gitk": 62, "push": [62, 75], "strive": 62, "hyperlink": 62, "reason": [62, 64, 77], "guidelin": [62, 100], "substanti": 62, "bug": [62, 65], "coupl": 63, "unset": [63, 77], "optim": 63, "wors": 63, "matter": 63, "hit": 63, "chpl_develop": [63, 77], "rebuilt": 63, "homebrew": [63, 75], "shouldn": [63, 64], "worri": 63, "biggest": 63, "involv": [63, 81], "focus": 63, "just": [63, 64, 95], "crucial": 63, "saveusedmodul": [63, 64, 78], "piec": 63, "benchmark": [63, 65, 78, 82], "interact": [63, 67, 71, 72, 73, 77, 79], "session": [63, 73], "usedmodul": [63, 64, 78], "ctrl": 63, "easiest": 63, "mv": [63, 64], "arkouda_config_fil": [63, 78], "know": 63, "ll": [63, 64, 75], "suggest": [64, 80], "gasnet": [64, 65, 76, 77], "report": 64, "pretti": 64, "frustrat": 64, "past": 64, "recompil": 64, "checkout": 64, "v2023": [64, 73], "isn": 64, "mine": 64, "wherev": 64, "rememb": [64, 66], "won": 64, "overnight": 64, "hog": 64, "ve": [64, 76, 77], "got": 64, "forget": [64, 80], "techniqu": 64, "unnecessari": 64, "tip": [65, 75], "aim": 66, "introduct": 66, "commonli": 66, "exhaust": [66, 68], "ak_arr": 66, "easili": 66, "np_arr": 66, "52": 66, "84": 66, "80": 66, "71": 66, "aid": [66, 68], "transit": 66, "toolset": 66, "IN": 66, "ak_in1d": 66, "ak_int": 66, "m1": 66, "m2": 66, "ak_in1dmult": 66, "ak_in1dmulti": 66, "ak_intmult": 66, "though": 66, "extrem": [66, 68, 70], "let": 66, "sever": [66, 68, 84, 87, 90], "column_nam": 66, "column_data": 66, "fname": 66, "john": 66, "jane": 66, "jake": 66, "lname": 66, "smith": 66, "brown": 66, "ag": 66, "37": 66, "35": 66, "salari": 66, "75000": 66, "77000": 66, "100000": 66, "35000": 66, "f_name": 66, "l_name": 66, "notic": 66, "demo": 66, "computation": 66, "interest": 66, "cola": 67, "colb": 67, "colc": 67, "ghi": 67, "arkodua": [67, 68], "flexibl": 68, "adher": 68, "portion": 68, "isbool": 68, "file_vers": 68, "arkouda_vers": 68, "c_string": 68, "mark": 68, "therefor": 68, "unflatten": 68, "reconstruct": 68, "number_of_dimens": 68, "array_of_size_rank": 68, "current_arkouda_vers": 68, "na_cod": 68, "unique_key_idx": 68, "key_": 68, "notifi": 68, "elect": [68, 69], "ONE": 68, "explicit": [68, 95], "still": [68, 100], "orient": [70, 89, 91, 95, 100], "writ": 70, "paruqet": 70, "ineffiec": 70, "fact": 70, "analyt": 72, "supercomput": 72, "visit": [73, 76, 77], "conda": [73, 75, 76, 77, 79], "yml": [73, 76, 77, 79], "download": [73, 76, 77, 81], "05": 73, "tar": [73, 75, 76, 77], "xzf": [73, 77], "gz": [73, 75, 76, 77], "listen": [73, 99], "your_machin": 73, "chapel_vers": 73, "15461882265": 73, "token_str": 73, "node01": [73, 99], "hang": 73, "exit": [73, 80], "prerequisit": [75, 76, 77], "proceed": 75, "manag": [75, 76, 77, 79, 81], "mac": [75, 77], "makefil": 75, "zeromq": [75, 79], "eval": 75, "anaconda3": [75, 76, 77], "pip": [75, 76, 77], "grep": [75, 80], "opt": [75, 76, 77], "caskroom": [75, 77], "miniforg": 75, "site": 75, "rpath": 75, "boost": 75, "cpp": 75, "thrift": 75, "utf8proc": 75, "virtual": 75, "venv": [75, 76], "activ": [75, 76, 77, 92], "upgrad": [75, 79], "wheel": 75, "clean": 75, "deactiv": 75, "rm": 75, "rf": 75, "dist": 75, "whl": 75, "chpldoc": [75, 76], "frontend": 75, "browser": 75, "ghpage": 75, "scroll": 75, "folder": 75, "homepag": 75, "md": [75, 76, 77], "sudo": [76, 80], "apt": 76, "m4": 76, "perl": 76, "bash": [76, 77], "mawk": 76, "pkg": 76, "config": [76, 78], "cmake": [76, 79], "llvm": [76, 77, 80], "libclang": 76, "cpp14": 76, "libedit": 76, "repo": [76, 77, 81], "encourag": [76, 77], "your_fork": [76, 77], "further": [76, 77, 81], "highli": 76, "archiv": 76, "x86": 76, "wget": 76, "sh": [76, 77], "bashrc": [76, 77, 80], "packag": [76, 77, 79, 81], "pythonpath": [76, 77], "live": [76, 77], "pwd": [76, 77], "conveni": [76, 77, 84], "quickstart": [76, 77, 81], "particularli": [76, 78], "regard": 76, "distro": 76, "cento": 76, "consequ": 76, "newer": 76, "devtoolset": 76, "softwar": 76, "explod": 76, "lang": 76, "xvf": 76, "setchplenv": [76, 77], "chplconfig": 76, "chpl_re2": [76, 77], "bundl": [76, 77], "chpl_llvm": [76, 77], "chpl_gmp": [76, 77], "linux64": 76, "yum": 76, "devel": 76, "gawk": 76, "curl": 76, "incompat": 76, "el7": 76, "scl": 76, "rh": 76, "cm_version": 76, "kitwar": 76, "licens": 76, "subdir": 76, "simul": [76, 77], "manual": 77, "brew": 77, "cask": 77, "exact": 77, "chipset": 77, "2022": 77, "macosx": 77, "arm64": 77, "progress": 77, "life": [77, 79], "cycl": [77, 79], "sync": 77, "zsh": 77, "gmp": 77, "rc": 77, "path_to_chpl": 77, "chpl_target_cpu": 77, "path_to_ark": 77, "reactiv": 77, "zshrc": 77, "successfulli": 77, "hello3": 77, "datapar": 77, "defautl": 77, "funcion": 78, "prior": 78, "exclud": 78, "valuabl": 78, "switch": [78, 88], "totestmsg": 78, "testmsg": 78, "addition": [78, 85], "kextrememsg": 78, "registerfunct": 78, "minkmsg": 78, "maxkmsg": 78, "accomplish": [78, 84], "approach": [78, 96], "test_command": 78, "__dict__": 78, "sometim": [78, 88, 95], "difficult": 78, "discov": 78, "inspect": [78, 84], "wish": 78, "pyzmq": 79, "typeguard": 79, "pyfiglet": 79, "h5py": [79, 84], "pyarrow": [79, 84], "pexpect": 79, "argpars": 79, "furo": 79, "myst": 79, "parser": 79, "linkifi": 79, "ast": 79, "931": 79, "990": 79, "yaml": 79, "env_nam": 79, "yaml_fil": 79, "prune": 79, "path_to_arkouda": 79, "strategi": [79, 80, 84], "eager": 79, "subsystem": 80, "wsl": 80, "rout": 80, "ubuntu": 80, "tutori": 80, "app": 80, "account": 80, "symlink": 80, "lt": 80, "tblgen": 80, "libtinfow": 80, "ln": 80, "libtic": 80, "plan": [80, 81, 93, 95], "powershel": 80, "vcxsrv": 80, "x410": 80, "whichev": 80, "firewal": 80, "xserver": 80, "hous": 80, "conf": 80, "nameserv": 80, "awk": 80, "serv": 81, "clone": 81, "100000000": 82, "arithmet": [83, 95], "scan": 83, "summar": [83, 84], "dedupl": 83, "setop": 83, "columnar": 84, "spread": 84, "mpi": 84, "layer": 84, "pipelin": [84, 100], "aggress": 84, "hundr": 84, "thousand": 84, "ingest": [84, 100], "customiz": 84, "schema": 84, "taht": 84, "autoclass": 85, "offer": [85, 91, 97, 100], "mathemat": 87, "multiplex": 87, "29": 88, "advanc": 88, "talk": 88, "cartesian": 88, "wherea": [88, 100], "discourag": [88, 89, 91, 95, 96, 100], "forc": [88, 89, 91, 95, 100], "concept": 89, "almost": [89, 91, 95, 100], "liter": [89, 100], "alon": [89, 100], "unrel": 90, "movement": 90, "unsign": 91, "ieee": [91, 95], "1073741824": 91, "workhors": 92, "scienc": 92, "extract": 92, "imagin": 92, "bydayofweek": 92, "numid": 92, "013": 93, "36": 93, "934176000000015": 93, "07734942223993": 93, "syntax": 94, "assig": 94, "42": 94, "ind": 94, "matlab": 94, "touch": 94, "expans": 94, "lim": 94, "backbon": 95, "And": 95, "incorpor": 95, "implicit": 95, "loss": 96, "functioanl": 96, "strucutur": 96, "abil": 96, "shown": 99, "sai": 99, "went": 99, "reachabl": 99, "wide": 100, "compris": 100, "whenev": 100, "threshold": 100, "pipe": 100, "googl": 100, "sacrific": 100, "notabl": 100, "exchang": 100}, "objects": {"": [[32, 0, 0, "-", "arkouda"]], "arkouda": [[32, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [32, 1, 1, "", "AllSymbols"], [88, 2, 1, "", "ArrayView"], [32, 2, 1, "", "BitVector"], [32, 5, 1, "", "BitVectorizer"], [32, 2, 1, "", "CachedAccessor"], [89, 2, 1, "", "Categorical"], [32, 1, 1, "", "DTypeObjects"], [32, 1, 1, "", "DTypes"], [91, 2, 1, "", "DataFrame"], [32, 2, 1, "id183", "Datetime"], [32, 2, 1, "", "DatetimeAccessor"], [32, 2, 1, "", "DiffAggregate"], [32, 2, 1, "", "ErrorMode"], [32, 2, 1, "", "Fields"], [32, 1, 1, "", "GROUPBY_REDUCTION_TYPES"], [32, 2, 1, "", "Generator"], [92, 2, 1, "", "GroupBy"], [32, 2, 1, "", "IPv4"], [85, 2, 1, "", "Index"], [32, 2, 1, "", "LogLevel"], [32, 2, 1, "", "MultiIndex"], [32, 7, 1, "", "NonUniqueError"], [32, 2, 1, "", "Power_divergenceResult"], [32, 2, 1, "", "Properties"], [32, 1, 1, "", "RegisteredSymbols"], [32, 7, 1, "id397", "RegistrationError"], [32, 2, 1, "", "Row"], [32, 1, 1, "", "ScalarDTypes"], [97, 2, 1, "", "Series"], [32, 2, 1, "", "StringAccessor"], [32, 2, 1, "id534", "Strings"], [32, 2, 1, "id602", "Timedelta"], [87, 5, 1, "", "abs"], [2, 0, 0, "-", "accessor"], [32, 5, 1, "", "akabs"], [32, 1, 1, "", "akbool"], [32, 5, 1, "id624", "akcast"], [32, 1, 1, "id625", "akfloat64"], [32, 1, 1, "id626", "akint64"], [4, 0, 0, "-", "akscipy"], [32, 1, 1, "id627", "akuint64"], [32, 5, 1, "", "align"], [7, 0, 0, "-", "alignment"], [87, 5, 1, "", "all"], [32, 1, 1, "", "all_scalars"], [87, 5, 1, "", "any"], [90, 5, 1, "", "arange"], [32, 5, 1, "", "arccos"], [32, 5, 1, "", "arccosh"], [32, 5, 1, "", "arcsin"], [32, 5, 1, "", "arcsinh"], [32, 5, 1, "", "arctan"], [32, 5, 1, "", "arctan2"], [32, 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"], [22, 0, 0, "-", "array_api"], [24, 0, 0, "-", "array_view"], [32, 5, 1, "", "attach"], [32, 5, 1, "", "attach_all"], [32, 5, 1, "", "attach_pdarray"], [32, 1, 1, "id636", "bigint"], [32, 5, 1, "", "bigint_from_uint_arrays"], [32, 1, 1, "id637", "bitType"], [32, 1, 1, "", "bool"], [32, 1, 1, "", "bool_scalars"], [32, 5, 1, "id639", "broadcast"], [32, 5, 1, "", "broadcast_dims"], [32, 5, 1, "", "broadcast_to_shape"], [95, 5, 1, "", "cast"], [25, 0, 0, "-", "categorical"], [32, 5, 1, "", "ceil"], [32, 5, 1, "", "check_np_dtype"], [32, 5, 1, "", "chisquare"], [32, 5, 1, "", "clear"], [26, 0, 0, "-", "client"], [27, 0, 0, "-", "client_dtypes"], [32, 5, 1, "", "clz"], [86, 5, 1, "", "coargsort"], [32, 1, 1, "", "complex128"], [32, 1, 1, "", "complex64"], [32, 5, 1, "", "compute_join_size"], [90, 5, 1, "", "concatenate"], [99, 5, 1, "", "connect"], [32, 5, 1, "", "convert_if_categorical"], [32, 5, 1, "", "corr"], [87, 5, 1, "", "cos"], [32, 5, 1, "", "cosh"], [32, 5, 1, "", "cov"], [32, 5, 1, "id645", "create_pdarray"], [32, 5, 1, "", "ctz"], [87, 5, 1, "", "cumprod"], [87, 5, 1, "", "cumsum"], [28, 0, 0, "-", "dataframe"], [32, 5, 1, "", "date_operators"], [32, 5, 1, "id646", "date_range"], [32, 5, 1, "", "deg2rad"], [32, 5, 1, "", "disableVerbose"], [32, 5, 1, "", "divmod"], [32, 5, 1, "", "dot"], [32, 5, 1, "", "dtype"], [29, 0, 0, "-", "dtypes"], [32, 5, 1, "", "enableVerbose"], [87, 5, 1, "", "exp"], [32, 5, 1, "", "expm1"], [84, 5, 1, "", "export"], [32, 5, 1, "", "find"], [32, 1, 1, "", "float32"], [32, 1, 1, "", "float64"], [32, 1, 1, "", "float_scalars"], [32, 5, 1, "", "floor"], [32, 5, 1, "", "fmod"], [32, 5, 1, "id647", "from_series"], [32, 5, 1, "id648", "full"], [32, 5, 1, "", "full_like"], [32, 5, 1, "", "gen_ranges"], [32, 5, 1, "", "generic_concat"], [32, 5, 1, "", "get_byteorder"], [32, 5, 1, "", "get_callback"], [32, 5, 1, "", "get_columns"], [84, 5, 1, "", "get_datasets"], [32, 5, 1, "", "get_filetype"], [32, 5, 1, "", "get_null_indices"], [32, 5, 1, "", "get_server_byteorder"], [30, 0, 0, "-", "groupbyclass"], [32, 5, 1, "", "hash"], [32, 5, 1, "", "hist_all"], [93, 5, 1, "", "histogram"], [32, 5, 1, "", "histogram2d"], [32, 5, 1, "", "histogramdd"], [31, 0, 0, "-", "history"], [84, 5, 1, "", "import_data"], [98, 5, 1, "", "in1d"], [32, 5, 1, "", "in1d_intervals"], [33, 0, 0, "-", "index"], [32, 5, 1, "", "indexof1d"], [34, 0, 0, "-", "infoclass"], [32, 5, 1, "", "information"], [32, 1, 1, "", "int16"], [32, 1, 1, "", "int32"], [32, 1, 1, "id654", "int64"], [32, 1, 1, "", "int8"], [32, 1, 1, "id656", "intTypes"], [32, 1, 1, "id657", "int_scalars"], [32, 5, 1, "", "intersect"], [98, 5, 1, "", "intersect1d"], [32, 5, 1, "", "interval_lookup"], [32, 5, 1, "", "intx"], [32, 5, 1, "", "invert_permutation"], [35, 0, 0, "-", "io"], [36, 0, 0, "-", "io_util"], [32, 5, 1, "", "ip_address"], [32, 5, 1, "id658", "isSupportedInt"], [32, 5, 1, "", "isSupportedNumber"], [32, 5, 1, "", "is_cosorted"], [32, 5, 1, "", "is_ipv4"], [32, 5, 1, "", "is_ipv6"], [32, 5, 1, "", "is_registered"], [87, 5, 1, "", "is_sorted"], [32, 5, 1, "", "isfinite"], [32, 5, 1, "", "isinf"], [32, 5, 1, "id659", "isnan"], [37, 0, 0, "-", "join"], [32, 5, 1, "", "join_on_eq_with_dt"], [32, 5, 1, "", "left_align"], [90, 5, 1, "", "linspace"], [32, 5, 1, "", "list_registry"], [32, 5, 1, "", "list_symbol_table"], [32, 5, 1, "", "load"], [32, 5, 1, "", "load_all"], [87, 5, 1, "", "log"], [32, 5, 1, "", "log10"], [32, 5, 1, "", "log1p"], [32, 5, 1, "", "log2"], [38, 0, 0, "-", "logger"], [32, 5, 1, "", "lookup"], [32, 5, 1, "", "ls"], [32, 5, 1, "", "ls_csv"], [39, 0, 0, "-", "match"], [40, 0, 0, "-", "matcher"], [87, 5, 1, "", "max"], [87, 5, 1, "", "maxk"], [87, 5, 1, "", "mean"], [32, 5, 1, "", "merge"], [87, 5, 1, "", "min"], [87, 5, 1, "", "mink"], [32, 5, 1, "", "mod"], [41, 0, 0, "-", "numeric"], [32, 1, 1, "", "numeric_scalars"], [32, 1, 1, "", "numpy_scalars"], [90, 5, 1, "", "ones"], [90, 5, 1, "", "ones_like"], [32, 5, 1, "", "parity"], [95, 2, 1, "", "pdarray"], [42, 0, 0, "-", "pdarrayclass"], [43, 0, 0, "-", "pdarraycreation"], [44, 0, 0, "-", "pdarraysetops"], [32, 5, 1, "", "plot_dist"], [45, 0, 0, "-", "plotting"], [32, 5, 1, "", "popcount"], [32, 5, 1, "", "power"], [32, 5, 1, "", "power_divergence"], [32, 5, 1, "", "pretty_print_information"], [87, 5, 1, "", "prod"], [32, 5, 1, "", "rad2deg"], [90, 5, 1, "", "randint"], [48, 0, 0, "-", "random"], [32, 5, 1, "", "random_strings_lognormal"], [32, 5, 1, "", "random_strings_uniform"], [84, 5, 1, "", "read"], [32, 5, 1, "", "read_csv"], [32, 5, 1, "", "read_hdf"], [32, 5, 1, "", "read_parquet"], [32, 5, 1, "", "read_tagged_data"], [32, 5, 1, "", "receive"], [32, 5, 1, "", "receive_dataframe"], [32, 5, 1, "", "register_all"], [32, 5, 1, "", "resolve_scalar_dtype"], [32, 5, 1, "", "restore"], [32, 5, 1, "", "right_align"], [32, 5, 1, "", "rotl"], [32, 5, 1, "", "rotr"], [32, 5, 1, "", "round"], [49, 0, 0, "-", "row"], [32, 5, 1, "", "save_all"], [32, 5, 1, "", "search_intervals"], [50, 0, 0, "-", "security"], [51, 0, 0, "-", "segarray"], [52, 0, 0, "-", "series"], [98, 5, 1, "", "setdiff1d"], [98, 5, 1, "", "setxor1d"], [32, 5, 1, "", "sign"], [87, 5, 1, "", "sin"], [32, 5, 1, "", "sinh"], [32, 5, 1, "", "skew"], [32, 5, 1, "", "snapshot"], [32, 5, 1, "", "sort"], [53, 0, 0, "-", "sorting"], [32, 5, 1, "", "sqrt"], [32, 5, 1, "", "square"], [32, 5, 1, "id909", "standard_normal"], [87, 5, 1, "", "std"], [32, 1, 1, "", "str_"], [32, 1, 1, "", "str_scalars"], [32, 5, 1, "", "string_operators"], [54, 0, 0, "-", "strings"], [87, 5, 1, "", "sum"], [32, 5, 1, "", "tan"], [32, 5, 1, "", "tanh"], [55, 0, 0, "-", "timeclass"], [32, 5, 1, "id910", "timedelta_range"], [32, 5, 1, "", "to_csv"], [32, 5, 1, "", "to_hdf"], [32, 5, 1, "", "to_parquet"], [32, 5, 1, "", "translate_np_dtype"], [32, 5, 1, "", "trunc"], [32, 1, 1, "", "uint16"], [32, 1, 1, "", "uint32"], [32, 1, 1, "", "uint64"], [32, 1, 1, "", "uint8"], [32, 5, 1, "id911", "uniform"], [98, 5, 1, "", "union1d"], [98, 5, 1, "", "unique"], [32, 5, 1, "", "unregister"], [32, 5, 1, "", "unregister_all"], [32, 5, 1, "", "unregister_pdarray_by_name"], [32, 5, 1, "", "unsqueeze"], [32, 5, 1, "", "update_hdf"], [56, 0, 0, "-", "util"], [93, 5, 1, "", "value_counts"], [87, 5, 1, "", "var"], [87, 5, 1, "", "where"], [32, 5, 1, "", "write_log"], [32, 5, 1, "", "xlogy"], [32, 5, 1, "", "zero_up"], [90, 5, 1, "", "zeros"], [90, 5, 1, "", "zeros_like"]], "arkouda.ArrayView": [[88, 3, 1, "", "base"], [88, 3, 1, "", "dtype"], [88, 3, 1, "", "itemsize"], [88, 3, 1, "", "ndim"], [32, 3, 1, "", "objType"], [88, 3, 1, "", "order"], [88, 3, 1, "", "shape"], [88, 3, 1, "", "size"], [32, 4, 1, "", "to_hdf"], [32, 4, 1, "", "to_list"], [88, 5, 1, "", "to_ndarray"], [32, 4, 1, "", "update_hdf"]], "arkouda.BitVector": [[32, 3, 1, "", "conserves"], [32, 4, 1, "", "format"], [32, 4, 1, "", "from_return_msg"], [32, 4, 1, "", "opeq"], [32, 4, 1, "", "register"], [32, 3, 1, "", "special_objType"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_ndarray"]], "arkouda.Categorical": [[32, 3, 1, "id61", "BinOps"], [32, 3, 1, "id62", "RegisterablePieces"], [32, 3, 1, "id63", "RequiredPieces"], [32, 4, 1, "id68", "argsort"], [32, 4, 1, "id69", "attach"], [89, 3, 1, "", "categories"], [89, 3, 1, "", "codes"], [32, 4, 1, "id70", "concatenate"], [89, 4, 1, "", "contains"], [32, 3, 1, "id64", "dtype"], [89, 4, 1, "", "endswith"], [89, 4, 1, "", "from_codes"], [32, 4, 1, "id74", "from_return_msg"], [32, 4, 1, "id75", "group"], [32, 4, 1, "id76", "hash"], [32, 4, 1, "id77", "in1d"], [32, 4, 1, "id78", "info"], [32, 4, 1, "id79", "is_registered"], [32, 4, 1, "id80", "isna"], [32, 6, 1, "id60", "nbytes"], [89, 3, 1, "", "ndim"], [89, 3, 1, "", "nlevels"], [32, 3, 1, "id65", "objType"], [32, 4, 1, "id81", "parse_hdf_categoricals"], [89, 3, 1, "", "permutation"], [32, 4, 1, "id82", "pretty_print_info"], [32, 4, 1, "id83", "register"], [32, 4, 1, "id84", "reset_categories"], [32, 4, 1, "id85", "save"], [89, 3, 1, "", "segments"], [32, 4, 1, "id86", "set_categories"], [89, 3, 1, "", "shape"], [89, 3, 1, "", "size"], [32, 4, 1, "id87", "sort"], [32, 4, 1, "id88", "standardize_categories"], [89, 4, 1, "", "startswith"], [32, 4, 1, "id90", "to_hdf"], [32, 4, 1, "id91", "to_list"], [89, 5, 1, "", "to_ndarray"], [32, 4, 1, "id93", "to_parquet"], [32, 4, 1, "id94", "to_strings"], [32, 4, 1, "id95", "transfer"], [32, 4, 1, "id96", "unique"], [32, 4, 1, "id97", "unregister"], [32, 4, 1, "id98", "unregister_categorical_by_name"], [32, 4, 1, "id99", "update_hdf"]], "arkouda.DataFrame": [[32, 4, 1, "id109", "GroupBy"], [32, 4, 1, "id110", "append"], [91, 5, 1, "", "apply_permutation"], [91, 5, 1, "", "argsort"], [32, 4, 1, "id113", "attach"], [91, 5, 1, "", "coargsort"], [32, 6, 1, "id101", "columns"], [91, 5, 1, "", "concat"], [91, 5, 1, "", "copy"], [32, 4, 1, "id117", "corr"], [91, 5, 1, "", "drop"], [91, 5, 1, "", "drop_duplicates"], [32, 6, 1, "id102", "dtypes"], [32, 6, 1, "id103", "empty"], [32, 4, 1, "id120", "filter_by_range"], [32, 4, 1, "id121", "from_pandas"], [32, 4, 1, "id122", "from_return_msg"], [91, 5, 1, "", "groupby"], [91, 5, 1, "", "head"], [32, 6, 1, "id104", "index"], [32, 6, 1, "id105", "info"], [32, 4, 1, "id125", "is_registered"], [32, 4, 1, "id126", "isin"], [32, 4, 1, "id127", "load"], [32, 4, 1, "id128", "memory_usage"], [32, 4, 1, "id129", "memory_usage_info"], [32, 4, 1, "id130", "merge"], [32, 3, 1, "id108", "objType"], [32, 4, 1, "id131", "read_csv"], [32, 4, 1, "id132", "register"], [91, 5, 1, "", "rename"], [91, 5, 1, "", "reset_index"], [32, 4, 1, "id135", "sample"], [32, 4, 1, "id136", "save"], [32, 6, 1, "id106", "shape"], [32, 6, 1, "id107", "size"], [32, 4, 1, "id137", "sort_index"], [91, 5, 1, "", "sort_values"], [91, 5, 1, "", "tail"], [32, 4, 1, "id140", "to_csv"], [32, 4, 1, "id141", "to_hdf"], [32, 4, 1, "id142", "to_markdown"], [91, 5, 1, "", "to_pandas"], [32, 4, 1, "id144", "to_parquet"], [32, 4, 1, "id145", "transfer"], [32, 4, 1, "id146", "unregister"], [32, 4, 1, "id147", "unregister_dataframe_by_name"], [32, 4, 1, "id148", "update_hdf"], [32, 4, 1, "id149", "update_nrows"]], "arkouda.Datetime": [[32, 6, 1, "id184", "date"], [32, 6, 1, "id185", "day"], [32, 6, 1, "id186", "day_of_week"], [32, 6, 1, "id187", "day_of_year"], [32, 6, 1, "id188", "dayofweek"], [32, 6, 1, "id189", "dayofyear"], [32, 6, 1, "id190", "hour"], [32, 6, 1, "id191", "is_leap_year"], [32, 4, 1, "id210", "is_registered"], [32, 4, 1, "id211", "isocalendar"], [32, 6, 1, "id192", "microsecond"], [32, 6, 1, "id193", "millisecond"], [32, 6, 1, "id194", "minute"], [32, 6, 1, "id195", "month"], [32, 6, 1, "id196", "nanosecond"], [32, 4, 1, "id212", "register"], [32, 6, 1, "id197", "second"], [32, 3, 1, "id202", "special_objType"], [32, 4, 1, "id213", "sum"], [32, 3, 1, "id203", "supported_opeq"], [32, 3, 1, "id204", "supported_with_datetime"], [32, 3, 1, "id205", "supported_with_pdarray"], [32, 3, 1, "id206", "supported_with_r_datetime"], [32, 3, 1, "id207", "supported_with_r_pdarray"], [32, 3, 1, "id208", "supported_with_r_timedelta"], [32, 3, 1, "id209", "supported_with_timedelta"], [32, 4, 1, "id214", "to_pandas"], [32, 4, 1, "id215", "unregister"], [32, 6, 1, "id198", "week"], [32, 6, 1, "id199", "weekday"], [32, 6, 1, "id200", "weekofyear"], [32, 6, 1, "id201", "year"]], "arkouda.DiffAggregate": [[32, 3, 1, "", "gb"], [32, 3, 1, "", "values"]], "arkouda.ErrorMode": [[32, 3, 1, "", "ignore"], [32, 3, 1, "", "return_validity"], [32, 3, 1, "", "strict"]], "arkouda.Fields": [[32, 4, 1, "", "format"], [32, 4, 1, "", "opeq"]], "arkouda.Generator": [[32, 4, 1, "", "integers"], [32, 4, 1, "", "random"], [32, 4, 1, "", "standard_normal"], [32, 4, 1, "", "uniform"]], "arkouda.GroupBy": [[92, 4, 1, "", "AND"], [92, 4, 1, "", "OR"], [32, 3, 1, "id358", "Reductions"], [92, 4, 1, "", "XOR"], [92, 4, 1, "", "aggregate"], [92, 4, 1, "", "all"], [92, 4, 1, "", "any"], [92, 4, 1, "", "argmax"], [92, 4, 1, "", "argmin"], [92, 4, 1, "", "attach"], [92, 4, 1, "", "broadcast"], [92, 4, 1, "", "build_from_components"], [92, 4, 1, "", "count"], [92, 3, 1, "", "dropna"], [92, 4, 1, "", "first"], [32, 4, 1, "id373", "from_return_msg"], [92, 4, 1, "", "is_registered"], [92, 3, 1, "", "logger"], [92, 4, 1, "", "max"], [92, 4, 1, "", "mean"], [92, 4, 1, "", "median"], [92, 4, 1, "", "min"], [92, 4, 1, "", "mode"], [92, 4, 1, "", "most_common"], [92, 3, 1, "", "ngroups"], [92, 3, 1, "", "nkeys"], [92, 4, 1, "", "nunique"], [32, 3, 1, "id359", "objType"], [92, 3, 1, "", "permutation"], [92, 4, 1, "", "prod"], [92, 4, 1, "", "register"], [92, 3, 1, "", "segments"], [92, 4, 1, "id0", "size"], [92, 4, 1, "", "std"], [92, 4, 1, "", "sum"], [92, 4, 1, "", "to_hdf"], [92, 4, 1, "", "unique"], [92, 3, 1, "", "unique_keys"], [92, 4, 1, "", "unregister"], [92, 4, 1, "", "unregister_groupby_by_name"], [32, 4, 1, "id391", "update_hdf"], [92, 4, 1, "", "var"]], "arkouda.IPv4": [[32, 4, 1, "", "export_uint"], [32, 4, 1, "", "format"], [32, 4, 1, "", "normalize"], [32, 4, 1, "", "opeq"], [32, 4, 1, "", "register"], [32, 3, 1, "", "special_objType"], [32, 4, 1, "", "to_hdf"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_ndarray"], [32, 4, 1, "", "update_hdf"]], "arkouda.Index": [[85, 5, 1, "", "argsort"], [85, 5, 1, "", "concat"], [32, 4, 1, "", "factory"], [32, 4, 1, "", "from_return_msg"], [32, 6, 1, "", "index"], [32, 4, 1, "", "is_registered"], [32, 6, 1, "", "is_unique"], [85, 5, 1, "", "lookup"], [32, 4, 1, "", "memory_usage"], [32, 3, 1, "", "objType"], [32, 4, 1, "", "register"], [32, 4, 1, "", "save"], [85, 5, 1, "", "set_dtype"], [32, 6, 1, "", "shape"], [32, 4, 1, "", "to_csv"], [32, 4, 1, "", "to_dict"], [32, 4, 1, "", "to_hdf"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_ndarray"], [32, 4, 1, "", "to_pandas"], [32, 4, 1, "", "to_parquet"], [32, 4, 1, "", "unregister"], [32, 4, 1, "", "update_hdf"]], "arkouda.LogLevel": [[32, 3, 1, "", "CRITICAL"], [32, 3, 1, "", "DEBUG"], [32, 3, 1, "", "ERROR"], [32, 3, 1, "", "INFO"], [32, 3, 1, "", "WARN"]], "arkouda.MultiIndex": [[85, 5, 1, "", "argsort"], [85, 5, 1, "", "concat"], [32, 6, 1, "", "index"], [32, 4, 1, "", "is_registered"], [85, 5, 1, "", "lookup"], [32, 4, 1, "", "memory_usage"], [32, 3, 1, "", "objType"], [32, 4, 1, "", "register"], [85, 5, 1, "", "set_dtype"], [32, 4, 1, "", "to_dict"], [32, 4, 1, "", "to_hdf"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_ndarray"], [32, 4, 1, "", "to_pandas"], [32, 4, 1, "", "unregister"], [32, 4, 1, "", "update_hdf"]], "arkouda.Power_divergenceResult": [[32, 3, 1, "", "pvalue"], [32, 3, 1, "", "statistic"]], "arkouda.SegArray": [[96, 5, 1, "", "append"], [96, 5, 1, "", "append_single"], [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"], [96, 5, 1, "", "intersect"], [96, 5, 1, "", "prepend_single"], [96, 5, 1, "", "remove_repeats"], [96, 5, 1, "", "set_jth"], [96, 5, 1, "", "setdiff"], [96, 5, 1, "", "setxor"], [96, 5, 1, "", "to_ndarray"], [96, 5, 1, "", "union"]], "arkouda.Series": [[32, 4, 1, "", "add"], [32, 6, 1, "", "at"], [32, 4, 1, "", "attach"], [32, 4, 1, "", "concat"], [32, 4, 1, "", "diff"], [32, 3, 1, "", "dt"], [32, 4, 1, "", "from_return_msg"], [32, 4, 1, "", "has_repeat_labels"], [97, 5, 1, "", "head"], [32, 6, 1, "", "iat"], [32, 6, 1, "", "iloc"], [32, 4, 1, "", "is_registered"], [32, 4, 1, "", "isin"], [32, 6, 1, "", "loc"], [97, 5, 1, "id0", "locate"], [32, 4, 1, "", "map"], [32, 4, 1, "", "memory_usage"], [32, 3, 1, "", "objType"], [97, 5, 1, "", "pdconcat"], [32, 4, 1, "", "register"], [32, 6, 1, "", "shape"], [97, 5, 1, "", "sort_index"], [97, 5, 1, "", "sort_values"], [32, 3, 1, "", "str_acc"], [97, 5, 1, "", "tail"], [32, 4, 1, "", "to_dataframe"], [32, 4, 1, "", "to_list"], [32, 4, 1, "", "to_markdown"], [97, 5, 1, "", "to_pandas"], [97, 5, 1, "", "topn"], [32, 4, 1, "", "unregister"], [32, 4, 1, "", "validate_key"], [32, 4, 1, "", "validate_val"], [97, 5, 1, "", "value_counts"]], "arkouda.Strings": [[32, 3, 1, "id542", "BinOps"], [32, 4, 1, "id544", "astype"], [32, 4, 1, "id545", "attach"], [32, 4, 1, "id546", "cached_regex_patterns"], [32, 4, 1, "id547", "capitalize"], [100, 4, 1, "", "contains"], [32, 4, 1, "id549", "decode"], [32, 3, 1, "id540", "dtype"], [32, 4, 1, "id550", "encode"], [100, 4, 1, "", "endswith"], [32, 3, 1, "id535", "entry"], [100, 4, 1, "", "find_locations"], [100, 4, 1, "", "findall"], [100, 4, 1, "", "flatten"], [32, 4, 1, "id555", "from_parts"], [32, 4, 1, "id556", "from_return_msg"], [100, 4, 1, "", "fullmatch"], [32, 4, 1, "id558", "get_bytes"], [32, 4, 1, "id559", "get_lengths"], [32, 4, 1, "id560", "get_offsets"], [32, 4, 1, "id561", "get_prefixes"], [32, 4, 1, "id562", "get_suffixes"], [32, 4, 1, "id563", "group"], [32, 4, 1, "id564", "hash"], [32, 4, 1, "id565", "info"], [32, 4, 1, "id566", "is_registered"], [32, 4, 1, "id567", "isalnum"], [32, 4, 1, "id568", "isalpha"], [32, 4, 1, "id569", "isdigit"], [32, 4, 1, "id570", "isempty"], [32, 4, 1, "id571", "islower"], [32, 4, 1, "id572", "isspace"], [32, 4, 1, "id573", "istitle"], [32, 4, 1, "id574", "isupper"], [32, 3, 1, "id541", "logger"], [32, 4, 1, "id575", "lower"], [100, 4, 1, "", "lstick"], [100, 4, 1, "", "match"], [32, 3, 1, "id537", "nbytes"], [32, 3, 1, "id538", "ndim"], [32, 3, 1, "id543", "objType"], [100, 4, 1, "", "peel"], [32, 4, 1, "id579", "pretty_print_info"], [32, 4, 1, "id580", "purge_cached_regex_patterns"], [32, 4, 1, "id581", "register"], [100, 4, 1, "", "rpeel"], [32, 4, 1, "id583", "save"], [100, 4, 1, "", "search"], [32, 3, 1, "id539", "shape"], [32, 3, 1, "id536", "size"], [100, 4, 1, "", "split"], [100, 4, 1, "", "startswith"], [100, 4, 1, "", "stick"], [32, 4, 1, "id588", "strip"], [100, 4, 1, "", "sub"], [100, 4, 1, "", "subn"], [32, 4, 1, "id591", "title"], [32, 4, 1, "id592", "to_csv"], [32, 4, 1, "id593", "to_hdf"], [32, 4, 1, "id594", "to_list"], [100, 5, 1, "", "to_ndarray"], [32, 4, 1, "id596", "to_parquet"], [32, 4, 1, "id597", "transfer"], [32, 4, 1, "id598", "unregister"], [32, 4, 1, "id599", "unregister_strings_by_name"], [32, 4, 1, "id600", "update_hdf"], [32, 4, 1, "id601", "upper"]], "arkouda.Timedelta": [[32, 4, 1, "id616", "abs"], [32, 6, 1, "id603", "components"], [32, 6, 1, "id604", "days"], [32, 4, 1, "id617", "is_registered"], [32, 6, 1, "id605", "microseconds"], [32, 6, 1, "id606", "nanoseconds"], [32, 4, 1, "id618", "register"], [32, 6, 1, "id607", "seconds"], [32, 3, 1, "id608", "special_objType"], [32, 4, 1, "id619", "std"], [32, 4, 1, "id620", "sum"], [32, 3, 1, "id609", "supported_opeq"], [32, 3, 1, "id610", "supported_with_datetime"], [32, 3, 1, "id611", "supported_with_pdarray"], [32, 3, 1, "id612", "supported_with_r_datetime"], [32, 3, 1, "id613", "supported_with_r_pdarray"], [32, 3, 1, "id614", "supported_with_r_timedelta"], [32, 3, 1, "id615", "supported_with_timedelta"], [32, 4, 1, "id621", "to_pandas"], [32, 4, 1, "id622", "total_seconds"], [32, 4, 1, "id623", "unregister"]], "arkouda.accessor": [[2, 2, 1, "", "CachedAccessor"], [2, 2, 1, "", "DatetimeAccessor"], [2, 2, 1, "", "Properties"], [2, 2, 1, "", "StringAccessor"], [2, 5, 1, "", "date_operators"], [2, 5, 1, "", "string_operators"]], "arkouda.akscipy": [[4, 2, 1, "", "Power_divergenceResult"], [3, 0, 0, "-", "_stats_py"], [4, 5, 1, "", "chisquare"], [4, 5, 1, "", "power_divergence"], [6, 0, 0, "-", "special"]], "arkouda.akscipy.Power_divergenceResult": [[4, 3, 1, "", "pvalue"], [4, 3, 1, "", "statistic"]], "arkouda.akscipy._stats_py": [[3, 2, 1, "", "Power_divergenceResult"], [3, 5, 1, "", "chisquare"], [3, 5, 1, "", "power_divergence"]], "arkouda.akscipy._stats_py.Power_divergenceResult": [[3, 3, 1, "", "pvalue"], [3, 3, 1, "", "statistic"]], "arkouda.akscipy.special": [[5, 0, 0, "-", "_math"], [6, 5, 1, "", "xlogy"]], "arkouda.akscipy.special._math": [[5, 5, 1, "", "xlogy"]], "arkouda.alignment": [[7, 7, 1, "", "NonUniqueError"], [7, 5, 1, "", "align"], [7, 5, 1, "", "find"], [7, 5, 1, "", "in1d_intervals"], [7, 5, 1, "", "interval_lookup"], [7, 5, 1, "", "is_cosorted"], [7, 5, 1, "", "left_align"], [7, 5, 1, "", "lookup"], [7, 5, 1, "", "right_align"], [7, 5, 1, "", "search_intervals"], [7, 5, 1, "", "unsqueeze"], [7, 5, 1, "", "zero_up"]], "arkouda.array_api": [[8, 0, 0, "-", "_array_object"], [9, 0, 0, "-", "_constants"], [10, 0, 0, "-", "_creation_functions"], [11, 0, 0, "-", "_data_type_functions"], [12, 0, 0, "-", "_dtypes"], [13, 0, 0, "-", "_elementwise_functions"], [14, 0, 0, "-", "_indexing_functions"], [15, 0, 0, "-", "_manipulation_functions"], [16, 0, 0, "-", "_searching_functions"], [17, 0, 0, "-", "_set_functions"], [18, 0, 0, "-", "_sorting_functions"], [19, 0, 0, "-", "_statistical_functions"], [20, 0, 0, "-", "_typing"], [21, 0, 0, "-", "_utility_functions"], [23, 0, 0, "-", "linalg"]], "arkouda.array_api._array_object": [[8, 2, 1, "", "Array"]], "arkouda.array_api._array_object.Array": [[8, 6, 1, "", "T"], [8, 6, 1, "", "device"], [8, 6, 1, "", "dtype"], [8, 6, 1, "", "mT"], [8, 6, 1, "", "ndim"], [8, 6, 1, "", "shape"], [8, 6, 1, "", "size"], [8, 4, 1, "", "to_device"], [8, 4, 1, "", "to_ndarray"], [8, 4, 1, "", "tolist"]], "arkouda.array_api._constants": [[9, 1, 1, "", "e"], [9, 1, 1, "", "inf"], [9, 1, 1, "", "nan"], [9, 1, 1, "", "pi"]], "arkouda.array_api._creation_functions": [[10, 5, 1, "", "arange"], [10, 5, 1, "", "asarray"], [10, 5, 1, "", "empty"], [10, 5, 1, "", "empty_like"], [10, 5, 1, "", "eye"], [10, 5, 1, "", "from_dlpack"], [10, 5, 1, "", "full"], [10, 5, 1, "", "full_like"], [10, 5, 1, "", "linspace"], [10, 5, 1, "", "meshgrid"], [10, 5, 1, "", "ones"], [10, 5, 1, "", "ones_like"], [10, 5, 1, "", "tril"], [10, 5, 1, "", "triu"], [10, 5, 1, "", "zeros"], [10, 5, 1, "", "zeros_like"]], "arkouda.array_api._data_type_functions": [[11, 5, 1, "", "astype"], [11, 5, 1, "", "can_cast"], [11, 2, 1, "", "finfo_object"], [11, 2, 1, "", "iinfo_object"], [11, 5, 1, "", "isdtype"], [11, 5, 1, "", "result_type"]], "arkouda.array_api._data_type_functions.finfo_object": [[11, 3, 1, "", "bits"], [11, 3, 1, "", "dtype"], [11, 3, 1, "", "eps"], [11, 3, 1, "", "max"], [11, 3, 1, "", "min"], [11, 3, 1, "", "smallest_normal"]], "arkouda.array_api._data_type_functions.iinfo_object": [[11, 3, 1, "", "bits"], [11, 3, 1, "", "dtype"], [11, 3, 1, "", "max"], [11, 3, 1, "", "min"]], "arkouda.array_api._dtypes": [[12, 1, 1, "", "bool"], [12, 1, 1, "", "complex128"], [12, 1, 1, "", "complex64"], [12, 1, 1, "", "float32"], [12, 1, 1, "", "float64"], [12, 1, 1, "", "int16"], [12, 1, 1, "", "int32"], [12, 1, 1, "", "int64"], [12, 1, 1, "", "int8"], [12, 1, 1, "", "uint16"], [12, 1, 1, "", "uint32"], [12, 1, 1, "", "uint64"], [12, 1, 1, "", "uint8"]], "arkouda.array_api._elementwise_functions": [[13, 5, 1, "", "abs"], [13, 5, 1, "", "acos"], [13, 5, 1, "", "acosh"], [13, 5, 1, "", "add"], [13, 5, 1, "", "asin"], [13, 5, 1, "", "asinh"], [13, 5, 1, "", "atan"], [13, 5, 1, "", "atan2"], [13, 5, 1, "", "atanh"], [13, 5, 1, "", "bitwise_and"], [13, 5, 1, "", "bitwise_invert"], [13, 5, 1, "", "bitwise_left_shift"], [13, 5, 1, "", "bitwise_or"], [13, 5, 1, "", "bitwise_right_shift"], [13, 5, 1, "", "bitwise_xor"], [13, 5, 1, "", "ceil"], [13, 5, 1, "", "conj"], [13, 5, 1, "", "cos"], [13, 5, 1, "", "cosh"], [13, 5, 1, "", "divide"], [13, 5, 1, "", "equal"], [13, 5, 1, "", "exp"], [13, 5, 1, "", "expm1"], [13, 5, 1, "", "floor"], [13, 5, 1, "", "floor_divide"], [13, 5, 1, "", "greater"], [13, 5, 1, "", "greater_equal"], [13, 5, 1, "", "imag"], [13, 5, 1, "", "isfinite"], [13, 5, 1, "", "isinf"], [13, 5, 1, "", "isnan"], [13, 5, 1, "", "less"], [13, 5, 1, "", "less_equal"], [13, 5, 1, "", "log"], [13, 5, 1, "", "log10"], [13, 5, 1, "", "log1p"], [13, 5, 1, "", "log2"], [13, 5, 1, "", "logaddexp"], [13, 5, 1, "", "logical_and"], [13, 5, 1, "", "logical_not"], [13, 5, 1, "", "logical_or"], [13, 5, 1, "", "logical_xor"], [13, 5, 1, "", "multiply"], [13, 5, 1, "", "negative"], [13, 5, 1, "", "not_equal"], [13, 5, 1, "", "positive"], [13, 5, 1, "", "pow"], [13, 5, 1, "", "real"], [13, 5, 1, "", "remainder"], [13, 5, 1, "", "round"], [13, 5, 1, "", "sign"], [13, 5, 1, "", "sin"], [13, 5, 1, "", "sinh"], [13, 5, 1, "", "sqrt"], [13, 5, 1, "", "square"], [13, 5, 1, "", "subtract"], [13, 5, 1, "", "tan"], [13, 5, 1, "", "tanh"], [13, 5, 1, "", "trunc"]], "arkouda.array_api._indexing_functions": [[14, 5, 1, "", "take"]], "arkouda.array_api._manipulation_functions": [[15, 5, 1, "", "broadcast_arrays"], [15, 5, 1, "", "broadcast_to"], [15, 5, 1, "", "concat"], [15, 5, 1, "", "expand_dims"], [15, 5, 1, "", "flip"], [15, 5, 1, "", "permute_dims"], [15, 5, 1, "", "reshape"], [15, 5, 1, "", "roll"], [15, 5, 1, "", "squeeze"], [15, 5, 1, "", "stack"]], "arkouda.array_api._searching_functions": [[16, 5, 1, "", "argmax"], [16, 5, 1, "", "argmin"], [16, 5, 1, "", "nonzero"], [16, 5, 1, "", "where"]], "arkouda.array_api._set_functions": [[17, 2, 1, "", "UniqueAllResult"], [17, 2, 1, "", "UniqueCountsResult"], [17, 2, 1, "", "UniqueInverseResult"], [17, 5, 1, "", "unique_all"], [17, 5, 1, "", "unique_counts"], [17, 5, 1, "", "unique_inverse"], [17, 5, 1, "", "unique_values"]], "arkouda.array_api._set_functions.UniqueAllResult": [[17, 3, 1, "", "counts"], [17, 3, 1, "", "indices"], [17, 3, 1, "", "inverse_indices"], [17, 3, 1, "", "values"]], "arkouda.array_api._set_functions.UniqueCountsResult": [[17, 3, 1, "", "counts"], [17, 3, 1, "", "values"]], "arkouda.array_api._set_functions.UniqueInverseResult": [[17, 3, 1, "", "inverse_indices"], [17, 3, 1, "", "values"]], "arkouda.array_api._sorting_functions": [[18, 5, 1, "", "argsort"], [18, 5, 1, "", "sort"]], "arkouda.array_api._statistical_functions": [[19, 5, 1, "", "max"], [19, 5, 1, "", "mean"], [19, 5, 1, "", "min"], [19, 5, 1, "", "prod"], [19, 5, 1, "", "prod_sum_dtype"], [19, 5, 1, "", "std"], [19, 5, 1, "", "sum"], [19, 5, 1, "", "var"]], "arkouda.array_api._typing": [[20, 2, 1, "", "Array"], [20, 1, 1, "", "Device"], [20, 1, 1, "", "Dtype"], [20, 1, 1, "", "PyCapsule"], [20, 1, 1, "", "SupportsBufferProtocol"], [20, 2, 1, "", "SupportsDLPack"]], "arkouda.array_api._typing.Array": [[20, 6, 1, "", "T"], [20, 6, 1, "", "device"], [20, 6, 1, "", "dtype"], [20, 6, 1, "", "mT"], [20, 6, 1, "", "ndim"], [20, 6, 1, "", "shape"], [20, 6, 1, "", "size"], [20, 4, 1, "", "to_device"], [20, 4, 1, "", "to_ndarray"], [20, 4, 1, "", "tolist"]], "arkouda.array_api._utility_functions": [[21, 5, 1, "", "all"], [21, 5, 1, "", "any"]], "arkouda.array_api.linalg": [[23, 5, 1, "", "matmul"], [23, 5, 1, "", "matrix_transpose"], [23, 5, 1, "", "tensordot"], [23, 5, 1, "", "vecdot"]], "arkouda.array_view": [[24, 2, 1, "", "ArrayView"]], "arkouda.array_view.ArrayView": [[24, 3, 1, "", "base"], [24, 3, 1, "", "dtype"], [24, 3, 1, "", "itemsize"], [24, 3, 1, "", "ndim"], [24, 3, 1, "", "objType"], [24, 3, 1, "", "order"], [24, 3, 1, "", "shape"], [24, 3, 1, "", "size"], [24, 4, 1, "", "to_hdf"], [24, 4, 1, "", "to_list"], [24, 4, 1, "", "to_ndarray"], [24, 4, 1, "", "update_hdf"]], "arkouda.categorical": [[25, 2, 1, "", "Categorical"]], "arkouda.categorical.Categorical": [[25, 3, 1, "", "BinOps"], [25, 3, 1, "", "RegisterablePieces"], [25, 3, 1, "", "RequiredPieces"], [25, 4, 1, "", "argsort"], [25, 4, 1, "", "attach"], [25, 3, 1, "", "categories"], [25, 3, 1, "", "codes"], [25, 4, 1, "", "concatenate"], [25, 4, 1, "", "contains"], [25, 3, 1, "", "dtype"], [25, 4, 1, "", "endswith"], [25, 4, 1, "", "from_codes"], [25, 4, 1, "", "from_return_msg"], [25, 4, 1, "", "group"], [25, 4, 1, "", "hash"], [25, 4, 1, "", "in1d"], [25, 4, 1, "", "info"], [25, 4, 1, "", "is_registered"], [25, 4, 1, "", "isna"], [25, 6, 1, "", "nbytes"], [25, 3, 1, "", "ndim"], [25, 3, 1, "", "nlevels"], [25, 3, 1, "", "objType"], [25, 4, 1, "", "parse_hdf_categoricals"], [25, 3, 1, "id0", "permutation"], [25, 4, 1, "", "pretty_print_info"], [25, 4, 1, "", "register"], [25, 4, 1, "", "reset_categories"], [25, 4, 1, "", "save"], [25, 3, 1, "id1", "segments"], [25, 4, 1, "", "set_categories"], [25, 3, 1, "", "shape"], [25, 3, 1, "", "size"], [25, 4, 1, "", "sort"], [25, 4, 1, "", "standardize_categories"], [25, 4, 1, "", "startswith"], [25, 4, 1, "", "to_hdf"], [25, 4, 1, "", "to_list"], [25, 4, 1, "", "to_ndarray"], [25, 4, 1, "", "to_parquet"], [25, 4, 1, "", "to_strings"], [25, 4, 1, "", "transfer"], [25, 4, 1, "", "unique"], [25, 4, 1, "", "unregister"], [25, 4, 1, "", "unregister_categorical_by_name"], [25, 4, 1, "", "update_hdf"]], "arkouda.client": [[26, 5, 1, "", "connect"], [26, 5, 1, "", "disconnect"], [26, 5, 1, "", "generate_history"], [26, 5, 1, "", "get_config"], [26, 5, 1, "", "get_mem_avail"], [26, 5, 1, "", "get_mem_status"], [26, 5, 1, "", "get_mem_used"], [26, 5, 1, "", "get_server_commands"], [26, 5, 1, "", "print_server_commands"], [26, 5, 1, "", "ruok"], [26, 5, 1, "", "shutdown"]], "arkouda.client_dtypes": [[27, 2, 1, "", "BitVector"], [27, 5, 1, "", "BitVectorizer"], [27, 2, 1, "", "Fields"], [27, 2, 1, "", "IPv4"], [27, 5, 1, "", "ip_address"], [27, 5, 1, "", "is_ipv4"], [27, 5, 1, "", "is_ipv6"]], "arkouda.client_dtypes.BitVector": [[27, 3, 1, "", "conserves"], [27, 4, 1, "", "format"], [27, 4, 1, "", "from_return_msg"], [27, 4, 1, "", "opeq"], [27, 4, 1, "", "register"], [27, 3, 1, "", "special_objType"], [27, 4, 1, "", "to_list"], [27, 4, 1, "", "to_ndarray"]], "arkouda.client_dtypes.Fields": [[27, 4, 1, "", "format"], [27, 4, 1, "", "opeq"]], "arkouda.client_dtypes.IPv4": [[27, 4, 1, "", "export_uint"], [27, 4, 1, "", "format"], [27, 4, 1, "", "normalize"], [27, 4, 1, "", "opeq"], [27, 4, 1, "", "register"], [27, 3, 1, "", "special_objType"], [27, 4, 1, "", "to_hdf"], [27, 4, 1, "", "to_list"], [27, 4, 1, "", "to_ndarray"], [27, 4, 1, "", "update_hdf"]], "arkouda.dataframe": [[28, 2, 1, "", "DataFrame"], [28, 2, 1, "", "DiffAggregate"], [28, 5, 1, "", "intersect"], [28, 5, 1, "", "intx"], [28, 5, 1, "", "invert_permutation"], [28, 5, 1, "", "merge"]], "arkouda.dataframe.DataFrame": [[28, 4, 1, "", "GroupBy"], [28, 4, 1, "", "append"], [28, 4, 1, "", "apply_permutation"], [28, 4, 1, "", "argsort"], [28, 4, 1, "", "attach"], [28, 4, 1, "", "coargsort"], [28, 6, 1, "", "columns"], [28, 4, 1, "", "concat"], [28, 4, 1, "", "copy"], [28, 4, 1, "", "corr"], [28, 4, 1, "", "drop"], [28, 4, 1, "", "drop_duplicates"], [28, 6, 1, "", "dtypes"], [28, 6, 1, "", "empty"], [28, 4, 1, "", "filter_by_range"], [28, 4, 1, "", "from_pandas"], [28, 4, 1, "", "from_return_msg"], [28, 4, 1, "", "groupby"], [28, 4, 1, "", "head"], [28, 6, 1, "", "index"], [28, 6, 1, "", "info"], [28, 4, 1, "", "is_registered"], [28, 4, 1, "", "isin"], [28, 4, 1, "", "load"], [28, 4, 1, "", "memory_usage"], [28, 4, 1, "", "memory_usage_info"], [28, 4, 1, "", "merge"], [28, 3, 1, "", "objType"], [28, 4, 1, "", "read_csv"], [28, 4, 1, "", "register"], [28, 4, 1, "", "rename"], [28, 4, 1, "", "reset_index"], [28, 4, 1, "", "sample"], [28, 4, 1, "", "save"], [28, 6, 1, "", "shape"], [28, 6, 1, "", "size"], [28, 4, 1, "", "sort_index"], [28, 4, 1, "", "sort_values"], [28, 4, 1, "", "tail"], [28, 4, 1, "", "to_csv"], [28, 4, 1, "", "to_hdf"], [28, 4, 1, "", "to_markdown"], [28, 4, 1, "", "to_pandas"], [28, 4, 1, "", "to_parquet"], [28, 4, 1, "", "transfer"], [28, 4, 1, "", "unregister"], [28, 4, 1, "", "unregister_dataframe_by_name"], [28, 4, 1, "", "update_hdf"], [28, 4, 1, "", "update_nrows"]], "arkouda.dataframe.DiffAggregate": [[28, 3, 1, "", "gb"], [28, 3, 1, "", "values"]], "arkouda.dtypes": [[29, 1, 1, "", "ARKOUDA_SUPPORTED_DTYPES"], [29, 1, 1, "", "DTypeObjects"], [29, 1, 1, "", "DTypes"], [29, 1, 1, "", "ScalarDTypes"], [29, 1, 1, "", "all_scalars"], [29, 1, 1, "", "bigint"], [29, 1, 1, "", "bitType"], [29, 1, 1, "", "bool"], [29, 1, 1, "", "bool_scalars"], [29, 5, 1, "", "check_np_dtype"], [29, 1, 1, "", "complex128"], [29, 1, 1, "", "complex64"], [29, 5, 1, "", "dtype"], [29, 1, 1, "", "float32"], [29, 1, 1, "", "float64"], [29, 1, 1, "", "float_scalars"], [29, 5, 1, "", "get_byteorder"], [29, 5, 1, "", "get_server_byteorder"], [29, 1, 1, "", "int16"], [29, 1, 1, "", "int32"], [29, 1, 1, "", "int64"], [29, 1, 1, "", "int8"], [29, 1, 1, "", "intTypes"], [29, 1, 1, "", "int_scalars"], [29, 5, 1, "", "isSupportedNumber"], [29, 1, 1, "", "numeric_scalars"], [29, 1, 1, "", "numpy_scalars"], [29, 5, 1, "", "resolve_scalar_dtype"], [29, 1, 1, "", "str_"], [29, 1, 1, "", "str_scalars"], [29, 5, 1, "", "translate_np_dtype"], [29, 1, 1, "", "uint16"], [29, 1, 1, "", "uint32"], [29, 1, 1, "", "uint64"], [29, 1, 1, "", "uint8"]], "arkouda.groupbyclass": [[30, 1, 1, "", "GROUPBY_REDUCTION_TYPES"], [30, 2, 1, "", "GroupBy"], [30, 5, 1, "", "broadcast"], [30, 5, 1, "", "unique"]], "arkouda.groupbyclass.GroupBy": [[30, 4, 1, "", "AND"], [30, 4, 1, "", "OR"], [30, 3, 1, "", "Reductions"], [30, 4, 1, "", "XOR"], [30, 4, 1, "", "aggregate"], [30, 4, 1, "", "all"], [30, 4, 1, "", "any"], [30, 4, 1, "", "argmax"], [30, 4, 1, "", "argmin"], [30, 4, 1, "", "attach"], [30, 4, 1, "", "broadcast"], [30, 4, 1, "", "build_from_components"], [30, 4, 1, "", "count"], [30, 3, 1, "", "dropna"], [30, 4, 1, "", "first"], [30, 4, 1, "", "from_return_msg"], [30, 4, 1, "", "is_registered"], [30, 3, 1, "", "logger"], [30, 4, 1, "", "max"], [30, 4, 1, "", "mean"], [30, 4, 1, "", "median"], [30, 4, 1, "", "min"], [30, 4, 1, "", "mode"], [30, 4, 1, "", "most_common"], [30, 3, 1, "", "ngroups"], [30, 3, 1, "", "nkeys"], [30, 4, 1, "", "nunique"], [30, 3, 1, "", "objType"], [30, 3, 1, "", "permutation"], [30, 4, 1, "", "prod"], [30, 4, 1, "", "register"], [30, 3, 1, "", "segments"], [30, 4, 1, "id0", "size"], [30, 4, 1, "", "std"], [30, 4, 1, "", "sum"], [30, 4, 1, "", "to_hdf"], [30, 4, 1, "", "unique"], [30, 3, 1, "", "unique_keys"], [30, 4, 1, "", "unregister"], [30, 4, 1, "", "unregister_groupby_by_name"], [30, 4, 1, "", "update_hdf"], [30, 4, 1, "", "var"]], "arkouda.history": [[31, 2, 1, "", "HistoryRetriever"], [31, 2, 1, "", "NotebookHistoryRetriever"], [31, 2, 1, "", "ShellHistoryRetriever"]], "arkouda.history.HistoryRetriever": [[31, 4, 1, "", "retrieve"]], "arkouda.history.NotebookHistoryRetriever": [[31, 4, 1, "", "retrieve"]], "arkouda.history.ShellHistoryRetriever": [[31, 4, 1, "", "retrieve"]], "arkouda.index": [[33, 2, 1, "", "Index"], [33, 2, 1, "", "MultiIndex"]], "arkouda.index.Index": [[33, 4, 1, "", "argsort"], [33, 4, 1, "", "concat"], [33, 4, 1, "", "factory"], [33, 4, 1, "", "from_return_msg"], [33, 6, 1, "", "index"], [33, 4, 1, "", "is_registered"], [33, 6, 1, "", "is_unique"], [33, 4, 1, "", "lookup"], [33, 4, 1, "", "memory_usage"], [33, 3, 1, "", "objType"], [33, 4, 1, "", "register"], [33, 4, 1, "", "save"], [33, 4, 1, "", "set_dtype"], [33, 6, 1, "", "shape"], [33, 4, 1, "", "to_csv"], [33, 4, 1, "", "to_dict"], [33, 4, 1, "", "to_hdf"], [33, 4, 1, "", "to_list"], [33, 4, 1, "", "to_ndarray"], [33, 4, 1, "", "to_pandas"], [33, 4, 1, "", "to_parquet"], [33, 4, 1, "", "unregister"], [33, 4, 1, "", "update_hdf"]], "arkouda.index.MultiIndex": [[33, 4, 1, "", "argsort"], [33, 4, 1, "", "concat"], [33, 6, 1, "", "index"], [33, 4, 1, "", "is_registered"], [33, 4, 1, "", "lookup"], [33, 4, 1, "", "memory_usage"], [33, 3, 1, "", "objType"], [33, 4, 1, "", "register"], [33, 4, 1, "", "set_dtype"], [33, 4, 1, "", "to_dict"], [33, 4, 1, "", "to_hdf"], [33, 4, 1, "", "to_list"], [33, 4, 1, "", "to_ndarray"], [33, 4, 1, "", "to_pandas"], [33, 4, 1, "", "unregister"], [33, 4, 1, "", "update_hdf"]], "arkouda.infoclass": [[34, 1, 1, "", "AllSymbols"], [34, 1, 1, "", "RegisteredSymbols"], [34, 5, 1, "", "information"], [34, 5, 1, "", "list_registry"], [34, 5, 1, "", "list_symbol_table"], [34, 5, 1, "", "pretty_print_information"]], "arkouda.io": [[35, 5, 1, "", "export"], [35, 5, 1, "", "get_columns"], [35, 5, 1, "", "get_datasets"], [35, 5, 1, "", "get_filetype"], [35, 5, 1, "", "get_null_indices"], [35, 5, 1, "", "import_data"], [35, 5, 1, "", "load"], [35, 5, 1, "", "load_all"], [35, 5, 1, "", "ls"], [35, 5, 1, "", "ls_csv"], [35, 5, 1, "", "read"], [35, 5, 1, "", "read_csv"], [35, 5, 1, "", "read_hdf"], [35, 5, 1, "", "read_parquet"], [35, 5, 1, "", "read_tagged_data"], [35, 5, 1, "", "receive"], [35, 5, 1, "", "receive_dataframe"], [35, 5, 1, "", "restore"], [35, 5, 1, "", "save_all"], [35, 5, 1, "", "snapshot"], [35, 5, 1, "", "to_csv"], [35, 5, 1, "", "to_hdf"], [35, 5, 1, "", "to_parquet"], [35, 5, 1, "", "update_hdf"]], "arkouda.io_util": [[36, 5, 1, "", "delimited_file_to_dict"], [36, 5, 1, "", "dict_to_delimited_file"], [36, 5, 1, "", "get_directory"], [36, 5, 1, "", "write_line_to_file"]], "arkouda.join": [[37, 5, 1, "", "compute_join_size"], [37, 5, 1, "", "gen_ranges"], [37, 5, 1, "", "join_on_eq_with_dt"]], "arkouda.logger": [[38, 2, 1, "", "LogLevel"], [38, 5, 1, "", "disableVerbose"], [38, 5, 1, "", "enableVerbose"], [38, 5, 1, "", "write_log"]], "arkouda.logger.LogLevel": [[38, 3, 1, "", "CRITICAL"], [38, 3, 1, "", "DEBUG"], [38, 3, 1, "", "ERROR"], [38, 3, 1, "", "INFO"], [38, 3, 1, "", "WARN"]], "arkouda.match": [[39, 2, 1, "", "Match"]], "arkouda.match.Match": [[100, 4, 1, "", "end"], [100, 4, 1, "", "find_matches"], [100, 4, 1, "", "group"], [100, 4, 1, "", "match_type"], [100, 4, 1, "", "matched"], [100, 4, 1, "", "start"]], "arkouda.matcher": [[40, 2, 1, "", "Matcher"]], "arkouda.matcher.Matcher": [[40, 3, 1, "", "LocationsInfo"], [40, 4, 1, "", "find_locations"], [40, 4, 1, "", "findall"], [40, 4, 1, "", "get_match"], [40, 4, 1, "", "split"], [40, 4, 1, "", "sub"]], "arkouda.numeric": [[41, 2, 1, "", "ErrorMode"], [41, 5, 1, "", "abs"], [41, 5, 1, "", "arccos"], [41, 5, 1, "", "arccosh"], [41, 5, 1, "", "arcsin"], [41, 5, 1, "", "arcsinh"], [41, 5, 1, "", "arctan"], [41, 5, 1, "", "arctan2"], [41, 5, 1, "", "arctanh"], [41, 5, 1, "", "cast"], [41, 5, 1, "", "ceil"], [41, 5, 1, "", "cos"], [41, 5, 1, "", "cosh"], [41, 5, 1, "", "cumprod"], [41, 5, 1, "", "cumsum"], [41, 5, 1, "", "deg2rad"], [41, 5, 1, "", "exp"], [41, 5, 1, "", "expm1"], [41, 5, 1, "", "floor"], [41, 5, 1, "", "hash"], [41, 5, 1, "", "histogram"], [41, 5, 1, "", "histogram2d"], [41, 5, 1, "", "histogramdd"], [41, 5, 1, "", "isfinite"], [41, 5, 1, "", "isinf"], [41, 5, 1, "", "isnan"], [41, 5, 1, "", "log"], [41, 5, 1, "", "log10"], [41, 5, 1, "", "log1p"], [41, 5, 1, "", "log2"], [41, 5, 1, "", "rad2deg"], [41, 5, 1, "", "round"], [41, 5, 1, "", "sign"], [41, 5, 1, "", "sin"], [41, 5, 1, "", "sinh"], [41, 5, 1, "", "square"], [41, 5, 1, "", "tan"], [41, 5, 1, "", "tanh"], [41, 5, 1, "", "trunc"], [41, 5, 1, "", "value_counts"], [41, 5, 1, "", "where"]], "arkouda.numeric.ErrorMode": [[41, 3, 1, "", "ignore"], [41, 3, 1, "", "return_validity"], [41, 3, 1, "", "strict"]], "arkouda.pdarray": [[32, 3, 1, "id856", "BinOps"], [32, 3, 1, "id857", "OpEqOps"], [93, 4, 1, "", "all"], [93, 4, 1, "", "any"], [93, 4, 1, "", "argmax"], [93, 4, 1, "", "argmaxk"], [93, 4, 1, "", "argmin"], [93, 4, 1, "", "argmink"], [32, 4, 1, "id865", "astype"], [32, 4, 1, "id866", "attach"], [32, 4, 1, "id867", "bigint_to_uint_arrays"], [32, 4, 1, "id868", "clz"], [32, 4, 1, "id869", "corr"], [32, 4, 1, "id870", "cov"], [32, 4, 1, "id871", "ctz"], [95, 3, 1, "", "dtype"], [32, 4, 1, "id872", "fill"], [32, 4, 1, "id873", "format_other"], [32, 4, 1, "id874", "info"], [32, 4, 1, "id875", "is_registered"], [93, 4, 1, "", "is_sorted"], [95, 3, 1, "", "itemsize"], [93, 4, 1, "", "max"], [32, 6, 1, "id854", "max_bits"], [93, 4, 1, "", "maxk"], [93, 4, 1, "", "mean"], [93, 4, 1, "", "min"], [93, 4, 1, "", "mink"], [95, 3, 1, "", "name"], [32, 6, 1, "id855", "nbytes"], [95, 3, 1, "", "ndim"], [32, 3, 1, "id858", "objType"], [32, 4, 1, "id882", "opeq"], [32, 4, 1, "id883", "parity"], [32, 4, 1, "id884", "popcount"], [32, 4, 1, "id885", "pretty_print_info"], [93, 4, 1, "", "prod"], [32, 4, 1, "id887", "register"], [32, 4, 1, "id888", "reshape"], [32, 4, 1, "id889", "rotl"], [32, 4, 1, "id890", "rotr"], [32, 4, 1, "id891", "save"], [95, 3, 1, "", "shape"], [95, 3, 1, "", "size"], [32, 4, 1, "id892", "slice_bits"], [93, 4, 1, "", "std"], [93, 4, 1, "", "sum"], [32, 4, 1, "id895", "to_csv"], [32, 4, 1, "id898", "to_cuda"], [32, 4, 1, "id899", "to_hdf"], [32, 4, 1, "id900", "to_list"], [95, 5, 1, "", "to_ndarray"], [32, 4, 1, "id902", "to_parquet"], [32, 4, 1, "id903", "transfer"], [32, 4, 1, "id904", "unregister"], [32, 4, 1, "id905", "update_hdf"], [32, 4, 1, "id906", "value_counts"], [93, 4, 1, "", "var"]], "arkouda.pdarrayclass": [[42, 7, 1, "", "RegistrationError"], [42, 5, 1, "", "all"], [42, 5, 1, "", "any"], [42, 5, 1, "", "argmax"], [42, 5, 1, "", "argmaxk"], [42, 5, 1, "", "argmin"], [42, 5, 1, "", "argmink"], [42, 5, 1, "", "attach_pdarray"], [42, 5, 1, "", "broadcast_to_shape"], [42, 5, 1, "", "clear"], [42, 5, 1, "", "clz"], [42, 5, 1, "", "corr"], [42, 5, 1, "", "cov"], [42, 5, 1, "", "ctz"], [42, 5, 1, "", "divmod"], [42, 5, 1, "", "dot"], [42, 5, 1, "", "fmod"], [42, 5, 1, "", "is_sorted"], [42, 5, 1, "", "max"], [42, 5, 1, "", "maxk"], [42, 5, 1, "", "mean"], [42, 5, 1, "", "min"], [42, 5, 1, "", "mink"], [42, 5, 1, "", "mod"], [42, 5, 1, "", "parity"], [42, 2, 1, "", "pdarray"], [42, 5, 1, "", "popcount"], [42, 5, 1, "", "power"], [42, 5, 1, "", "prod"], [42, 5, 1, "", "rotl"], [42, 5, 1, "", "rotr"], [42, 5, 1, "", "sqrt"], [42, 5, 1, "", "std"], [42, 5, 1, "", "sum"], [42, 5, 1, "", "unregister_pdarray_by_name"], [42, 5, 1, "", "var"]], "arkouda.pdarrayclass.pdarray": [[42, 3, 1, "", "BinOps"], [42, 3, 1, "", "OpEqOps"], [42, 4, 1, "", "all"], [42, 4, 1, "", "any"], [42, 4, 1, "", "argmax"], [42, 4, 1, "", "argmaxk"], [42, 4, 1, "", "argmin"], [42, 4, 1, "", "argmink"], [42, 4, 1, "", "astype"], [42, 4, 1, "", "attach"], [42, 4, 1, "", "bigint_to_uint_arrays"], [42, 4, 1, "", "clz"], [42, 4, 1, "", "corr"], [42, 4, 1, "", "cov"], [42, 4, 1, "", "ctz"], [42, 3, 1, "", "dtype"], [42, 4, 1, "", "fill"], [42, 4, 1, "", "format_other"], [42, 4, 1, "", "info"], [42, 4, 1, "", "is_registered"], [42, 4, 1, "", "is_sorted"], [42, 3, 1, "", "itemsize"], [42, 4, 1, "", "max"], [42, 6, 1, "", "max_bits"], [42, 4, 1, "", "maxk"], [42, 4, 1, "", "mean"], [42, 4, 1, "", "min"], [42, 4, 1, "", "mink"], [42, 3, 1, "", "name"], [42, 6, 1, "", "nbytes"], [42, 3, 1, "", "ndim"], [42, 3, 1, "", "objType"], [42, 4, 1, "", "opeq"], [42, 4, 1, "", "parity"], [42, 4, 1, "", "popcount"], [42, 4, 1, "", "pretty_print_info"], [42, 4, 1, "", "prod"], [42, 4, 1, "", "register"], [42, 4, 1, "", "reshape"], [42, 4, 1, "", "rotl"], [42, 4, 1, "", "rotr"], [42, 4, 1, "", "save"], [42, 3, 1, "", "shape"], [42, 3, 1, "", "size"], [42, 4, 1, "", "slice_bits"], [42, 4, 1, "", "std"], [42, 4, 1, "", "sum"], [42, 4, 1, "", "to_csv"], [42, 4, 1, "", "to_cuda"], [42, 4, 1, "", "to_hdf"], [42, 4, 1, "", "to_list"], [42, 4, 1, "", "to_ndarray"], [42, 4, 1, "", "to_parquet"], [42, 4, 1, "", "transfer"], [42, 4, 1, "", "unregister"], [42, 4, 1, "", "update_hdf"], [42, 4, 1, "", "value_counts"], [42, 4, 1, "", "var"]], "arkouda.pdarraycreation": [[43, 5, 1, "", "arange"], [43, 5, 1, "", "array"], [43, 5, 1, "", "bigint_from_uint_arrays"], [43, 5, 1, "", "from_series"], [43, 5, 1, "", "full"], [43, 5, 1, "", "full_like"], [43, 5, 1, "", "linspace"], [43, 5, 1, "", "ones"], [43, 5, 1, "", "ones_like"], [43, 5, 1, "", "randint"], [43, 5, 1, "", "random_strings_lognormal"], [43, 5, 1, "", "random_strings_uniform"], [43, 5, 1, "", "standard_normal"], [43, 5, 1, "", "uniform"], [43, 5, 1, "", "zeros"], [43, 5, 1, "", "zeros_like"]], "arkouda.pdarraysetops": [[44, 5, 1, "", "concatenate"], [44, 5, 1, "", "in1d"], [44, 5, 1, "", "indexof1d"], [44, 5, 1, "", "intersect1d"], [44, 5, 1, "", "setdiff1d"], [44, 5, 1, "", "setxor1d"], [44, 5, 1, "", "union1d"]], "arkouda.plotting": [[45, 5, 1, "", "hist_all"], [45, 5, 1, "", "plot_dist"]], "arkouda.random": [[48, 2, 1, "", "Generator"], [46, 0, 0, "-", "_generator"], [47, 0, 0, "-", "_legacy"], [48, 5, 1, "", "randint"], [48, 5, 1, "", "standard_normal"], [48, 5, 1, "", "uniform"]], "arkouda.random.Generator": [[48, 4, 1, "", "integers"], [48, 4, 1, "", "random"], [48, 4, 1, "", "standard_normal"], [48, 4, 1, "", "uniform"]], "arkouda.random._generator": [[46, 2, 1, "", "Generator"], [46, 5, 1, "", "default_rng"]], "arkouda.random._generator.Generator": [[46, 4, 1, "", "integers"], [46, 4, 1, "", "random"], [46, 4, 1, "", "standard_normal"], [46, 4, 1, "", "uniform"]], "arkouda.random._legacy": [[47, 5, 1, "", "randint"], [47, 5, 1, "", "standard_normal"], [47, 5, 1, "", "uniform"]], "arkouda.row": [[49, 2, 1, "", "Row"]], "arkouda.security": [[50, 5, 1, "", "generate_token"], [50, 5, 1, "", "generate_username_token_json"], [50, 5, 1, "", "get_arkouda_client_directory"], [50, 5, 1, "", "get_home_directory"], [50, 5, 1, "", "get_username"], [50, 1, 1, "", "username_tokenizer"]], "arkouda.segarray": [[51, 1, 1, "", "LEN_SUFFIX"], [51, 1, 1, "", "SEG_SUFFIX"], [51, 2, 1, "", "SegArray"], [51, 1, 1, "", "VAL_SUFFIX"], [51, 5, 1, "", "segarray"]], "arkouda.segarray.SegArray": [[51, 4, 1, "", "AND"], [51, 4, 1, "", "OR"], [51, 4, 1, "", "XOR"], [51, 4, 1, "", "aggregate"], [51, 4, 1, "", "all"], [51, 4, 1, "", "any"], [51, 4, 1, "", "append"], [51, 4, 1, "", "append_single"], [51, 4, 1, "", "argmax"], [51, 4, 1, "", "argmin"], [51, 4, 1, "", "attach"], [51, 4, 1, "", "concat"], [51, 4, 1, "", "copy"], [51, 4, 1, "", "filter"], [51, 4, 1, "", "from_multi_array"], [51, 4, 1, "", "from_parts"], [51, 4, 1, "", "from_return_msg"], [51, 4, 1, "", "get_jth"], [51, 4, 1, "", "get_length_n"], [51, 4, 1, "", "get_ngrams"], [51, 4, 1, "", "get_prefixes"], [51, 4, 1, "", "get_suffixes"], [51, 6, 1, "", "grouping"], [51, 4, 1, "", "hash"], [51, 4, 1, "", "intersect"], [51, 4, 1, "", "is_registered"], [51, 4, 1, "", "load"], [51, 4, 1, "", "max"], [51, 4, 1, "", "mean"], [51, 4, 1, "", "min"], [51, 6, 1, "", "non_empty"], [51, 4, 1, "", "nunique"], [51, 3, 1, "", "objType"], [51, 4, 1, "", "prepend_single"], [51, 4, 1, "", "prod"], [51, 4, 1, "", "read_hdf"], [51, 4, 1, "", "register"], [51, 4, 1, "", "remove_repeats"], [51, 4, 1, "", "save"], [51, 4, 1, "", "set_jth"], [51, 4, 1, "", "setdiff"], [51, 4, 1, "", "setxor"], [51, 4, 1, "", "sum"], [51, 4, 1, "", "to_hdf"], [51, 4, 1, "", "to_list"], [51, 4, 1, "", "to_ndarray"], [51, 4, 1, "", "to_parquet"], [51, 4, 1, "", "transfer"], [51, 4, 1, "", "union"], [51, 4, 1, "", "unique"], [51, 4, 1, "", "unregister"], [51, 4, 1, "", "unregister_segarray_by_name"], [51, 4, 1, "", "update_hdf"]], "arkouda.series": [[52, 2, 1, "", "Series"]], "arkouda.series.Series": [[52, 4, 1, "", "add"], [52, 6, 1, "", "at"], [52, 4, 1, "", "attach"], [52, 4, 1, "", "concat"], [52, 4, 1, "", "diff"], [52, 3, 1, "", "dt"], [52, 4, 1, "", "from_return_msg"], [52, 4, 1, "", "has_repeat_labels"], [52, 4, 1, "", "head"], [52, 6, 1, "", "iat"], [52, 6, 1, "", "iloc"], [52, 4, 1, "", "is_registered"], [52, 4, 1, "", "isin"], [52, 6, 1, "", "loc"], [52, 4, 1, "", "locate"], [52, 4, 1, "", "map"], [52, 4, 1, "", "memory_usage"], [52, 3, 1, "", "objType"], [52, 4, 1, "", "pdconcat"], [52, 4, 1, "", "register"], [52, 6, 1, "", "shape"], [52, 4, 1, "", "sort_index"], [52, 4, 1, "", "sort_values"], [52, 3, 1, "", "str_acc"], [52, 4, 1, "", "tail"], [52, 4, 1, "", "to_dataframe"], [52, 4, 1, "", "to_list"], [52, 4, 1, "", "to_markdown"], [52, 4, 1, "", "to_pandas"], [52, 4, 1, "", "topn"], [52, 4, 1, "", "unregister"], [52, 4, 1, "", "validate_key"], [52, 4, 1, "", "validate_val"], [52, 4, 1, "", "value_counts"]], "arkouda.sorting": [[53, 5, 1, "", "argsort"], [53, 5, 1, "", "coargsort"], [53, 5, 1, "", "sort"]], "arkouda.strings": [[54, 2, 1, "", "Strings"]], "arkouda.strings.Strings": [[54, 3, 1, "", "BinOps"], [54, 4, 1, "", "astype"], [54, 4, 1, "", "attach"], [54, 4, 1, "", "cached_regex_patterns"], [54, 4, 1, "", "capitalize"], [54, 4, 1, "", "contains"], [54, 4, 1, "", "decode"], [54, 3, 1, "", "dtype"], [54, 4, 1, "", "encode"], [54, 4, 1, "", "endswith"], [54, 3, 1, "", "entry"], [54, 4, 1, "", "find_locations"], [54, 4, 1, "", "findall"], [54, 4, 1, "", "flatten"], [54, 4, 1, "", "from_parts"], [54, 4, 1, "", "from_return_msg"], [54, 4, 1, "", "fullmatch"], [54, 4, 1, "", "get_bytes"], [54, 4, 1, "", "get_lengths"], [54, 4, 1, "", "get_offsets"], [54, 4, 1, "", "get_prefixes"], [54, 4, 1, "", "get_suffixes"], [54, 4, 1, "", "group"], [54, 4, 1, "", "hash"], [54, 4, 1, "", "info"], [54, 4, 1, "", "is_registered"], [54, 4, 1, "", "isalnum"], [54, 4, 1, "", "isalpha"], [54, 4, 1, "", "isdigit"], [54, 4, 1, "", "isempty"], [54, 4, 1, "", "islower"], [54, 4, 1, "", "isspace"], [54, 4, 1, "", "istitle"], [54, 4, 1, "", "isupper"], [54, 3, 1, "", "logger"], [54, 4, 1, "", "lower"], [54, 4, 1, "", "lstick"], [54, 4, 1, "", "match"], [54, 3, 1, "", "nbytes"], [54, 3, 1, "", "ndim"], [54, 3, 1, "", "objType"], [54, 4, 1, "", "peel"], [54, 4, 1, "", "pretty_print_info"], [54, 4, 1, "", "purge_cached_regex_patterns"], [54, 4, 1, "", "register"], [54, 4, 1, "", "rpeel"], [54, 4, 1, "", "save"], [54, 4, 1, "", "search"], [54, 3, 1, "", "shape"], [54, 3, 1, "", "size"], [54, 4, 1, "", "split"], [54, 4, 1, "", "startswith"], [54, 4, 1, "", "stick"], [54, 4, 1, "", "strip"], [54, 4, 1, "", "sub"], [54, 4, 1, "", "subn"], [54, 4, 1, "", "title"], [54, 4, 1, "", "to_csv"], [54, 4, 1, "", "to_hdf"], [54, 4, 1, "", "to_list"], [54, 4, 1, "", "to_ndarray"], [54, 4, 1, "", "to_parquet"], [54, 4, 1, "", "transfer"], [54, 4, 1, "", "unregister"], [54, 4, 1, "", "unregister_strings_by_name"], [54, 4, 1, "", "update_hdf"], [54, 4, 1, "", "upper"]], "arkouda.timeclass": [[55, 2, 1, "", "Datetime"], [55, 2, 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, 4, 1, "", "is_registered"], [55, 4, 1, "", "isocalendar"], [55, 6, 1, "", "microsecond"], [55, 6, 1, "", "millisecond"], [55, 6, 1, "", "minute"], [55, 6, 1, "", "month"], [55, 6, 1, "", "nanosecond"], [55, 4, 1, "", "register"], [55, 6, 1, "", "second"], [55, 3, 1, "", "special_objType"], [55, 4, 1, "", "sum"], [55, 3, 1, "", "supported_opeq"], [55, 3, 1, "", "supported_with_datetime"], [55, 3, 1, "", "supported_with_pdarray"], [55, 3, 1, "", "supported_with_r_datetime"], [55, 3, 1, "", "supported_with_r_pdarray"], [55, 3, 1, "", "supported_with_r_timedelta"], [55, 3, 1, "", "supported_with_timedelta"], [55, 4, 1, "", "to_pandas"], [55, 4, 1, "", "unregister"], [55, 6, 1, "", "week"], [55, 6, 1, "", "weekday"], [55, 6, 1, "", "weekofyear"], [55, 6, 1, "", "year"]], "arkouda.timeclass.Timedelta": [[55, 4, 1, "", "abs"], [55, 6, 1, "", "components"], [55, 6, 1, "", "days"], [55, 4, 1, "", "is_registered"], [55, 6, 1, "", "microseconds"], [55, 6, 1, "", "nanoseconds"], [55, 4, 1, "", "register"], [55, 6, 1, "", "seconds"], [55, 3, 1, "", "special_objType"], [55, 4, 1, "", "std"], [55, 4, 1, "", "sum"], [55, 3, 1, "", "supported_opeq"], [55, 3, 1, "", "supported_with_datetime"], [55, 3, 1, "", "supported_with_pdarray"], [55, 3, 1, "", "supported_with_r_datetime"], [55, 3, 1, "", "supported_with_r_pdarray"], [55, 3, 1, "", "supported_with_r_timedelta"], [55, 3, 1, "", "supported_with_timedelta"], [55, 4, 1, "", "to_pandas"], [55, 4, 1, "", "total_seconds"], [55, 4, 1, "", "unregister"]], "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_registered"], [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"]]}, "objtypes": {"0": "py:module", "1": "py:data", "2": "py:class", "3": "py:attribute", "4": "py:method", "5": "py:function", "6": "py:property", "7": "py:exception"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "data", "Python data"], "2": ["py", "class", "Python class"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "method", "Python method"], "5": ["py", "function", "Python function"], "6": ["py", "property", "Python property"], "7": ["py", "exception", "Python exception"]}, "titleterms": {"contribut": 0, "ad": [0, 1, 58, 78], "issu": 0, "bug": [0, 64], "report": 0, "featur": [0, 58, 85, 91, 97], "request": 0, "develop": [0, 60, 65, 79], "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, 88, 91, 96, 97, 99, 100], "code": 0, "convent": 0, "lint": 0, "python3": 0, "chapel": [0, 1, 60, 74, 76, 77], "test": [0, 1, 59, 82], "run": [0, 1, 59, 60, 78], "python": [0, 1, 58, 66, 73, 76, 77, 79, 99], "write": [0, 68, 70, 71], "pull": 0, "review": 0, "core": 0, "team": 0, "onli": 0, "merg": 0, "releas": [0, 62], "process": [0, 62, 78], "environ": [1, 60, 63, 75, 76, 77], "variabl": [1, 63, 75], "compil": [1, 63], "makefil": 1, "flag": 1, "depend": [1, 73, 75, 79], "path": 1, "modul": [1, 2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 78], "from": [1, 77, 84], "outsid": 1, "src": 1, "directori": 1, "client": [1, 26, 58, 73, 84, 99], "accessor": 2, "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, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "class": [2, 3, 4, 8, 11, 17, 20, 24, 25, 27, 28, 30, 31, 32, 33, 38, 39, 40, 41, 42, 46, 48, 49, 51, 52, 54, 55, 95], "function": [2, 3, 4, 5, 6, 7, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 23, 26, 27, 28, 29, 30, 32, 34, 35, 36, 37, 38, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 53, 55, 56, 58, 71, 87], "akscipi": [3, 4, 5, 6], "_stats_pi": 3, "subpackag": [4, 32], "packag": [4, 6, 22, 32, 48, 75], "special": [5, 6], "_math": 5, "align": 7, "array_api": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "_array_object": 8, "_constant": 9, "_creation_funct": 10, "_data_type_funct": 11, "_dtype": 12, "_elementwise_funct": 13, "_indexing_funct": 14, "_manipulation_funct": 15, "_searching_funct": 16, "_set_funct": 17, "_sorting_funct": 18, "_statistical_funct": 19, "_type": 20, "attribut": [20, 29, 30, 32, 34, 50, 51, 68], "_utility_funct": 21, "submodul": [22, 32], "linalg": 23, "array_view": 24, "categor": [25, 68, 70, 89], "client_dtyp": 27, "datafram": [28, 66, 67, 68, 70, 91], "dtype": [29, 85], "groupbyclass": 30, "histori": 31, "input": [32, 52], "return": [32, 44, 98], "type": [32, 44, 67, 68, 70, 91, 95, 98], "index": [33, 67, 68, 70, 85, 88, 91, 94], "infoclass": 34, "io": 35, "io_util": 36, "join": [37, 100], "logger": 38, "match": [39, 100], "matcher": 40, "numer": [41, 87], "pdarrayclass": 42, "pdarraycr": 43, "pdarraysetop": 44, "plot": 45, "random": [46, 47, 48, 90], "_gener": 46, "_legaci": 47, "row": 49, "secur": 50, "segarrai": [51, 68, 70, 96], "seri": [52, 97], "sort": [53, 86, 91, 97], "string": [54, 67, 68, 70, 100], "timeclass": 55, "util": 56, "api": [57, 67, 68, 69, 70, 71, 74], "refer": [57, 67, 68, 69, 70, 74], "your": 58, "first": 58, "interfac": 58, "exampl": [58, 66, 67], "server": [58, 73, 75, 78, 84, 99], "pytest": 59, "benchmark": 59, "The": [59, 95], "full": [59, 64], "suit": 59, "argument": [59, 82], "singl": 59, "file": [59, 67, 68, 71, 78, 84], "read": [59, 71, 84], "json": 59, "output": 59, "gasnet": 60, "configur": [60, 68, 75, 78], "build": [60, 61, 63, 64, 75, 77, 78], "reduc": [61, 82], "memori": 61, "usag": [61, 83], "step": [62, 76, 77], "instruct": 62, "gener": [62, 71], "note": 62, "diff": 62, "git": 62, "log": 62, "speed": 63, "up": 63, "alwai": 63, "set": [63, 66, 96, 98], "us": [63, 66, 73, 75, 78, 79], "modular": [63, 75, 78], "system": 63, "tip": 64, "reproduc": 64, "user": 64, "save": [64, 78], "effici": 64, "document": [65, 72, 75], "arrai": [66, 90, 96, 98], "pdarrai": [66, 67, 68, 70, 94, 95], "creation": [66, 88], "export": [66, 69, 71, 84], "object": [66, 100], "oper": [66, 87, 89, 95, 96, 98, 100], "creat": [66, 90], "import": [66, 69, 71, 84], "panda": [66, 97], "map": 66, "basic": 66, "interact": 66, "groupbi": [66, 68, 91, 92], "csv": 67, "support": [67, 68, 70, 71, 84], "data": [67, 68, 70, 84, 91, 93, 95], "format": [67, 71, 84], "without": 67, "header": 67, "hdf5": 68, "metadata": 68, "schema": 68, "arrayview": [68, 88], "mode": [68, 70], "distribut": [68, 75], "legaci": 68, "parquet": 70, "compress": 70, "i": [71, 84, 100], "o": [71, 84, 100], "l": 71, "quickstart": 73, "instal": [73, 75, 76, 77, 79, 81], "launch": [73, 99], "connect": [73, 99], "3": [73, 99], "shutdown": 73, "disconnect": 73, "get": 75, "start": 75, "recommend": [75, 77], "manual": 75, "all": 75, "individu": 75, "arrow": 75, "troubleshoot": 75, "linux": 76, "updat": [76, 77, 79], "kernel": 76, "clone": [76, 77], "repositori": [76, 77], "anaconda": [76, 77, 79], "ubuntu": 76, "rhel": 76, "next": [76, 77], "maco": 77, "sourc": 77, "homebrew": 77, "specifi": 78, "custom": 78, "new": 78, "an": 78, "requir": [79, 81], "list": 79, "specif": [79, 96, 100], "pip": 79, "window": 80, "wsl2": 80, "overview": 81, "guid": [81, 83], "perform": [82, 96, 100], "argsort": [82, 85], "posit": 82, "name": [82, 95], "gather": [82, 94], "scan": [82, 87], "scatter": [82, 94], "stream": 82, "between": 84, "larg": 84, "dataset": 84, "preprocess": 84, "disk": 84, "chang": 85, "lookup": [85, 97], "concat": 85, "arithmet": 87, "vector": 87, "scalar": 87, "element": [87, 96], "wise": 87, "reduct": 87, "where": 87, "iter": [88, 89, 91, 95, 96, 100], "construct": 89, "constant": 90, "regular": [90, 100], "concaten": [90, 91], "drop": 91, "copi": 91, "filter": 91, "permut": 91, "tail": [91, 97], "head": [91, 97], "renam": 91, "column": 91, "append": [91, 96], "reset": 91, "dedupl": [91, 96], "summar": 93, "descript": 93, "statist": 93, "histogram": 93, "valu": [93, 97], "count": [93, 97], "assign": 94, "integ": 94, "slice": 94, "logic": 94, "rank": 95, "cast": 95, "reshap": 95, "method": [96, 100], "prefix": 96, "suffix": 96, "ngram": 96, "sub": 96, "size": 96, "access": 96, "prepend": 96, "setop": 96, "union": 96, "intersect": 96, "differ": 96, "symmetr": 96, "integr": 97, "startup": 99, "substr": 100, "search": 100, "split": 100, "flatten": 100, "express": 100}, "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.viewcode": 1, "sphinx": 60}, "alltitles": {"Contributing": [[0, "contributing"]], "Adding Issues": [[0, "adding-issues"]], "Bug Reports": [[0, "bug-reports"]], "Feature Requests": [[0, "feature-requests"]], "Developing Arkouda": [[0, "developing-arkouda"]], "Coding Conventions and Linting": [[0, "coding-conventions-and-linting"]], "Python3": [[0, "python3"]], "Chapel": [[0, "chapel"]], "Testing": [[0, "testing"], [1, "testing"]], "Running python tests": [[0, "running-python-tests"]], "Running chapel tests": [[0, "running-chapel-tests"]], "Writing Pull Requests": [[0, "writing-pull-requests"]], "Reviewing Pull Requests": [[0, "reviewing-pull-requests"]], "Core Development Team Only": [[0, "core-development-team-only"]], "Merging Pull Requests": [[0, "merging-pull-requests"]], "Release Process": [[0, "release-process"], [62, "release-process"]], "Environment Variables": [[1, "environment-variables"], [75, "environment-variables"]], "Running": [[1, "running"]], "Compilation / Makefile": [[1, "compilation-makefile"]], "Chapel Compiler Flags": [[1, "chapel-compiler-flags"]], "Dependency Paths": [[1, "dependency-paths"]], "Adding a Module from Outside the Arkouda src Directory": [[1, "adding-a-module-from-outside-the-arkouda-src-directory"]], "Python Client": [[1, "python-client"]], "arkouda.accessor": [[2, "module-arkouda.accessor"]], "Module Contents": [[2, "module-contents"], [3, "module-contents"], [5, "module-contents"], [7, "module-contents"], [8, "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"], [21, "module-contents"], [23, "module-contents"], [24, "module-contents"], [25, "module-contents"], [26, "module-contents"], [27, "module-contents"], [28, "module-contents"], [29, "module-contents"], [30, "module-contents"], [31, "module-contents"], [33, "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"], [42, "module-contents"], [43, "module-contents"], [44, "module-contents"], [45, "module-contents"], [46, "module-contents"], [47, "module-contents"], [49, "module-contents"], [50, "module-contents"], [51, "module-contents"], [52, "module-contents"], [53, "module-contents"], [54, "module-contents"], [55, "module-contents"], [56, "module-contents"]], "Classes": [[2, "classes"], [3, "classes"], [4, "classes"], [8, "classes"], [11, "classes"], [17, "classes"], [20, "classes"], [24, "classes"], [25, "classes"], [27, "classes"], [28, "classes"], [30, "classes"], [31, "classes"], [32, "classes"], [33, "classes"], [38, "classes"], [39, "classes"], [40, "classes"], [41, "classes"], [42, "classes"], [46, "classes"], [48, "classes"], [49, "classes"], [51, "classes"], [52, "classes"], [54, "classes"], [55, "classes"]], "Functions": [[2, "functions"], [3, "functions"], [4, "functions"], [5, "functions"], [6, "functions"], [7, "functions"], [10, "functions"], [11, "functions"], [13, "functions"], [14, "functions"], [15, "functions"], [16, "functions"], [17, "functions"], [18, "functions"], [19, "functions"], [21, "functions"], [23, "functions"], [26, "functions"], [27, "functions"], [28, "functions"], [29, "functions"], [30, "functions"], [32, "functions"], [34, "functions"], [35, "functions"], [36, "functions"], [37, "functions"], [38, "functions"], [41, "functions"], [42, "functions"], [43, "functions"], [44, "functions"], [45, "functions"], [46, "functions"], [47, "functions"], [48, "functions"], [50, "functions"], [51, "functions"], [53, "functions"], [55, "functions"], [56, "functions"]], "arkouda.akscipy._stats_py": [[3, "module-arkouda.akscipy._stats_py"]], "arkouda.akscipy": [[4, "module-arkouda.akscipy"]], "Subpackages": [[4, "subpackages"], [32, "subpackages"]], "Package Contents": [[4, "package-contents"], [6, "package-contents"], [22, "package-contents"], [32, "package-contents"], [48, "package-contents"]], "arkouda.akscipy.special._math": [[5, "module-arkouda.akscipy.special._math"]], "arkouda.akscipy.special": [[6, "module-arkouda.akscipy.special"]], "arkouda.alignment": [[7, "module-arkouda.alignment"]], "arkouda.array_api._array_object": [[8, "module-arkouda.array_api._array_object"]], "arkouda.array_api._constants": [[9, "module-arkouda.array_api._constants"]], "arkouda.array_api._creation_functions": [[10, "module-arkouda.array_api._creation_functions"]], "arkouda.array_api._data_type_functions": [[11, "module-arkouda.array_api._data_type_functions"]], "arkouda.array_api._dtypes": [[12, "module-arkouda.array_api._dtypes"]], "arkouda.array_api._elementwise_functions": [[13, "module-arkouda.array_api._elementwise_functions"]], "arkouda.array_api._indexing_functions": [[14, "module-arkouda.array_api._indexing_functions"]], "arkouda.array_api._manipulation_functions": [[15, "module-arkouda.array_api._manipulation_functions"]], "arkouda.array_api._searching_functions": [[16, "module-arkouda.array_api._searching_functions"]], "arkouda.array_api._set_functions": [[17, "module-arkouda.array_api._set_functions"]], "arkouda.array_api._sorting_functions": [[18, "module-arkouda.array_api._sorting_functions"]], "arkouda.array_api._statistical_functions": [[19, "module-arkouda.array_api._statistical_functions"]], "arkouda.array_api._typing": [[20, "module-arkouda.array_api._typing"]], "Attributes": [[20, "attributes"], [29, "attributes"], [30, "attributes"], [32, "attributes"], [34, "attributes"], [50, "attributes"], [51, "attributes"]], "arkouda.array_api._utility_functions": [[21, "module-arkouda.array_api._utility_functions"]], "arkouda.array_api": [[22, "module-arkouda.array_api"]], "Submodules": [[22, "submodules"], [32, "submodules"]], "arkouda.array_api.linalg": [[23, "module-arkouda.array_api.linalg"]], "arkouda.array_view": [[24, "module-arkouda.array_view"]], "arkouda.categorical": [[25, "module-arkouda.categorical"]], "arkouda.client": [[26, "module-arkouda.client"]], "arkouda.client_dtypes": [[27, "module-arkouda.client_dtypes"]], "arkouda.dataframe": [[28, "module-arkouda.dataframe"]], "arkouda.dtypes": [[29, "module-arkouda.dtypes"]], "arkouda.groupbyclass": [[30, "module-arkouda.groupbyclass"]], "arkouda.history": [[31, "module-arkouda.history"]], "arkouda": [[32, "module-arkouda"]], "Input": [[32, "input"], [52, "input"]], "Return Type": [[32, "return-type"], [32, "id651"], [32, "id653"], [44, "return-type"], [98, "return-type"]], "arkouda.index": [[33, "module-arkouda.index"]], "arkouda.infoclass": [[34, "module-arkouda.infoclass"]], "arkouda.io": [[35, "module-arkouda.io"]], "arkouda.io_util": [[36, "module-arkouda.io_util"]], "arkouda.join": [[37, "module-arkouda.join"]], "arkouda.logger": [[38, "module-arkouda.logger"]], "arkouda.match": [[39, "module-arkouda.match"]], "arkouda.matcher": [[40, "module-arkouda.matcher"]], "arkouda.numeric": [[41, "module-arkouda.numeric"]], "arkouda.pdarrayclass": [[42, "module-arkouda.pdarrayclass"]], "arkouda.pdarraycreation": [[43, "module-arkouda.pdarraycreation"]], "arkouda.pdarraysetops": [[44, "module-arkouda.pdarraysetops"]], "arkouda.plotting": [[45, "module-arkouda.plotting"]], "arkouda.random._generator": [[46, "module-arkouda.random._generator"]], "arkouda.random._legacy": [[47, "module-arkouda.random._legacy"]], "arkouda.random": [[48, "module-arkouda.random"]], "arkouda.row": [[49, "module-arkouda.row"]], "arkouda.security": [[50, "module-arkouda.security"]], "arkouda.segarray": [[51, "module-arkouda.segarray"]], "arkouda.series": [[52, "module-arkouda.series"]], "arkouda.sorting": [[53, "module-arkouda.sorting"]], "arkouda.strings": [[54, "module-arkouda.strings"]], "arkouda.timeclass": [[55, "module-arkouda.timeclass"]], "arkouda.util": [[56, "module-arkouda.util"]], "API Reference": [[57, "api-reference"], [67, "api-reference"], [68, "api-reference"], [69, "api-reference"], [70, "api-reference"]], "Adding Your First Feature": [[58, "adding-your-first-feature"]], "Adding Python Functionality (Client Interface)": [[58, "adding-python-functionality-client-interface"]], "Example": [[58, "example"], [58, "id1"]], "Adding Functionality to the Arkouda Server": [[58, "adding-functionality-to-the-arkouda-server"]], "PyTest Benchmarks": [[59, "pytest-benchmarks"]], "Running The Full Suite": [[59, "running-the-full-suite"]], "Benchmark Arguments": [[59, "benchmark-arguments"]], "Running Single Files or Tests": [[59, "running-single-files-or-tests"]], "Reading the JSON Output": [[59, "reading-the-json-output"]], "GASNet Development": [[60, "gasnet-development"]], "Environment Configuration": [[60, "environment-configuration"]], "Build Chapel with GASNet": [[60, "build-chapel-with-gasnet"]], "Build Arkouda": [[60, "build-arkouda"]], "Run Arkouda": [[60, "run-arkouda"]], "Reducing Memory Usage of Arkouda Builds": [[61, "reducing-memory-usage-of-arkouda-builds"]], "Step-by-step instructions": [[62, "step-by-step-instructions"]], "Generating release notes": [[62, "generating-release-notes"]], "Diff the git logs": [[62, "diff-the-git-logs"]], "Speeding up Arkouda Compilation": [[63, "speeding-up-arkouda-compilation"]], "Environment Variables to Always Set": [[63, "environment-variables-to-always-set"]], "Using the Modular Build System": [[63, "using-the-modular-build-system"]], "Tips for Reproducing User Bugs": [[64, "tips-for-reproducing-user-bugs"]], "Saving Full Builds": [[64, "saving-full-builds"]], "Reproducing User Bugs Efficiently": [[64, "reproducing-user-bugs-efficiently"]], "Developer Documentation": [[65, "developer-documentation"]], "Examples": [[66, "examples"]], "Arkouda Arrays": [[66, "arkouda-arrays"]], "pdarray Creation": [[66, "pdarray-creation"]], "Exporting pdarray Objects": [[66, "exporting-pdarray-objects"]], "pdarray Set operations": [[66, "pdarray-set-operations"]], "Arkouda DataFrames": [[66, "arkouda-dataframes"]], "Creating & Using a DataFrame": [[66, "creating-using-a-dataframe"]], "Importing Pandas DataFrame": [[66, "importing-pandas-dataframe"]], "Python Mapping": [[66, "python-mapping"]], "Basic Interaction": [[66, "basic-interaction"]], "Exporting to Pandas": [[66, "exporting-to-pandas"]], "GroupBy": [[66, "groupby"], [68, "groupby"], [68, "id5"], [91, "groupby"], [92, "groupby"]], "pdarrays": [[66, "pdarrays"]], "DataFrames": [[66, "dataframes"]], "CSV": [[67, "csv"]], "Support Arkouda Data Types": [[67, "support-arkouda-data-types"]], "File Formatting": [[67, "file-formatting"]], "Example Files": [[67, "example-files"]], "Arkouda Formatted File": [[67, "arkouda-formatted-file"]], "File Without Header": [[67, "file-without-header"]], "Data Formatting": [[67, "data-formatting"]], "pdarray": [[67, "pdarray"], [68, "pdarray"], [68, "id1"], [70, "pdarray"]], "Strings": [[67, "strings"], [68, "strings"], [68, "id2"], [70, "strings"]], "Index": [[67, "index"], [68, "index"], [70, "index"]], "DataFrame": [[67, "dataframe"], [68, "dataframe"], [70, "dataframe"]], "HDF5": [[68, "hdf5"]], "File Configuration": [[68, "file-configuration"]], "Supported Arkouda Data Types": [[68, "supported-arkouda-data-types"], [70, "supported-arkouda-data-types"]], "MetaData Attributes": [[68, "metadata-attributes"]], "Data Schema": [[68, "data-schema"]], "ArrayView": [[68, "arrayview"]], "SegArray": [[68, "segarray"], [68, "id4"], [70, "segarray"]], "Categorical": [[68, "categorical"], [68, "id3"], [70, "categorical"]], "Supported Write Modes": [[68, "supported-write-modes"], [70, "supported-write-modes"]], "Data Distribution": [[68, "data-distribution"]], "Legacy File Support": [[68, "legacy-file-support"]], "Import/Export": [[69, "import-export"], [84, "import-export"]], "Export": [[69, "export"]], "Import": [[69, "import"]], "Parquet": [[70, "parquet"]], "Compression": [[70, "compression"]], "File I/O": [[71, "file-i-o"]], "Supported File Formats:": [[71, null]], "Import/Export Support": [[71, "import-export-support"]], "General I/O API": [[71, "general-i-o-api"]], "Write": [[71, "write"]], "Read": [[71, "read"]], "ls Functionality": [[71, "ls-functionality"]], "Arkouda Documentation": [[72, "arkouda-documentation"]], "Quickstart": [[73, "quickstart"]], "Install Dependencies": [[73, "install-dependencies"]], "Install Arkouda": [[73, "install-arkouda"]], "Launching the Server": [[73, "launching-the-server"]], "Connect the Python 3 Client": [[73, "connect-the-python-3-client"]], "Shutdown/Disconnect": [[73, "shutdown-disconnect"]], "Using Arkouda": [[73, "using-arkouda"]], "Chapel API Reference": [[74, "chapel-api-reference"]], "Building the Server": [[75, "building-the-server"]], "Getting Started": [[75, "getting-started"]], "Dependency Configuration": [[75, "dependency-configuration"]], "Using Environment Installed Dependencies (Recommended)": [[75, "using-environment-installed-dependencies-recommended"]], "Installing Dependencies Manually": [[75, "installing-dependencies-manually"]], "Dependencies": [[75, "dependencies"]], "All Dependencies": [[75, "all-dependencies"]], "Individual Installs": [[75, "individual-installs"]], "Arrow Install Troubleshooting": [[75, "arrow-install-troubleshooting"]], "Distributable Package": [[75, "distributable-package"]], "Build the Server": [[75, "build-the-server"]], "Building the Arkouda Documentation": [[75, "building-the-arkouda-documentation"]], "Modular Building": [[75, "modular-building"]], "Linux": [[76, "linux"]], "Update Kernel": [[76, "update-kernel"]], "Clone Arkouda Repository": [[76, "clone-arkouda-repository"], [77, "clone-arkouda-repository"]], "Python Environment - Anaconda (Linux)": [[76, "python-environment-anaconda-linux"]], "Chapel Installation": [[76, "chapel-installation"]], "Install Chapel (Ubuntu)": [[76, "install-chapel-ubuntu"]], "Install Chapel (RHEL)": [[76, "install-chapel-rhel"]], "Next Steps": [[76, "next-steps"], [77, "next-steps"]], "MacOS": [[77, "macos"]], "Python Environment - Anaconda": [[77, "python-environment-anaconda"]], "Updating Environment": [[77, "updating-environment"]], "Anaconda": [[77, "anaconda"]], "Install Chapel": [[77, "install-chapel"]], "Build from Source (Recommended)": [[77, "build-from-source-recommended"]], "Homebrew": [[77, "homebrew"]], "Modular Server Builds": [[78, "modular-server-builds"]], "Specifying a custom configuration file": [[78, "specifying-a-custom-configuration-file"]], "Adding new modules into the build process": [[78, "adding-new-modules-into-the-build-process"]], "Saving modules used in an Arkouda server run": [[78, "saving-modules-used-in-an-arkouda-server-run"]], "Requirements": [[79, "requirements"], [81, "requirements"]], "Dependency List": [[79, "dependency-list"]], "Python Dependencies": [[79, "python-dependencies"]], "Developer Specific": [[79, "developer-specific"]], "Installing/Updating Python Dependencies": [[79, "installing-updating-python-dependencies"]], "Using Anaconda": [[79, "using-anaconda"]], "Using Pip": [[79, "using-pip"]], "Windows (WSL2)": [[80, "windows-wsl2"]], "Installation": [[81, "installation"]], "Overview": [[81, "overview"]], "Install Guides": [[81, "install-guides"]], "Performance Testing": [[82, "performance-testing"]], "Argsort": [[82, "argsort"]], "Positional Arguments": [[82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"], [82, "positional-arguments"]], "Named Arguments": [[82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"], [82, "named-arguments"]], "Gather": [[82, "gather"]], "Reduce": [[82, "reduce"]], "Scan": [[82, "scan"]], "Scatter": [[82, "scatter"]], "Stream": [[82, "stream"]], "Usage Guide": [[83, "usage-guide"]], "Data I/O": [[84, "data-i-o"]], "Between client and server": [[84, "between-client-and-server"]], "Large Datasets": [[84, "large-datasets"]], "Supported File Formats": [[84, "supported-file-formats"]], "Data Preprocessing": [[84, "data-preprocessing"]], "Reading data from disk": [[84, "reading-data-from-disk"]], "Indexs in Arkouda": [[85, "indexs-in-arkouda"]], "Features": [[85, "features"], [91, "features"], [97, "features"]], "Change Dtype": [[85, "change-dtype"]], "ArgSort": [[85, "argsort"]], "Lookup": [[85, "lookup"], [97, "lookup"], [97, "id1"]], "Concat": [[85, "concat"]], "Sorting": [[86, "sorting"], [91, "sorting"], [97, "sorting"]], "Arithmetic and Numeric Operations": [[87, "arithmetic-and-numeric-operations"]], "Vector and Scalar Arithmetic": [[87, "vector-and-scalar-arithmetic"]], "Element-wise Functions": [[87, "element-wise-functions"]], "Scans": [[87, "scans"]], "Reductions": [[87, "reductions"]], "Where": [[87, "where"]], "ArrayView in Arkouda": [[88, "arrayview-in-arkouda"]], "Creation": [[88, "creation"]], "Indexing": [[88, "indexing"]], "Iteration": [[88, "iteration"], [89, "iteration"], [91, "iteration"], [95, "iteration"], [96, "iteration"], [100, "iteration"]], "Categoricals": [[89, "categoricals"]], "Construction": [[89, "construction"]], "Operations": [[89, "operations"], [100, "operations"]], "Creating Arrays": [[90, "creating-arrays"]], "Constant": [[90, "constant"]], "Regular": [[90, "regular"]], "Random": [[90, "random"]], "Concatenation": [[90, "concatenation"]], "DataFrames in Arkouda": [[91, "dataframes-in-arkouda"]], "Data Types": [[91, "data-types"]], "Drop": [[91, "drop"]], "Copy": [[91, "copy"]], "Filter": [[91, "filter"]], "Permutations": [[91, "permutations"]], "Tail/Head of Data": [[91, "tail-head-of-data"]], "Rename Columns": [[91, "rename-columns"]], "Append": [[91, "append"]], "Concatenate": [[91, "concatenate"]], "Reset Indexes": [[91, "reset-indexes"]], "Deduplication": [[91, "deduplication"], [96, "deduplication"]], "Summarizing Data": [[93, "summarizing-data"]], "Descriptive Statistics": [[93, "descriptive-statistics"]], "Histogram": [[93, "histogram"]], "Value Counts": [[93, "value-counts"], [97, "value-counts"]], "Indexing and Assignment": [[94, "indexing-and-assignment"]], "Integer": [[94, "integer"]], "Slice": [[94, "slice"]], "Gather/Scatter (pdarray)": [[94, "gather-scatter-pdarray"]], "Integer pdarray index": [[94, "integer-pdarray-index"]], "Logical indexing": [[94, "logical-indexing"]], "The pdarray class": [[95, "the-pdarray-class"]], "Data Type": [[95, "data-type"]], "Rank": [[95, "rank"]], "Name": [[95, "name"]], "Operators": [[95, "operators"]], "Type Casting": [[95, "type-casting"]], "Reshape": [[95, "reshape"]], "SegArrays in Arkouda": [[96, "segarrays-in-arkouda"]], "Performance": [[96, "performance"], [100, "performance"]], "Operation": [[96, "operation"]], "SegArray Specific Methods": [[96, "segarray-specific-methods"]], "Prefix & Suffix": [[96, "prefix-suffix"]], "NGrams": [[96, "ngrams"]], "Sub-array of Size": [[96, "sub-array-of-size"]], "Access/Set Specific Elements in Sub-Array": [[96, "access-set-specific-elements-in-sub-array"]], "Append & Prepend": [[96, "append-prepend"]], "SegArray SetOps": [[96, "segarray-setops"]], "Union": [[96, "union"]], "Intersect": [[96, "intersect"]], "Set Difference": [[96, "set-difference"]], "Symmetric Difference": [[96, "symmetric-difference"]], "Series in Arkouda": [[97, "series-in-arkouda"]], "Head/Tail": [[97, "head-tail"]], "Pandas Integration": [[97, "pandas-integration"]], "Array Set Operations": [[98, "array-set-operations"]], "Startup": [[99, "startup"]], "Launch arkouda server": [[99, "launch-arkouda-server"]], "Connect a Python 3 client": [[99, "connect-a-python-3-client"]], "Strings in Arkouda": [[100, "strings-in-arkouda"]], "I/O": [[100, "i-o"]], "String-Specific Methods": [[100, "string-specific-methods"]], "Substring search": [[100, "substring-search"]], "Splitting and joining": [[100, "splitting-and-joining"]], "Flattening": [[100, "flattening"]], "Regular Expressions": [[100, "regular-expressions"]], "Match Object": [[100, "match-object"]]}, "indexentries": {"cachedaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.CachedAccessor"]], "datetimeaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.DatetimeAccessor"]], "properties (class in arkouda.accessor)": [[2, "arkouda.accessor.Properties"]], "stringaccessor (class in arkouda.accessor)": [[2, "arkouda.accessor.StringAccessor"]], "arkouda.accessor": [[2, "module-arkouda.accessor"]], "date_operators() (in module arkouda.accessor)": [[2, "arkouda.accessor.date_operators"]], "module": [[2, "module-arkouda.accessor"], [3, "module-arkouda.akscipy._stats_py"], [4, "module-arkouda.akscipy"], [5, "module-arkouda.akscipy.special._math"], [6, "module-arkouda.akscipy.special"], [7, "module-arkouda.alignment"], [8, "module-arkouda.array_api._array_object"], [9, "module-arkouda.array_api._constants"], [10, "module-arkouda.array_api._creation_functions"], [11, "module-arkouda.array_api._data_type_functions"], [12, "module-arkouda.array_api._dtypes"], [13, "module-arkouda.array_api._elementwise_functions"], [14, "module-arkouda.array_api._indexing_functions"], [15, "module-arkouda.array_api._manipulation_functions"], [16, "module-arkouda.array_api._searching_functions"], [17, "module-arkouda.array_api._set_functions"], [18, "module-arkouda.array_api._sorting_functions"], [19, "module-arkouda.array_api._statistical_functions"], [20, "module-arkouda.array_api._typing"], [21, "module-arkouda.array_api._utility_functions"], [22, "module-arkouda.array_api"], [23, "module-arkouda.array_api.linalg"], [24, "module-arkouda.array_view"], [25, "module-arkouda.categorical"], [26, "module-arkouda.client"], [27, "module-arkouda.client_dtypes"], [28, "module-arkouda.dataframe"], [29, "module-arkouda.dtypes"], [30, "module-arkouda.groupbyclass"], [31, "module-arkouda.history"], [32, "module-arkouda"], [33, "module-arkouda.index"], [34, "module-arkouda.infoclass"], [35, "module-arkouda.io"], [36, "module-arkouda.io_util"], [37, "module-arkouda.join"], [38, "module-arkouda.logger"], [39, "module-arkouda.match"], [40, "module-arkouda.matcher"], [41, "module-arkouda.numeric"], [42, "module-arkouda.pdarrayclass"], [43, "module-arkouda.pdarraycreation"], [44, "module-arkouda.pdarraysetops"], [45, "module-arkouda.plotting"], [46, "module-arkouda.random._generator"], [47, "module-arkouda.random._legacy"], [48, "module-arkouda.random"], [49, "module-arkouda.row"], [50, "module-arkouda.security"], [51, "module-arkouda.segarray"], [52, "module-arkouda.series"], [53, "module-arkouda.sorting"], [54, "module-arkouda.strings"], [55, "module-arkouda.timeclass"], [56, "module-arkouda.util"]], "string_operators() (in module arkouda.accessor)": [[2, "arkouda.accessor.string_operators"]], "power_divergenceresult (class in arkouda.akscipy._stats_py)": [[3, "arkouda.akscipy._stats_py.Power_divergenceResult"]], "arkouda.akscipy._stats_py": [[3, "module-arkouda.akscipy._stats_py"]], "chisquare() (in module arkouda.akscipy._stats_py)": [[3, "arkouda.akscipy._stats_py.chisquare"]], "power_divergence() (in module arkouda.akscipy._stats_py)": [[3, "arkouda.akscipy._stats_py.power_divergence"]], "pvalue (arkouda.akscipy._stats_py.power_divergenceresult attribute)": [[3, "arkouda.akscipy._stats_py.Power_divergenceResult.pvalue"]], "statistic (arkouda.akscipy._stats_py.power_divergenceresult attribute)": [[3, "arkouda.akscipy._stats_py.Power_divergenceResult.statistic"]], "power_divergenceresult (class in arkouda.akscipy)": [[4, "arkouda.akscipy.Power_divergenceResult"]], "arkouda.akscipy": [[4, "module-arkouda.akscipy"]], "chisquare() (in module arkouda.akscipy)": [[4, "arkouda.akscipy.chisquare"]], "power_divergence() (in module arkouda.akscipy)": [[4, "arkouda.akscipy.power_divergence"]], "pvalue (arkouda.akscipy.power_divergenceresult attribute)": [[4, "arkouda.akscipy.Power_divergenceResult.pvalue"]], "statistic (arkouda.akscipy.power_divergenceresult attribute)": [[4, "arkouda.akscipy.Power_divergenceResult.statistic"]], "arkouda.akscipy.special._math": [[5, "module-arkouda.akscipy.special._math"]], "xlogy() (in module arkouda.akscipy.special._math)": [[5, "arkouda.akscipy.special._math.xlogy"]], "arkouda.akscipy.special": [[6, "module-arkouda.akscipy.special"]], "xlogy() (in module arkouda.akscipy.special)": [[6, "arkouda.akscipy.special.xlogy"]], "nonuniqueerror": [[7, "arkouda.alignment.NonUniqueError"], [32, "arkouda.NonUniqueError"]], "align() (in module arkouda.alignment)": [[7, "arkouda.alignment.align"]], "arkouda.alignment": [[7, "module-arkouda.alignment"]], "find() (in module arkouda.alignment)": [[7, "arkouda.alignment.find"]], "in1d_intervals() (in module arkouda.alignment)": [[7, "arkouda.alignment.in1d_intervals"]], "interval_lookup() (in module arkouda.alignment)": [[7, "arkouda.alignment.interval_lookup"]], "is_cosorted() (in module arkouda.alignment)": [[7, "arkouda.alignment.is_cosorted"]], "left_align() (in module arkouda.alignment)": [[7, "arkouda.alignment.left_align"]], "lookup() (in module arkouda.alignment)": [[7, "arkouda.alignment.lookup"]], "right_align() (in module arkouda.alignment)": [[7, "arkouda.alignment.right_align"]], "search_intervals() (in module arkouda.alignment)": [[7, "arkouda.alignment.search_intervals"]], "unsqueeze() (in module arkouda.alignment)": [[7, "arkouda.alignment.unsqueeze"]], "zero_up() (in module arkouda.alignment)": [[7, "arkouda.alignment.zero_up"]], "array (class in arkouda.array_api._array_object)": [[8, "arkouda.array_api._array_object.Array"]], "t (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.T"]], "arkouda.array_api._array_object": [[8, "module-arkouda.array_api._array_object"]], "device (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.device"]], "dtype (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.dtype"]], "mt (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.mT"]], "ndim (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.ndim"]], "shape (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.shape"]], "size (arkouda.array_api._array_object.array property)": [[8, "arkouda.array_api._array_object.Array.size"]], "to_device() (arkouda.array_api._array_object.array method)": [[8, "arkouda.array_api._array_object.Array.to_device"]], "to_ndarray() (arkouda.array_api._array_object.array method)": [[8, "arkouda.array_api._array_object.Array.to_ndarray"]], "tolist() (arkouda.array_api._array_object.array method)": [[8, "arkouda.array_api._array_object.Array.tolist"]], "arkouda.array_api._constants": [[9, "module-arkouda.array_api._constants"]], "e (in module arkouda.array_api._constants)": [[9, "arkouda.array_api._constants.e"]], "inf (in module arkouda.array_api._constants)": [[9, "arkouda.array_api._constants.inf"]], "nan (in module arkouda.array_api._constants)": [[9, "arkouda.array_api._constants.nan"]], "pi (in module arkouda.array_api._constants)": [[9, "arkouda.array_api._constants.pi"]], "arange() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.arange"]], "arkouda.array_api._creation_functions": [[10, "module-arkouda.array_api._creation_functions"]], "asarray() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.asarray"]], "empty() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.empty"]], "empty_like() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.empty_like"]], "eye() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.eye"]], "from_dlpack() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.from_dlpack"]], "full() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.full"]], "full_like() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.full_like"]], "linspace() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.linspace"]], "meshgrid() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.meshgrid"]], "ones() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.ones"]], "ones_like() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.ones_like"]], "tril() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.tril"]], "triu() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.triu"]], "zeros() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.zeros"]], "zeros_like() (in module arkouda.array_api._creation_functions)": [[10, "arkouda.array_api._creation_functions.zeros_like"]], "arkouda.array_api._data_type_functions": [[11, "module-arkouda.array_api._data_type_functions"]], "astype() (in module arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.astype"]], "bits (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.bits"]], "bits (arkouda.array_api._data_type_functions.iinfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.iinfo_object.bits"]], "can_cast() (in module arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.can_cast"]], "dtype (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.dtype"]], "dtype (arkouda.array_api._data_type_functions.iinfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.iinfo_object.dtype"]], "eps (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.eps"]], "finfo_object (class in arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.finfo_object"]], "iinfo_object (class in arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.iinfo_object"]], "isdtype() (in module arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.isdtype"]], "max (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.max"]], "max (arkouda.array_api._data_type_functions.iinfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.iinfo_object.max"]], "min (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.min"]], "min (arkouda.array_api._data_type_functions.iinfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.iinfo_object.min"]], "result_type() (in module arkouda.array_api._data_type_functions)": [[11, "arkouda.array_api._data_type_functions.result_type"]], "smallest_normal (arkouda.array_api._data_type_functions.finfo_object attribute)": [[11, "arkouda.array_api._data_type_functions.finfo_object.smallest_normal"]], "arkouda.array_api._dtypes": [[12, "module-arkouda.array_api._dtypes"]], "bool (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.bool"]], "complex128 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.complex128"]], "complex64 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.complex64"]], "float32 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.float32"]], "float64 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.float64"]], "int16 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.int16"]], "int32 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.int32"]], "int64 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.int64"]], "int8 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.int8"]], "uint16 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.uint16"]], "uint32 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.uint32"]], "uint64 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.uint64"]], "uint8 (in module arkouda.array_api._dtypes)": [[12, "arkouda.array_api._dtypes.uint8"]], "abs() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.abs"]], "acos() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.acos"]], "acosh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.acosh"]], "add() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.add"]], "arkouda.array_api._elementwise_functions": [[13, "module-arkouda.array_api._elementwise_functions"]], "asin() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.asin"]], "asinh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.asinh"]], "atan() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.atan"]], "atan2() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.atan2"]], "atanh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.atanh"]], "bitwise_and() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_and"]], "bitwise_invert() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_invert"]], "bitwise_left_shift() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_left_shift"]], "bitwise_or() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_or"]], "bitwise_right_shift() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_right_shift"]], "bitwise_xor() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.bitwise_xor"]], "ceil() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.ceil"]], "conj() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.conj"]], "cos() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.cos"]], "cosh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.cosh"]], "divide() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.divide"]], "equal() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.equal"]], "exp() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.exp"]], "expm1() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.expm1"]], "floor() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.floor"]], "floor_divide() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.floor_divide"]], "greater() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.greater"]], "greater_equal() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.greater_equal"]], "imag() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.imag"]], "isfinite() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.isfinite"]], "isinf() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.isinf"]], "isnan() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.isnan"]], "less() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.less"]], "less_equal() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.less_equal"]], "log() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.log"]], "log10() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.log10"]], "log1p() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.log1p"]], "log2() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.log2"]], "logaddexp() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logaddexp"]], "logical_and() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logical_and"]], "logical_not() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logical_not"]], "logical_or() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logical_or"]], "logical_xor() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.logical_xor"]], "multiply() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.multiply"]], "negative() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.negative"]], "not_equal() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.not_equal"]], "positive() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.positive"]], "pow() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.pow"]], "real() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.real"]], "remainder() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.remainder"]], "round() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.round"]], "sign() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.sign"]], "sin() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.sin"]], "sinh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.sinh"]], "sqrt() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.sqrt"]], "square() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.square"]], "subtract() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.subtract"]], "tan() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.tan"]], "tanh() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.tanh"]], "trunc() (in module arkouda.array_api._elementwise_functions)": [[13, "arkouda.array_api._elementwise_functions.trunc"]], "arkouda.array_api._indexing_functions": [[14, "module-arkouda.array_api._indexing_functions"]], "take() (in module arkouda.array_api._indexing_functions)": [[14, "arkouda.array_api._indexing_functions.take"]], "arkouda.array_api._manipulation_functions": [[15, "module-arkouda.array_api._manipulation_functions"]], "broadcast_arrays() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.broadcast_arrays"]], "broadcast_to() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.broadcast_to"]], "concat() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.concat"]], "expand_dims() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.expand_dims"]], "flip() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.flip"]], "permute_dims() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.permute_dims"]], "reshape() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.reshape"]], "roll() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.roll"]], "squeeze() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.squeeze"]], "stack() (in module arkouda.array_api._manipulation_functions)": [[15, "arkouda.array_api._manipulation_functions.stack"]], "argmax() (in module arkouda.array_api._searching_functions)": [[16, "arkouda.array_api._searching_functions.argmax"]], "argmin() (in module arkouda.array_api._searching_functions)": [[16, "arkouda.array_api._searching_functions.argmin"]], "arkouda.array_api._searching_functions": [[16, "module-arkouda.array_api._searching_functions"]], "nonzero() (in module arkouda.array_api._searching_functions)": [[16, "arkouda.array_api._searching_functions.nonzero"]], "where() (in module arkouda.array_api._searching_functions)": [[16, "arkouda.array_api._searching_functions.where"]], "uniqueallresult (class in arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.UniqueAllResult"]], "uniquecountsresult (class in arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.UniqueCountsResult"]], "uniqueinverseresult (class in arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.UniqueInverseResult"]], "arkouda.array_api._set_functions": [[17, "module-arkouda.array_api._set_functions"]], "counts (arkouda.array_api._set_functions.uniqueallresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueAllResult.counts"]], "counts (arkouda.array_api._set_functions.uniquecountsresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueCountsResult.counts"]], "indices (arkouda.array_api._set_functions.uniqueallresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueAllResult.indices"]], "inverse_indices (arkouda.array_api._set_functions.uniqueallresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueAllResult.inverse_indices"]], "inverse_indices (arkouda.array_api._set_functions.uniqueinverseresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueInverseResult.inverse_indices"]], "unique_all() (in module arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.unique_all"]], "unique_counts() (in module arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.unique_counts"]], "unique_inverse() (in module arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.unique_inverse"]], "unique_values() (in module arkouda.array_api._set_functions)": [[17, "arkouda.array_api._set_functions.unique_values"]], "values (arkouda.array_api._set_functions.uniqueallresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueAllResult.values"]], "values (arkouda.array_api._set_functions.uniquecountsresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueCountsResult.values"]], "values (arkouda.array_api._set_functions.uniqueinverseresult attribute)": [[17, "arkouda.array_api._set_functions.UniqueInverseResult.values"]], "argsort() (in module arkouda.array_api._sorting_functions)": [[18, "arkouda.array_api._sorting_functions.argsort"]], "arkouda.array_api._sorting_functions": [[18, "module-arkouda.array_api._sorting_functions"]], "sort() (in module arkouda.array_api._sorting_functions)": [[18, "arkouda.array_api._sorting_functions.sort"]], "arkouda.array_api._statistical_functions": [[19, "module-arkouda.array_api._statistical_functions"]], "max() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.max"]], "mean() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.mean"]], "min() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.min"]], "prod() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.prod"]], "prod_sum_dtype() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.prod_sum_dtype"]], "std() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.std"]], "sum() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.sum"]], "var() (in module arkouda.array_api._statistical_functions)": [[19, "arkouda.array_api._statistical_functions.var"]], "array (class in arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.Array"]], "device (in module arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.Device"]], "dtype (in module arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.Dtype"]], "pycapsule (in module arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.PyCapsule"]], "supportsbufferprotocol (in module arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.SupportsBufferProtocol"]], "supportsdlpack (class in arkouda.array_api._typing)": [[20, "arkouda.array_api._typing.SupportsDLPack"]], "t (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.T"]], "arkouda.array_api._typing": [[20, "module-arkouda.array_api._typing"]], "device (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.device"]], "dtype (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.dtype"]], "mt (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.mT"]], "ndim (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.ndim"]], "shape (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.shape"]], "size (arkouda.array_api._typing.array property)": [[20, "arkouda.array_api._typing.Array.size"]], "to_device() (arkouda.array_api._typing.array method)": [[20, "arkouda.array_api._typing.Array.to_device"]], "to_ndarray() (arkouda.array_api._typing.array method)": [[20, "arkouda.array_api._typing.Array.to_ndarray"]], "tolist() (arkouda.array_api._typing.array method)": [[20, "arkouda.array_api._typing.Array.tolist"]], "all() (in module arkouda.array_api._utility_functions)": [[21, "arkouda.array_api._utility_functions.all"]], "any() (in module arkouda.array_api._utility_functions)": [[21, "arkouda.array_api._utility_functions.any"]], "arkouda.array_api._utility_functions": [[21, "module-arkouda.array_api._utility_functions"]], "arkouda.array_api": [[22, "module-arkouda.array_api"]], "arkouda.array_api.linalg": [[23, "module-arkouda.array_api.linalg"]], "matmul() (in module arkouda.array_api.linalg)": [[23, "arkouda.array_api.linalg.matmul"]], "matrix_transpose() (in module arkouda.array_api.linalg)": [[23, "arkouda.array_api.linalg.matrix_transpose"]], "tensordot() (in module arkouda.array_api.linalg)": [[23, "arkouda.array_api.linalg.tensordot"]], "vecdot() (in module arkouda.array_api.linalg)": [[23, "arkouda.array_api.linalg.vecdot"]], "arrayview (class in arkouda.array_view)": [[24, "arkouda.array_view.ArrayView"]], "arkouda.array_view": [[24, "module-arkouda.array_view"]], "base (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.base"]], "dtype (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.dtype"]], "itemsize (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.itemsize"]], "ndim (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.ndim"]], "objtype (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.objType"]], "order (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.order"]], "shape (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.shape"]], "size (arkouda.array_view.arrayview attribute)": [[24, "arkouda.array_view.ArrayView.size"]], "to_hdf() (arkouda.array_view.arrayview method)": [[24, "arkouda.array_view.ArrayView.to_hdf"]], "to_list() (arkouda.array_view.arrayview method)": [[24, "arkouda.array_view.ArrayView.to_list"]], "to_ndarray() (arkouda.array_view.arrayview method)": [[24, "arkouda.array_view.ArrayView.to_ndarray"]], "update_hdf() (arkouda.array_view.arrayview method)": [[24, "arkouda.array_view.ArrayView.update_hdf"]], "binops (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.BinOps"]], "categorical (class in arkouda.categorical)": [[25, "arkouda.categorical.Categorical"]], "registerablepieces (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.RegisterablePieces"]], "requiredpieces (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.RequiredPieces"]], "argsort() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.argsort"]], "arkouda.categorical": [[25, "module-arkouda.categorical"]], "attach() (arkouda.categorical.categorical static method)": [[25, "arkouda.categorical.Categorical.attach"]], "categories (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.categories"]], "codes (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.codes"]], "concatenate() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.concatenate"]], "contains() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.contains"]], "dtype (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.dtype"]], "endswith() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.endswith"]], "from_codes() (arkouda.categorical.categorical class method)": [[25, "arkouda.categorical.Categorical.from_codes"]], "from_return_msg() (arkouda.categorical.categorical class method)": [[25, "arkouda.categorical.Categorical.from_return_msg"]], "group() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.group"]], "hash() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.hash"]], "in1d() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.in1d"]], "info() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.info"]], "is_registered() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.is_registered"]], "isna() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.isna"]], "nbytes (arkouda.categorical.categorical property)": [[25, "arkouda.categorical.Categorical.nbytes"]], "ndim (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.ndim"]], "nlevels (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.nlevels"]], "objtype (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.objType"]], "parse_hdf_categoricals() (arkouda.categorical.categorical static method)": [[25, "arkouda.categorical.Categorical.parse_hdf_categoricals"]], "permutation (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.permutation"], [25, "id0"]], "pretty_print_info() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.pretty_print_info"]], "register() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.register"]], "reset_categories() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.reset_categories"]], "save() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.save"]], "segments (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.segments"], [25, "id1"]], "set_categories() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.set_categories"]], "shape (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.shape"]], "size (arkouda.categorical.categorical attribute)": [[25, "arkouda.categorical.Categorical.size"]], "sort() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.sort"]], "standardize_categories() (arkouda.categorical.categorical class method)": [[25, "arkouda.categorical.Categorical.standardize_categories"]], "startswith() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.startswith"]], "to_hdf() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_hdf"]], "to_list() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_list"]], "to_ndarray() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_ndarray"]], "to_parquet() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_parquet"]], "to_strings() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.to_strings"]], "transfer() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.transfer"]], "unique() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.unique"]], "unregister() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.unregister"]], "unregister_categorical_by_name() (arkouda.categorical.categorical static method)": [[25, "arkouda.categorical.Categorical.unregister_categorical_by_name"]], "update_hdf() (arkouda.categorical.categorical method)": [[25, "arkouda.categorical.Categorical.update_hdf"]], "arkouda.client": [[26, "module-arkouda.client"]], "connect() (in module arkouda.client)": [[26, "arkouda.client.connect"]], "disconnect() (in module arkouda.client)": [[26, "arkouda.client.disconnect"]], "generate_history() (in module arkouda.client)": [[26, "arkouda.client.generate_history"]], "get_config() (in module arkouda.client)": [[26, "arkouda.client.get_config"]], "get_mem_avail() (in module arkouda.client)": [[26, "arkouda.client.get_mem_avail"]], "get_mem_status() (in module arkouda.client)": [[26, "arkouda.client.get_mem_status"]], "get_mem_used() (in module arkouda.client)": [[26, "arkouda.client.get_mem_used"]], "get_server_commands() (in module arkouda.client)": [[26, "arkouda.client.get_server_commands"]], "print_server_commands() (in module arkouda.client)": [[26, "arkouda.client.print_server_commands"]], "ruok() (in module arkouda.client)": [[26, "arkouda.client.ruok"]], "shutdown() (in module arkouda.client)": [[26, "arkouda.client.shutdown"]], "bitvector (class in arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.BitVector"]], "bitvectorizer() (in module arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.BitVectorizer"]], "fields (class in arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.Fields"]], "ipv4 (class in arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.IPv4"]], "arkouda.client_dtypes": [[27, "module-arkouda.client_dtypes"]], "conserves (arkouda.client_dtypes.bitvector attribute)": [[27, "arkouda.client_dtypes.BitVector.conserves"]], "export_uint() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.export_uint"]], "format() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.format"]], "format() (arkouda.client_dtypes.fields method)": [[27, "arkouda.client_dtypes.Fields.format"]], "format() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.format"]], "from_return_msg() (arkouda.client_dtypes.bitvector class method)": [[27, "arkouda.client_dtypes.BitVector.from_return_msg"]], "ip_address() (in module arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.ip_address"]], "is_ipv4() (in module arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.is_ipv4"]], "is_ipv6() (in module arkouda.client_dtypes)": [[27, "arkouda.client_dtypes.is_ipv6"]], "normalize() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.normalize"]], "opeq() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.opeq"]], "opeq() (arkouda.client_dtypes.fields method)": [[27, "arkouda.client_dtypes.Fields.opeq"]], "opeq() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.opeq"]], "register() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.register"]], "register() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.register"]], "special_objtype (arkouda.client_dtypes.bitvector attribute)": [[27, "arkouda.client_dtypes.BitVector.special_objType"]], "special_objtype (arkouda.client_dtypes.ipv4 attribute)": [[27, "arkouda.client_dtypes.IPv4.special_objType"]], "to_hdf() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.to_hdf"]], "to_list() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.to_list"]], "to_list() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.to_list"]], "to_ndarray() (arkouda.client_dtypes.bitvector method)": [[27, "arkouda.client_dtypes.BitVector.to_ndarray"]], "to_ndarray() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.to_ndarray"]], "update_hdf() (arkouda.client_dtypes.ipv4 method)": [[27, "arkouda.client_dtypes.IPv4.update_hdf"]], "dataframe (class in arkouda.dataframe)": [[28, "arkouda.dataframe.DataFrame"]], "diffaggregate (class in arkouda.dataframe)": [[28, "arkouda.dataframe.DiffAggregate"]], "groupby() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.GroupBy"], [28, "arkouda.dataframe.DataFrame.groupby"]], "append() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.append"]], "apply_permutation() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.apply_permutation"]], "argsort() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.argsort"]], "arkouda.dataframe": [[28, "module-arkouda.dataframe"]], "attach() (arkouda.dataframe.dataframe static method)": [[28, "arkouda.dataframe.DataFrame.attach"]], "coargsort() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.coargsort"]], "columns (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.columns"]], "concat() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.concat"]], "copy() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.copy"]], "corr() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.corr"]], "drop() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.drop"]], "drop_duplicates() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.drop_duplicates"]], "dtypes (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.dtypes"]], "empty (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.empty"]], "filter_by_range() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.filter_by_range"]], "from_pandas() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.from_pandas"]], "from_return_msg() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.from_return_msg"]], "gb (arkouda.dataframe.diffaggregate attribute)": [[28, "arkouda.dataframe.DiffAggregate.gb"]], "head() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.head"]], "index (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.index"]], "info (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.info"]], "intersect() (in module arkouda.dataframe)": [[28, "arkouda.dataframe.intersect"]], "intx() (in module arkouda.dataframe)": [[28, "arkouda.dataframe.intx"]], "invert_permutation() (in module arkouda.dataframe)": [[28, "arkouda.dataframe.invert_permutation"]], "is_registered() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.is_registered"]], "isin() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.isin"]], "load() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.load"]], "memory_usage() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.memory_usage"]], "memory_usage_info() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.memory_usage_info"]], "merge() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.merge"]], "merge() (in module arkouda.dataframe)": [[28, "arkouda.dataframe.merge"]], "objtype (arkouda.dataframe.dataframe attribute)": [[28, "arkouda.dataframe.DataFrame.objType"]], "read_csv() (arkouda.dataframe.dataframe class method)": [[28, "arkouda.dataframe.DataFrame.read_csv"]], "register() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.register"]], "rename() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.rename"]], "reset_index() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.reset_index"]], "sample() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.sample"]], "save() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.save"]], "shape (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.shape"]], "size (arkouda.dataframe.dataframe property)": [[28, "arkouda.dataframe.DataFrame.size"]], "sort_index() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.sort_index"]], "sort_values() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.sort_values"]], "tail() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.tail"]], "to_csv() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_csv"]], "to_hdf() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_hdf"]], "to_markdown() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_markdown"]], "to_pandas() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_pandas"]], "to_parquet() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.to_parquet"]], "transfer() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.transfer"]], "unregister() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.unregister"]], "unregister_dataframe_by_name() (arkouda.dataframe.dataframe static method)": [[28, "arkouda.dataframe.DataFrame.unregister_dataframe_by_name"]], "update_hdf() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.update_hdf"]], "update_nrows() (arkouda.dataframe.dataframe method)": [[28, "arkouda.dataframe.DataFrame.update_nrows"]], "values (arkouda.dataframe.diffaggregate attribute)": [[28, "arkouda.dataframe.DiffAggregate.values"]], "arkouda_supported_dtypes (in module arkouda.dtypes)": [[29, "arkouda.dtypes.ARKOUDA_SUPPORTED_DTYPES"]], "dtypeobjects (in module arkouda.dtypes)": [[29, "arkouda.dtypes.DTypeObjects"]], "dtypes (in module arkouda.dtypes)": [[29, "arkouda.dtypes.DTypes"]], "scalardtypes (in module arkouda.dtypes)": [[29, "arkouda.dtypes.ScalarDTypes"]], "all_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.all_scalars"]], "arkouda.dtypes": [[29, "module-arkouda.dtypes"]], "bigint (in module arkouda.dtypes)": [[29, "arkouda.dtypes.bigint"]], "bittype (in module arkouda.dtypes)": [[29, "arkouda.dtypes.bitType"]], "bool (in module arkouda.dtypes)": [[29, "arkouda.dtypes.bool"]], "bool_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.bool_scalars"]], "check_np_dtype() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.check_np_dtype"]], "complex128 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.complex128"]], "complex64 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.complex64"]], "dtype() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.dtype"]], "float32 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.float32"]], "float64 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.float64"]], "float_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.float_scalars"]], "get_byteorder() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.get_byteorder"]], "get_server_byteorder() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.get_server_byteorder"]], "int16 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int16"]], "int32 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int32"]], "int64 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int64"]], "int8 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int8"]], "inttypes (in module arkouda.dtypes)": [[29, "arkouda.dtypes.intTypes"]], "int_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.int_scalars"]], "issupportednumber() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.isSupportedNumber"]], "numeric_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.numeric_scalars"]], "numpy_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.numpy_scalars"]], "resolve_scalar_dtype() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.resolve_scalar_dtype"]], "str_ (in module arkouda.dtypes)": [[29, "arkouda.dtypes.str_"]], "str_scalars (in module arkouda.dtypes)": [[29, "arkouda.dtypes.str_scalars"]], "translate_np_dtype() (in module arkouda.dtypes)": [[29, "arkouda.dtypes.translate_np_dtype"]], "uint16 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.uint16"]], "uint32 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.uint32"]], "uint64 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.uint64"]], "uint8 (in module arkouda.dtypes)": [[29, "arkouda.dtypes.uint8"]], "and() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.AND"]], "groupby_reduction_types (in module arkouda.groupbyclass)": [[30, "arkouda.groupbyclass.GROUPBY_REDUCTION_TYPES"]], "groupby (class in arkouda.groupbyclass)": [[30, "arkouda.groupbyclass.GroupBy"]], "or() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.OR"]], "reductions (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.Reductions"]], "xor() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.XOR"]], "aggregate() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.aggregate"]], "all() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.all"]], "any() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.any"]], "argmax() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.argmax"]], "argmin() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.argmin"]], "arkouda.groupbyclass": [[30, "module-arkouda.groupbyclass"]], "attach() (arkouda.groupbyclass.groupby static method)": [[30, "arkouda.groupbyclass.GroupBy.attach"]], "broadcast() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.broadcast"]], "broadcast() (in module arkouda.groupbyclass)": [[30, "arkouda.groupbyclass.broadcast"]], "build_from_components() (arkouda.groupbyclass.groupby static method)": [[30, "arkouda.groupbyclass.GroupBy.build_from_components"]], "count() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.count"]], "dropna (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.dropna"]], "first() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.first"]], "from_return_msg() (arkouda.groupbyclass.groupby static method)": [[30, "arkouda.groupbyclass.GroupBy.from_return_msg"]], "is_registered() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.is_registered"]], "logger (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.logger"]], "max() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.max"]], "mean() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.mean"]], "median() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.median"]], "min() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.min"]], "mode() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.mode"]], "most_common() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.most_common"]], "ngroups (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.ngroups"]], "nkeys (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.nkeys"]], "nunique() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.nunique"]], "objtype (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.objType"]], "permutation (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.permutation"]], "prod() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.prod"]], "register() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.register"]], "segments (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.segments"]], "size (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.size"]], "size() (arkouda.groupbyclass.groupby method)": [[30, "id0"]], "std() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.std"]], "sum() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.sum"]], "to_hdf() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.to_hdf"]], "unique() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.unique"]], "unique() (in module arkouda.groupbyclass)": [[30, "arkouda.groupbyclass.unique"]], "unique_keys (arkouda.groupbyclass.groupby attribute)": [[30, "arkouda.groupbyclass.GroupBy.unique_keys"]], "unregister() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.unregister"]], "unregister_groupby_by_name() (arkouda.groupbyclass.groupby static method)": [[30, "arkouda.groupbyclass.GroupBy.unregister_groupby_by_name"]], "update_hdf() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.update_hdf"]], "var() (arkouda.groupbyclass.groupby method)": [[30, "arkouda.groupbyclass.GroupBy.var"]], "historyretriever (class in arkouda.history)": [[31, "arkouda.history.HistoryRetriever"]], "notebookhistoryretriever (class in arkouda.history)": [[31, "arkouda.history.NotebookHistoryRetriever"]], "shellhistoryretriever (class in arkouda.history)": [[31, "arkouda.history.ShellHistoryRetriever"]], "arkouda.history": [[31, "module-arkouda.history"]], "retrieve() (arkouda.history.historyretriever method)": [[31, "arkouda.history.HistoryRetriever.retrieve"]], "retrieve() (arkouda.history.notebookhistoryretriever method)": [[31, "arkouda.history.NotebookHistoryRetriever.retrieve"]], "retrieve() (arkouda.history.shellhistoryretriever method)": [[31, "arkouda.history.ShellHistoryRetriever.retrieve"]], "and() (arkouda.groupby method)": [[32, "arkouda.GroupBy.AND"], [32, "id228"], [32, "id272"], [32, "id316"], [32, "id360"], [92, "arkouda.GroupBy.AND"]], "arkouda_supported_dtypes (in module arkouda)": [[32, "arkouda.ARKOUDA_SUPPORTED_DTYPES"]], "allsymbols (in module arkouda)": [[32, "arkouda.AllSymbols"]], "arrayview (class in arkouda)": [[32, "arkouda.ArrayView"], [88, "arkouda.ArrayView"]], "binops (arkouda.categorical attribute)": [[32, "arkouda.Categorical.BinOps"], [32, "id12"], [32, "id61"]], "binops (arkouda.strings attribute)": [[32, "arkouda.Strings.BinOps"], [32, "id406"], [32, "id474"], [32, "id542"]], "binops (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.BinOps"], [32, "id673"], [32, "id734"], [32, "id795"], [32, "id856"]], "bitvector (class in arkouda)": [[32, "arkouda.BitVector"]], "bitvectorizer() (in module arkouda)": [[32, "arkouda.BitVectorizer"]], "critical (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.CRITICAL"]], "cachedaccessor (class in arkouda)": [[32, "arkouda.CachedAccessor"]], "categorical (class in arkouda)": [[32, "arkouda.Categorical"], [32, "id2"], [32, "id51"], [89, "arkouda.Categorical"]], "debug (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.DEBUG"]], "dtypeobjects (in module arkouda)": [[32, "arkouda.DTypeObjects"]], "dtypes (in module arkouda)": [[32, "arkouda.DTypes"]], "dataframe (class in arkouda)": [[32, "arkouda.DataFrame"], [32, "id100"], [91, "arkouda.DataFrame"]], "datetime (class in arkouda)": [[32, "arkouda.Datetime"], [32, "id150"], [32, "id183"]], "datetimeaccessor (class in arkouda)": [[32, "arkouda.DatetimeAccessor"]], "diffaggregate (class in arkouda)": [[32, "arkouda.DiffAggregate"]], "error (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.ERROR"]], "errormode (class in arkouda)": [[32, "arkouda.ErrorMode"]], "fields (class in arkouda)": [[32, "arkouda.Fields"]], "groupby_reduction_types (in module arkouda)": [[32, "arkouda.GROUPBY_REDUCTION_TYPES"]], "generator (class in arkouda)": [[32, "arkouda.Generator"]], "groupby (class in arkouda)": [[32, "arkouda.GroupBy"], [32, "id217"], [32, "id261"], [32, "id305"], [32, "id349"], [92, "arkouda.GroupBy"]], "groupby() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.GroupBy"], [32, "id109"], [32, "arkouda.DataFrame.groupby"], [32, "id123"]], "info (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.INFO"]], "ipv4 (class in arkouda)": [[32, "arkouda.IPv4"]], "index (class in arkouda)": [[32, "arkouda.Index"], [85, "arkouda.Index"]], "loglevel (class in arkouda)": [[32, "arkouda.LogLevel"]], "multiindex (class in arkouda)": [[32, "arkouda.MultiIndex"]], "or() (arkouda.groupby method)": [[32, "arkouda.GroupBy.OR"], [32, "id229"], [32, "id273"], [32, "id317"], [32, "id361"], [92, "arkouda.GroupBy.OR"]], "opeqops (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.OpEqOps"], [32, "id674"], [32, "id735"], [32, "id796"], [32, "id857"]], "power_divergenceresult (class in arkouda)": [[32, "arkouda.Power_divergenceResult"]], "properties (class in arkouda)": [[32, "arkouda.Properties"]], "reductions (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.Reductions"], [32, "id226"], [32, "id270"], [32, "id314"], [32, "id358"]], "registerablepieces (arkouda.categorical attribute)": [[32, "arkouda.Categorical.RegisterablePieces"], [32, "id13"], [32, "id62"]], "registeredsymbols (in module arkouda)": [[32, "arkouda.RegisteredSymbols"]], "registrationerror": [[32, "arkouda.RegistrationError"], [32, "id395"], [32, "id396"], [32, "id397"], [42, "arkouda.pdarrayclass.RegistrationError"]], "requiredpieces (arkouda.categorical attribute)": [[32, "arkouda.Categorical.RequiredPieces"], [32, "id14"], [32, "id63"]], "row (class in arkouda)": [[32, "arkouda.Row"]], "scalardtypes (in module arkouda)": [[32, "arkouda.ScalarDTypes"]], "series (class in arkouda)": [[32, "arkouda.Series"], [97, "arkouda.Series"]], "stringaccessor (class in arkouda)": [[32, "arkouda.StringAccessor"]], "strings (class in arkouda)": [[32, "arkouda.Strings"], [32, "id398"], [32, "id466"], [32, "id534"]], "timedelta (class in arkouda)": [[32, "arkouda.Timedelta"], [32, "id602"]], "warn (arkouda.loglevel attribute)": [[32, "arkouda.LogLevel.WARN"]], "xor() (arkouda.groupby method)": [[32, "arkouda.GroupBy.XOR"], [32, "id230"], [32, "id274"], [32, "id318"], [32, "id362"], [92, "arkouda.GroupBy.XOR"]], "abs() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.abs"], [32, "id616"]], "abs() (in module arkouda)": [[32, "arkouda.abs"], [87, "arkouda.abs"]], "add() (arkouda.series method)": [[32, "arkouda.Series.add"]], "aggregate() (arkouda.groupby method)": [[32, "arkouda.GroupBy.aggregate"], [32, "id231"], [32, "id275"], [32, "id319"], [32, "id363"], [92, "arkouda.GroupBy.aggregate"]], "akabs() (in module arkouda)": [[32, "arkouda.akabs"]], "akbool (in module arkouda)": [[32, "arkouda.akbool"]], "akcast() (in module arkouda)": [[32, "arkouda.akcast"], [32, "id624"]], "akfloat64 (in module arkouda)": [[32, "arkouda.akfloat64"], [32, "id625"]], "akint64 (in module arkouda)": [[32, "arkouda.akint64"], [32, "id626"]], "akuint64 (in module arkouda)": [[32, "arkouda.akuint64"], [32, "id627"]], "align() (in module arkouda)": [[32, "arkouda.align"]], "all() (arkouda.groupby method)": [[32, "arkouda.GroupBy.all"], [32, "id232"], [32, "id276"], [32, "id320"], [32, "id364"], [92, "arkouda.GroupBy.all"]], "all() (arkouda.pdarray method)": [[32, "arkouda.pdarray.all"], [32, "id676"], [32, "id737"], [32, "id798"], [32, "id859"], [93, "arkouda.pdarray.all"]], "all() (in module arkouda)": [[32, "arkouda.all"], [87, "arkouda.all"]], "all_scalars (in module arkouda)": [[32, "arkouda.all_scalars"]], "any() (arkouda.groupby method)": [[32, "arkouda.GroupBy.any"], [32, "id233"], [32, "id277"], [32, "id321"], [32, "id365"], [92, "arkouda.GroupBy.any"]], "any() (arkouda.pdarray method)": [[32, "arkouda.pdarray.any"], [32, "id677"], [32, "id738"], [32, "id799"], [32, "id860"], [93, "arkouda.pdarray.any"]], "any() (in module arkouda)": [[32, "arkouda.any"], [87, "arkouda.any"]], "append() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.append"], [32, "id110"]], "apply_permutation() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.apply_permutation"], [32, "id111"]], "arange() (in module arkouda)": [[32, "arkouda.arange"], [32, "id628"], [32, "id629"], [32, "id630"], [32, "id631"], [90, "arkouda.arange"]], "arccos() (in module arkouda)": [[32, "arkouda.arccos"]], "arccosh() (in module arkouda)": [[32, "arkouda.arccosh"]], "arcsin() (in module arkouda)": [[32, "arkouda.arcsin"]], "arcsinh() (in module arkouda)": [[32, "arkouda.arcsinh"]], "arctan() (in module arkouda)": [[32, "arkouda.arctan"]], "arctan2() (in module arkouda)": [[32, "arkouda.arctan2"]], "arctanh() (in module arkouda)": [[32, "arkouda.arctanh"]], "argmax() (arkouda.groupby method)": [[32, "arkouda.GroupBy.argmax"], [32, "id234"], [32, "id278"], [32, "id322"], [32, "id366"], [92, "arkouda.GroupBy.argmax"]], "argmax() (arkouda.pdarray method)": [[32, "arkouda.pdarray.argmax"], [32, "id678"], [32, "id739"], [32, "id800"], [32, "id861"], [93, "arkouda.pdarray.argmax"]], "argmax() (in module arkouda)": [[32, "arkouda.argmax"], [87, "arkouda.argmax"]], "argmaxk() (arkouda.pdarray method)": [[32, "arkouda.pdarray.argmaxk"], [32, "id679"], [32, "id740"], [32, "id801"], [32, "id862"], [93, "arkouda.pdarray.argmaxk"]], "argmaxk() (in module arkouda)": [[32, "arkouda.argmaxk"], [87, "arkouda.argmaxk"]], "argmin() (arkouda.groupby method)": [[32, "arkouda.GroupBy.argmin"], [32, "id235"], [32, "id279"], [32, "id323"], [32, "id367"], [92, "arkouda.GroupBy.argmin"]], "argmin() (arkouda.pdarray method)": [[32, "arkouda.pdarray.argmin"], [32, "id680"], [32, "id741"], [32, "id802"], [32, "id863"], [93, "arkouda.pdarray.argmin"]], "argmin() (in module arkouda)": [[32, "arkouda.argmin"], [87, "arkouda.argmin"]], "argmink() (arkouda.pdarray method)": [[32, "arkouda.pdarray.argmink"], [32, "id681"], [32, "id742"], [32, "id803"], [32, "id864"], [93, "arkouda.pdarray.argmink"]], "argmink() (in module arkouda)": [[32, "arkouda.argmink"], [87, "arkouda.argmink"]], "argsort() (arkouda.categorical method)": [[32, "arkouda.Categorical.argsort"], [32, "id19"], [32, "id68"]], "argsort() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.argsort"], [32, "id112"]], "argsort() (arkouda.index method)": [[32, "arkouda.Index.argsort"]], "argsort() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.argsort"]], "argsort() (in module arkouda)": [[32, "arkouda.argsort"], [32, "id632"], [32, "id633"], [86, "arkouda.argsort"]], "arkouda": [[32, "module-arkouda"]], "array() (in module arkouda)": [[32, "arkouda.array"], [32, "id634"], [32, "id635"], [84, "arkouda.array"]], "astype() (arkouda.strings method)": [[32, "arkouda.Strings.astype"], [32, "id408"], [32, "id476"], [32, "id544"]], "astype() (arkouda.pdarray method)": [[32, "arkouda.pdarray.astype"], [32, "id682"], [32, "id743"], [32, "id804"], [32, "id865"]], "at (arkouda.series property)": [[32, "arkouda.Series.at"]], "attach() (arkouda.categorical static method)": [[32, "arkouda.Categorical.attach"], [32, "id20"], [32, "id69"]], "attach() (arkouda.dataframe static method)": [[32, "arkouda.DataFrame.attach"], [32, "id113"]], "attach() (arkouda.groupby static method)": [[32, "arkouda.GroupBy.attach"], [32, "id236"], [32, "id280"], [32, "id324"], [32, "id368"], [92, "arkouda.GroupBy.attach"]], "attach() (arkouda.series static method)": [[32, "arkouda.Series.attach"]], "attach() (arkouda.strings static method)": [[32, "arkouda.Strings.attach"], [32, "id409"], [32, "id477"], [32, "id545"]], "attach() (arkouda.pdarray static method)": [[32, "arkouda.pdarray.attach"], [32, "id683"], [32, "id744"], [32, "id805"], [32, "id866"]], "attach() (in module arkouda)": [[32, "arkouda.attach"]], "attach_all() (in module arkouda)": [[32, "arkouda.attach_all"]], "attach_pdarray() (in module arkouda)": [[32, "arkouda.attach_pdarray"]], "base (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.base"], [88, "arkouda.ArrayView.base"]], "bigint (in module arkouda)": [[32, "arkouda.bigint"], [32, "id636"]], "bigint_from_uint_arrays() (in module arkouda)": [[32, "arkouda.bigint_from_uint_arrays"]], "bigint_to_uint_arrays() (arkouda.pdarray method)": [[32, "arkouda.pdarray.bigint_to_uint_arrays"], [32, "id684"], [32, "id745"], [32, "id806"], [32, "id867"]], "bittype (in module arkouda)": [[32, "arkouda.bitType"], [32, "id637"]], "bool (in module arkouda)": [[32, "arkouda.bool"]], "bool_scalars (in module arkouda)": [[32, "arkouda.bool_scalars"]], "broadcast() (arkouda.groupby method)": [[32, "arkouda.GroupBy.broadcast"], [32, "id237"], [32, "id281"], [32, "id325"], [32, "id369"], [92, "arkouda.GroupBy.broadcast"]], "broadcast() (in module arkouda)": [[32, "arkouda.broadcast"], [32, "id638"], [32, "id639"]], "broadcast_dims() (in module arkouda)": [[32, "arkouda.broadcast_dims"]], "broadcast_to_shape() (in module arkouda)": [[32, "arkouda.broadcast_to_shape"]], "build_from_components() (arkouda.groupby static method)": [[32, "arkouda.GroupBy.build_from_components"], [32, "id238"], [32, "id282"], [32, "id326"], [32, "id370"], [92, "arkouda.GroupBy.build_from_components"]], "cached_regex_patterns() (arkouda.strings method)": [[32, "arkouda.Strings.cached_regex_patterns"], [32, "id410"], [32, "id478"], [32, "id546"]], "capitalize() (arkouda.strings method)": [[32, "arkouda.Strings.capitalize"], [32, "id411"], [32, "id479"], [32, "id547"]], "cast() (in module arkouda)": [[32, "arkouda.cast"], [32, "id640"], [95, "arkouda.cast"]], "categories (arkouda.categorical attribute)": [[32, "arkouda.Categorical.categories"], [32, "id3"], [32, "id52"], [89, "arkouda.Categorical.categories"]], "ceil() (in module arkouda)": [[32, "arkouda.ceil"]], "check_np_dtype() (in module arkouda)": [[32, "arkouda.check_np_dtype"]], "chisquare() (in module arkouda)": [[32, "arkouda.chisquare"]], "clear() (in module arkouda)": [[32, "arkouda.clear"]], "clz() (arkouda.pdarray method)": [[32, "arkouda.pdarray.clz"], [32, "id685"], [32, "id746"], [32, "id807"], [32, "id868"]], "clz() (in module arkouda)": [[32, "arkouda.clz"]], "coargsort() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.coargsort"], [32, "id114"]], "coargsort() (in module arkouda)": [[32, "arkouda.coargsort"], [32, "id641"], [32, "id642"], [86, "arkouda.coargsort"]], "codes (arkouda.categorical attribute)": [[32, "arkouda.Categorical.codes"], [32, "id4"], [32, "id53"], [89, "arkouda.Categorical.codes"]], "columns (arkouda.dataframe property)": [[32, "arkouda.DataFrame.columns"], [32, "id101"]], "complex128 (in module arkouda)": [[32, "arkouda.complex128"]], "complex64 (in module arkouda)": [[32, "arkouda.complex64"]], "components (arkouda.timedelta property)": [[32, "arkouda.Timedelta.components"], [32, "id603"]], "compute_join_size() (in module arkouda)": [[32, "arkouda.compute_join_size"]], "concat() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.concat"], [32, "id115"]], "concat() (arkouda.index method)": [[32, "arkouda.Index.concat"]], "concat() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.concat"]], "concat() (arkouda.series static method)": [[32, "arkouda.Series.concat"]], "concatenate() (arkouda.categorical method)": [[32, "arkouda.Categorical.concatenate"], [32, "id21"], [32, "id70"]], "concatenate() (in module arkouda)": [[32, "arkouda.concatenate"], [32, "id643"], [90, "arkouda.concatenate"]], "conserves (arkouda.bitvector attribute)": [[32, "arkouda.BitVector.conserves"]], "contains() (arkouda.categorical method)": [[32, "arkouda.Categorical.contains"], [32, "id22"], [32, "id71"], [89, "arkouda.Categorical.contains"]], "contains() (arkouda.strings method)": [[32, "arkouda.Strings.contains"], [32, "id412"], [32, "id480"], [32, "id548"], [100, "arkouda.Strings.contains"]], "convert_if_categorical() (in module arkouda)": [[32, "arkouda.convert_if_categorical"]], "copy() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.copy"], [32, "id116"]], "corr() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.corr"], [32, "id117"]], "corr() (arkouda.pdarray method)": [[32, "arkouda.pdarray.corr"], [32, "id686"], [32, "id747"], [32, "id808"], [32, "id869"]], "corr() (in module arkouda)": [[32, "arkouda.corr"]], "cos() (in module arkouda)": [[32, "arkouda.cos"], [87, "arkouda.cos"]], "cosh() (in module arkouda)": [[32, "arkouda.cosh"]], "count() (arkouda.groupby method)": [[32, "arkouda.GroupBy.count"], [32, "id239"], [32, "id283"], [32, "id327"], [32, "id371"], [92, "arkouda.GroupBy.count"]], "cov() (arkouda.pdarray method)": [[32, "arkouda.pdarray.cov"], [32, "id687"], [32, "id748"], [32, "id809"], [32, "id870"]], "cov() (in module arkouda)": [[32, "arkouda.cov"]], "create_pdarray() (in module arkouda)": [[32, "arkouda.create_pdarray"], [32, "id644"], [32, "id645"]], "ctz() (arkouda.pdarray method)": [[32, "arkouda.pdarray.ctz"], [32, "id688"], [32, "id749"], [32, "id810"], [32, "id871"]], "ctz() (in module arkouda)": [[32, "arkouda.ctz"]], "cumprod() (in module arkouda)": [[32, "arkouda.cumprod"], [87, "arkouda.cumprod"]], "cumsum() (in module arkouda)": [[32, "arkouda.cumsum"], [87, "arkouda.cumsum"]], "date (arkouda.datetime property)": [[32, "arkouda.Datetime.date"], [32, "id151"], [32, "id184"]], "date_operators() (in module arkouda)": [[32, "arkouda.date_operators"]], "date_range() (in module arkouda)": [[32, "arkouda.date_range"], [32, "id646"]], "day (arkouda.datetime property)": [[32, "arkouda.Datetime.day"], [32, "id152"], [32, "id185"]], "day_of_week (arkouda.datetime property)": [[32, "arkouda.Datetime.day_of_week"], [32, "id153"], [32, "id186"]], "day_of_year (arkouda.datetime property)": [[32, "arkouda.Datetime.day_of_year"], [32, "id154"], [32, "id187"]], "dayofweek (arkouda.datetime property)": [[32, "arkouda.Datetime.dayofweek"], [32, "id155"], [32, "id188"]], "dayofyear (arkouda.datetime property)": [[32, "arkouda.Datetime.dayofyear"], [32, "id156"], [32, "id189"]], "days (arkouda.timedelta property)": [[32, "arkouda.Timedelta.days"], [32, "id604"]], "decode() (arkouda.strings method)": [[32, "arkouda.Strings.decode"], [32, "id413"], [32, "id481"], [32, "id549"]], "deg2rad() (in module arkouda)": [[32, "arkouda.deg2rad"]], "diff() (arkouda.series method)": [[32, "arkouda.Series.diff"]], "disableverbose() (in module arkouda)": [[32, "arkouda.disableVerbose"]], "divmod() (in module arkouda)": [[32, "arkouda.divmod"]], "dot() (in module arkouda)": [[32, "arkouda.dot"]], "drop() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.drop"], [32, "id118"]], "drop_duplicates() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.drop_duplicates"], [32, "id119"]], "dropna (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.dropna"], [32, "id225"], [32, "id269"], [32, "id313"], [32, "id357"], [92, "arkouda.GroupBy.dropna"]], "dt (arkouda.series attribute)": [[32, "arkouda.Series.dt"]], "dtype (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.dtype"], [88, "arkouda.ArrayView.dtype"]], "dtype (arkouda.categorical attribute)": [[32, "arkouda.Categorical.dtype"], [32, "id15"], [32, "id64"]], "dtype (arkouda.strings attribute)": [[32, "arkouda.Strings.dtype"], [32, "id404"], [32, "id472"], [32, "id540"]], "dtype (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.dtype"], [32, "id666"], [32, "id727"], [32, "id788"], [32, "id849"], [95, "arkouda.pdarray.dtype"]], "dtype() (in module arkouda)": [[32, "arkouda.dtype"]], "dtypes (arkouda.dataframe property)": [[32, "arkouda.DataFrame.dtypes"], [32, "id102"]], "empty (arkouda.dataframe property)": [[32, "arkouda.DataFrame.empty"], [32, "id103"]], "enableverbose() (in module arkouda)": [[32, "arkouda.enableVerbose"]], "encode() (arkouda.strings method)": [[32, "arkouda.Strings.encode"], [32, "id414"], [32, "id482"], [32, "id550"]], "endswith() (arkouda.categorical method)": [[32, "arkouda.Categorical.endswith"], [32, "id23"], [32, "id72"], [89, "arkouda.Categorical.endswith"]], "endswith() (arkouda.strings method)": [[32, "arkouda.Strings.endswith"], [32, "id415"], [32, "id483"], [32, "id551"], [100, "arkouda.Strings.endswith"]], "entry (arkouda.strings attribute)": [[32, "arkouda.Strings.entry"], [32, "id399"], [32, "id467"], [32, "id535"]], "exp() (in module arkouda)": [[32, "arkouda.exp"], [87, "arkouda.exp"]], "expm1() (in module arkouda)": [[32, "arkouda.expm1"]], "export() (in module arkouda)": [[32, "arkouda.export"], [84, "arkouda.export"]], "export_uint() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.export_uint"]], "factory() (arkouda.index static method)": [[32, "arkouda.Index.factory"]], "fill() (arkouda.pdarray method)": [[32, "arkouda.pdarray.fill"], [32, "id689"], [32, "id750"], [32, "id811"], [32, "id872"]], "filter_by_range() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.filter_by_range"], [32, "id120"]], "find() (in module arkouda)": [[32, "arkouda.find"]], "find_locations() (arkouda.strings method)": [[32, "arkouda.Strings.find_locations"], [32, "id416"], [32, "id484"], [32, "id552"], [100, "arkouda.Strings.find_locations"]], "findall() (arkouda.strings method)": [[32, "arkouda.Strings.findall"], [32, "id417"], [32, "id485"], [32, "id553"], [100, "arkouda.Strings.findall"]], "first() (arkouda.groupby method)": [[32, "arkouda.GroupBy.first"], [32, "id240"], [32, "id284"], [32, "id328"], [32, "id372"], [92, "arkouda.GroupBy.first"]], "flatten() (arkouda.strings method)": [[32, "arkouda.Strings.flatten"], [32, "id418"], [32, "id486"], [32, "id554"], [100, "arkouda.Strings.flatten"]], "float32 (in module arkouda)": [[32, "arkouda.float32"]], "float64 (in module arkouda)": [[32, "arkouda.float64"]], "float_scalars (in module arkouda)": [[32, "arkouda.float_scalars"]], "floor() (in module arkouda)": [[32, "arkouda.floor"]], "fmod() (in module arkouda)": [[32, "arkouda.fmod"]], "format() (arkouda.bitvector method)": [[32, "arkouda.BitVector.format"]], "format() (arkouda.fields method)": [[32, "arkouda.Fields.format"]], "format() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.format"]], "format_other() (arkouda.pdarray method)": [[32, "arkouda.pdarray.format_other"], [32, "id690"], [32, "id751"], [32, "id812"], [32, "id873"]], "from_codes() (arkouda.categorical class method)": [[32, "arkouda.Categorical.from_codes"], [32, "id24"], [32, "id73"], [89, "arkouda.Categorical.from_codes"]], "from_pandas() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.from_pandas"], [32, "id121"]], "from_parts() (arkouda.strings static method)": [[32, "arkouda.Strings.from_parts"], [32, "id419"], [32, "id487"], [32, "id555"]], "from_return_msg() (arkouda.bitvector class method)": [[32, "arkouda.BitVector.from_return_msg"]], "from_return_msg() (arkouda.categorical class method)": [[32, "arkouda.Categorical.from_return_msg"], [32, "id25"], [32, "id74"]], "from_return_msg() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.from_return_msg"], [32, "id122"]], "from_return_msg() (arkouda.groupby static method)": [[32, "arkouda.GroupBy.from_return_msg"], [32, "id241"], [32, "id285"], [32, "id329"], [32, "id373"]], "from_return_msg() (arkouda.index class method)": [[32, "arkouda.Index.from_return_msg"]], "from_return_msg() (arkouda.series class method)": [[32, "arkouda.Series.from_return_msg"]], "from_return_msg() (arkouda.strings static method)": [[32, "arkouda.Strings.from_return_msg"], [32, "id420"], [32, "id488"], [32, "id556"]], "from_series() (in module arkouda)": [[32, "arkouda.from_series"], [32, "id647"]], "full() (in module arkouda)": [[32, "arkouda.full"], [32, "id648"]], "full_like() (in module arkouda)": [[32, "arkouda.full_like"]], "fullmatch() (arkouda.strings method)": [[32, "arkouda.Strings.fullmatch"], [32, "id421"], [32, "id489"], [32, "id557"], [100, "arkouda.Strings.fullmatch"]], "gb (arkouda.diffaggregate attribute)": [[32, "arkouda.DiffAggregate.gb"]], "gen_ranges() (in module arkouda)": [[32, "arkouda.gen_ranges"]], "generic_concat() (in module arkouda)": [[32, "arkouda.generic_concat"]], "get_byteorder() (in module arkouda)": [[32, "arkouda.get_byteorder"]], "get_bytes() (arkouda.strings method)": [[32, "arkouda.Strings.get_bytes"], [32, "id422"], [32, "id490"], [32, "id558"]], "get_callback() (in module arkouda)": [[32, "arkouda.get_callback"]], "get_columns() (in module arkouda)": [[32, "arkouda.get_columns"]], "get_datasets() (in module arkouda)": [[32, "arkouda.get_datasets"], [84, "arkouda.get_datasets"]], "get_filetype() (in module arkouda)": [[32, "arkouda.get_filetype"]], "get_lengths() (arkouda.strings method)": [[32, "arkouda.Strings.get_lengths"], [32, "id423"], [32, "id491"], [32, "id559"]], "get_null_indices() (in module arkouda)": [[32, "arkouda.get_null_indices"]], "get_offsets() (arkouda.strings method)": [[32, "arkouda.Strings.get_offsets"], [32, "id424"], [32, "id492"], [32, "id560"]], "get_prefixes() (arkouda.strings method)": [[32, "arkouda.Strings.get_prefixes"], [32, "id425"], [32, "id493"], [32, "id561"]], "get_server_byteorder() (in module arkouda)": [[32, "arkouda.get_server_byteorder"]], "get_suffixes() (arkouda.strings method)": [[32, "arkouda.Strings.get_suffixes"], [32, "id426"], [32, "id494"], [32, "id562"]], "group() (arkouda.categorical method)": [[32, "arkouda.Categorical.group"], [32, "id26"], [32, "id75"]], "group() (arkouda.strings method)": [[32, "arkouda.Strings.group"], [32, "id427"], [32, "id495"], [32, "id563"]], "has_repeat_labels() (arkouda.series method)": [[32, "arkouda.Series.has_repeat_labels"]], "hash() (arkouda.categorical method)": [[32, "arkouda.Categorical.hash"], [32, "id27"], [32, "id76"]], "hash() (arkouda.strings method)": [[32, "arkouda.Strings.hash"], [32, "id428"], [32, "id496"], [32, "id564"]], "hash() (in module arkouda)": [[32, "arkouda.hash"]], "head() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.head"], [32, "id124"]], "head() (arkouda.series method)": [[32, "arkouda.Series.head"]], "hist_all() (in module arkouda)": [[32, "arkouda.hist_all"]], "histogram() (in module arkouda)": [[32, "arkouda.histogram"], [32, "id649"], [93, "arkouda.histogram"]], "histogram2d() (in module arkouda)": [[32, "arkouda.histogram2d"]], "histogramdd() (in module arkouda)": [[32, "arkouda.histogramdd"]], "hour (arkouda.datetime property)": [[32, "arkouda.Datetime.hour"], [32, "id157"], [32, "id190"]], "iat (arkouda.series property)": [[32, "arkouda.Series.iat"]], "ignore (arkouda.errormode attribute)": [[32, "arkouda.ErrorMode.ignore"]], "iloc (arkouda.series property)": [[32, "arkouda.Series.iloc"]], "import_data() (in module arkouda)": [[32, "arkouda.import_data"], [84, "arkouda.import_data"]], "in1d() (arkouda.categorical method)": [[32, "arkouda.Categorical.in1d"], [32, "id28"], [32, "id77"]], "in1d() (in module arkouda)": [[32, "arkouda.in1d"], [32, "id650"], [32, "id652"], [98, "arkouda.in1d"]], "in1d_intervals() (in module arkouda)": [[32, "arkouda.in1d_intervals"]], "index (arkouda.dataframe property)": [[32, "arkouda.DataFrame.index"], [32, "id104"]], "index (arkouda.index property)": [[32, "arkouda.Index.index"]], "index (arkouda.multiindex property)": [[32, "arkouda.MultiIndex.index"]], "indexof1d() (in module arkouda)": [[32, "arkouda.indexof1d"]], "info (arkouda.dataframe property)": [[32, "arkouda.DataFrame.info"], [32, "id105"]], "info() (arkouda.categorical method)": [[32, "arkouda.Categorical.info"], [32, "id29"], [32, "id78"]], "info() (arkouda.strings method)": [[32, "arkouda.Strings.info"], [32, "id429"], [32, "id497"], [32, "id565"]], "info() (arkouda.pdarray method)": [[32, "arkouda.pdarray.info"], [32, "id691"], [32, "id752"], [32, "id813"], [32, "id874"]], "information() (in module arkouda)": [[32, "arkouda.information"]], "int16 (in module arkouda)": [[32, "arkouda.int16"]], "int32 (in module arkouda)": [[32, "arkouda.int32"]], "int64 (in module arkouda)": [[32, "arkouda.int64"], [32, "id654"]], "int8 (in module arkouda)": [[32, "arkouda.int8"]], "inttypes (in module arkouda)": [[32, "arkouda.intTypes"], [32, "id655"], [32, "id656"]], "int_scalars (in module arkouda)": [[32, "arkouda.int_scalars"], [32, "id657"]], "integers() (arkouda.generator method)": [[32, "arkouda.Generator.integers"]], "intersect() (in module arkouda)": [[32, "arkouda.intersect"]], "intersect1d() (in module arkouda)": [[32, "arkouda.intersect1d"], [98, "arkouda.intersect1d"]], "interval_lookup() (in module arkouda)": [[32, "arkouda.interval_lookup"]], "intx() (in module arkouda)": [[32, "arkouda.intx"]], "invert_permutation() (in module arkouda)": [[32, "arkouda.invert_permutation"]], "ip_address() (in module arkouda)": [[32, "arkouda.ip_address"]], "issupportedint() (in module arkouda)": [[32, "arkouda.isSupportedInt"], [32, "id658"]], "issupportednumber() (in module arkouda)": [[32, "arkouda.isSupportedNumber"]], "is_cosorted() (in module arkouda)": [[32, "arkouda.is_cosorted"]], "is_ipv4() (in module arkouda)": [[32, "arkouda.is_ipv4"]], "is_ipv6() (in module arkouda)": [[32, "arkouda.is_ipv6"]], "is_leap_year (arkouda.datetime property)": [[32, "arkouda.Datetime.is_leap_year"], [32, "id158"], [32, "id191"]], "is_registered() (arkouda.categorical method)": [[32, "arkouda.Categorical.is_registered"], [32, "id30"], [32, "id79"]], "is_registered() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.is_registered"], [32, "id125"]], "is_registered() (arkouda.datetime method)": [[32, "arkouda.Datetime.is_registered"], [32, "id177"], [32, "id210"]], "is_registered() (arkouda.groupby method)": [[32, "arkouda.GroupBy.is_registered"], [32, "id242"], [32, "id286"], [32, "id330"], [32, "id374"], [92, "arkouda.GroupBy.is_registered"]], "is_registered() (arkouda.index method)": [[32, "arkouda.Index.is_registered"]], "is_registered() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.is_registered"]], "is_registered() (arkouda.series method)": [[32, "arkouda.Series.is_registered"]], "is_registered() (arkouda.strings method)": [[32, "arkouda.Strings.is_registered"], [32, "id430"], [32, "id498"], [32, "id566"]], "is_registered() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.is_registered"], [32, "id617"]], "is_registered() (arkouda.pdarray method)": [[32, "arkouda.pdarray.is_registered"], [32, "id692"], [32, "id753"], [32, "id814"], [32, "id875"]], "is_registered() (in module arkouda)": [[32, "arkouda.is_registered"]], "is_sorted() (arkouda.pdarray method)": [[32, "arkouda.pdarray.is_sorted"], [32, "id693"], [32, "id754"], [32, "id815"], [32, "id876"], [93, "arkouda.pdarray.is_sorted"]], "is_sorted() (in module arkouda)": [[32, "arkouda.is_sorted"], [87, "arkouda.is_sorted"]], "is_unique (arkouda.index property)": [[32, "arkouda.Index.is_unique"]], "isalnum() (arkouda.strings method)": [[32, "arkouda.Strings.isalnum"], [32, "id431"], [32, "id499"], [32, "id567"]], "isalpha() (arkouda.strings method)": [[32, "arkouda.Strings.isalpha"], [32, "id432"], [32, "id500"], [32, "id568"]], "isdigit() (arkouda.strings method)": [[32, "arkouda.Strings.isdigit"], [32, "id433"], [32, "id501"], [32, "id569"]], "isempty() (arkouda.strings method)": [[32, "arkouda.Strings.isempty"], [32, "id434"], [32, "id502"], [32, "id570"]], "isfinite() (in module arkouda)": [[32, "arkouda.isfinite"]], "isin() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.isin"], [32, "id126"]], "isin() (arkouda.series method)": [[32, "arkouda.Series.isin"]], "isinf() (in module arkouda)": [[32, "arkouda.isinf"]], "islower() (arkouda.strings method)": [[32, "arkouda.Strings.islower"], [32, "id435"], [32, "id503"], [32, "id571"]], "isna() (arkouda.categorical method)": [[32, "arkouda.Categorical.isna"], [32, "id31"], [32, "id80"]], "isnan() (in module arkouda)": [[32, "arkouda.isnan"], [32, "id659"]], "isocalendar() (arkouda.datetime method)": [[32, "arkouda.Datetime.isocalendar"], [32, "id178"], [32, "id211"]], "isspace() (arkouda.strings method)": [[32, "arkouda.Strings.isspace"], [32, "id436"], [32, "id504"], [32, "id572"]], "istitle() (arkouda.strings method)": [[32, "arkouda.Strings.istitle"], [32, "id437"], [32, "id505"], [32, "id573"]], "isupper() (arkouda.strings method)": [[32, "arkouda.Strings.isupper"], [32, "id438"], [32, "id506"], [32, "id574"]], "itemsize (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.itemsize"], [88, "arkouda.ArrayView.itemsize"]], "itemsize (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.itemsize"], [32, "id670"], [32, "id731"], [32, "id792"], [32, "id853"], [95, "arkouda.pdarray.itemsize"]], "join_on_eq_with_dt() (in module arkouda)": [[32, "arkouda.join_on_eq_with_dt"]], "left_align() (in module arkouda)": [[32, "arkouda.left_align"]], "linspace() (in module arkouda)": [[32, "arkouda.linspace"], [90, "arkouda.linspace"]], "list_registry() (in module arkouda)": [[32, "arkouda.list_registry"]], "list_symbol_table() (in module arkouda)": [[32, "arkouda.list_symbol_table"]], "load() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.load"], [32, "id127"]], "load() (in module arkouda)": [[32, "arkouda.load"]], "load_all() (in module arkouda)": [[32, "arkouda.load_all"]], "loc (arkouda.series property)": [[32, "arkouda.Series.loc"]], "locate() (arkouda.series method)": [[32, "arkouda.Series.locate"]], "log() (in module arkouda)": [[32, "arkouda.log"], [87, "arkouda.log"]], "log10() (in module arkouda)": [[32, "arkouda.log10"]], "log1p() (in module arkouda)": [[32, "arkouda.log1p"]], "log2() (in module arkouda)": [[32, "arkouda.log2"]], "logger (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.logger"], [32, "id224"], [32, "id268"], [32, "id312"], [32, "id356"], [92, "arkouda.GroupBy.logger"]], "logger (arkouda.strings attribute)": [[32, "arkouda.Strings.logger"], [32, "id405"], [32, "id473"], [32, "id541"]], "lookup() (arkouda.index method)": [[32, "arkouda.Index.lookup"]], "lookup() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.lookup"]], "lookup() (in module arkouda)": [[32, "arkouda.lookup"]], "lower() (arkouda.strings method)": [[32, "arkouda.Strings.lower"], [32, "id439"], [32, "id507"], [32, "id575"]], "ls() (in module arkouda)": [[32, "arkouda.ls"]], "ls_csv() (in module arkouda)": [[32, "arkouda.ls_csv"]], "lstick() (arkouda.strings method)": [[32, "arkouda.Strings.lstick"], [32, "id440"], [32, "id508"], [32, "id576"], [100, "arkouda.Strings.lstick"]], "map() (arkouda.series method)": [[32, "arkouda.Series.map"]], "match() (arkouda.strings method)": [[32, "arkouda.Strings.match"], [32, "id441"], [32, "id509"], [32, "id577"], [100, "arkouda.Strings.match"]], "max() (arkouda.groupby method)": [[32, "arkouda.GroupBy.max"], [32, "id243"], [32, "id287"], [32, "id331"], [32, "id375"], [92, "arkouda.GroupBy.max"]], "max() (arkouda.pdarray method)": [[32, "arkouda.pdarray.max"], [32, "id694"], [32, "id755"], [32, "id816"], [32, "id877"], [93, "arkouda.pdarray.max"]], "max() (in module arkouda)": [[32, "arkouda.max"], [87, "arkouda.max"]], "max_bits (arkouda.pdarray property)": [[32, "arkouda.pdarray.max_bits"], [32, "id671"], [32, "id732"], [32, "id793"], [32, "id854"]], "maxk() (arkouda.pdarray method)": [[32, "arkouda.pdarray.maxk"], [32, "id695"], [32, "id756"], [32, "id817"], [32, "id878"], [93, "arkouda.pdarray.maxk"]], "maxk() (in module arkouda)": [[32, "arkouda.maxk"], [87, "arkouda.maxk"]], "mean() (arkouda.groupby method)": [[32, "arkouda.GroupBy.mean"], [32, "id244"], [32, "id288"], [32, "id332"], [32, "id376"], [92, "arkouda.GroupBy.mean"]], "mean() (arkouda.pdarray method)": [[32, "arkouda.pdarray.mean"], [32, "id696"], [32, "id757"], [32, "id818"], [32, "id879"], [93, "arkouda.pdarray.mean"]], "mean() (in module arkouda)": [[32, "arkouda.mean"], [87, "arkouda.mean"]], "median() (arkouda.groupby method)": [[32, "arkouda.GroupBy.median"], [32, "id245"], [32, "id289"], [32, "id333"], [32, "id377"], [92, "arkouda.GroupBy.median"]], "memory_usage() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.memory_usage"], [32, "id128"]], "memory_usage() (arkouda.index method)": [[32, "arkouda.Index.memory_usage"]], "memory_usage() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.memory_usage"]], "memory_usage() (arkouda.series method)": [[32, "arkouda.Series.memory_usage"]], "memory_usage_info() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.memory_usage_info"], [32, "id129"]], "merge() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.merge"], [32, "id130"]], "merge() (in module arkouda)": [[32, "arkouda.merge"]], "microsecond (arkouda.datetime property)": [[32, "arkouda.Datetime.microsecond"], [32, "id159"], [32, "id192"]], "microseconds (arkouda.timedelta property)": [[32, "arkouda.Timedelta.microseconds"], [32, "id605"]], "millisecond (arkouda.datetime property)": [[32, "arkouda.Datetime.millisecond"], [32, "id160"], [32, "id193"]], "min() (arkouda.groupby method)": [[32, "arkouda.GroupBy.min"], [32, "id246"], [32, "id290"], [32, "id334"], [32, "id378"], [92, "arkouda.GroupBy.min"]], "min() (arkouda.pdarray method)": [[32, "arkouda.pdarray.min"], [32, "id697"], [32, "id758"], [32, "id819"], [32, "id880"], [93, "arkouda.pdarray.min"]], "min() (in module arkouda)": [[32, "arkouda.min"], [87, "arkouda.min"]], "mink() (arkouda.pdarray method)": [[32, "arkouda.pdarray.mink"], [32, "id698"], [32, "id759"], [32, "id820"], [32, "id881"], [93, "arkouda.pdarray.mink"]], "mink() (in module arkouda)": [[32, "arkouda.mink"], [87, "arkouda.mink"]], "minute (arkouda.datetime property)": [[32, "arkouda.Datetime.minute"], [32, "id161"], [32, "id194"]], "mod() (in module arkouda)": [[32, "arkouda.mod"]], "mode() (arkouda.groupby method)": [[32, "arkouda.GroupBy.mode"], [32, "id247"], [32, "id291"], [32, "id335"], [32, "id379"], [92, "arkouda.GroupBy.mode"]], "month (arkouda.datetime property)": [[32, "arkouda.Datetime.month"], [32, "id162"], [32, "id195"]], "most_common() (arkouda.groupby method)": [[32, "arkouda.GroupBy.most_common"], [32, "id248"], [32, "id292"], [32, "id336"], [32, "id380"], [92, "arkouda.GroupBy.most_common"]], "name (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.name"], [32, "id665"], [32, "id726"], [32, "id787"], [32, "id848"], [95, "arkouda.pdarray.name"]], "nanosecond (arkouda.datetime property)": [[32, "arkouda.Datetime.nanosecond"], [32, "id163"], [32, "id196"]], "nanoseconds (arkouda.timedelta property)": [[32, "arkouda.Timedelta.nanoseconds"], [32, "id606"]], "nbytes (arkouda.categorical property)": [[32, "arkouda.Categorical.nbytes"], [32, "id11"], [32, "id60"]], "nbytes (arkouda.strings attribute)": [[32, "arkouda.Strings.nbytes"], [32, "id401"], [32, "id469"], [32, "id537"]], "nbytes (arkouda.pdarray property)": [[32, "arkouda.pdarray.nbytes"], [32, "id672"], [32, "id733"], [32, "id794"], [32, "id855"]], "ndim (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.ndim"], [88, "arkouda.ArrayView.ndim"]], "ndim (arkouda.categorical attribute)": [[32, "arkouda.Categorical.ndim"], [32, "id58"], [32, "id9"], [89, "arkouda.Categorical.ndim"]], "ndim (arkouda.strings attribute)": [[32, "arkouda.Strings.ndim"], [32, "id402"], [32, "id470"], [32, "id538"]], "ndim (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.ndim"], [32, "id668"], [32, "id729"], [32, "id790"], [32, "id851"], [95, "arkouda.pdarray.ndim"]], "ngroups (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.ngroups"], [32, "id222"], [32, "id266"], [32, "id310"], [32, "id354"], [92, "arkouda.GroupBy.ngroups"]], "nkeys (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.nkeys"], [32, "id218"], [32, "id262"], [32, "id306"], [32, "id350"], [92, "arkouda.GroupBy.nkeys"]], "nlevels (arkouda.categorical attribute)": [[32, "arkouda.Categorical.nlevels"], [32, "id57"], [32, "id8"], [89, "arkouda.Categorical.nlevels"]], "normalize() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.normalize"]], "numeric_scalars (in module arkouda)": [[32, "arkouda.numeric_scalars"]], "numpy_scalars (in module arkouda)": [[32, "arkouda.numpy_scalars"]], "nunique() (arkouda.groupby method)": [[32, "arkouda.GroupBy.nunique"], [32, "id249"], [32, "id293"], [32, "id337"], [32, "id381"], [92, "arkouda.GroupBy.nunique"]], "objtype (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.objType"]], "objtype (arkouda.categorical attribute)": [[32, "arkouda.Categorical.objType"], [32, "id16"], [32, "id65"]], "objtype (arkouda.dataframe attribute)": [[32, "arkouda.DataFrame.objType"], [32, "id108"]], "objtype (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.objType"], [32, "id227"], [32, "id271"], [32, "id315"], [32, "id359"]], "objtype (arkouda.index attribute)": [[32, "arkouda.Index.objType"]], "objtype (arkouda.multiindex attribute)": [[32, "arkouda.MultiIndex.objType"]], "objtype (arkouda.series attribute)": [[32, "arkouda.Series.objType"]], "objtype (arkouda.strings attribute)": [[32, "arkouda.Strings.objType"], [32, "id407"], [32, "id475"], [32, "id543"]], "objtype (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.objType"], [32, "id675"], [32, "id736"], [32, "id797"], [32, "id858"]], "ones() (in module arkouda)": [[32, "arkouda.ones"], [32, "id660"], [32, "id661"], [90, "arkouda.ones"]], "ones_like() (in module arkouda)": [[32, "arkouda.ones_like"], [90, "arkouda.ones_like"]], "opeq() (arkouda.bitvector method)": [[32, "arkouda.BitVector.opeq"]], "opeq() (arkouda.fields method)": [[32, "arkouda.Fields.opeq"]], "opeq() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.opeq"]], "opeq() (arkouda.pdarray method)": [[32, "arkouda.pdarray.opeq"], [32, "id699"], [32, "id760"], [32, "id821"], [32, "id882"]], "order (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.order"], [88, "arkouda.ArrayView.order"]], "parity() (arkouda.pdarray method)": [[32, "arkouda.pdarray.parity"], [32, "id700"], [32, "id761"], [32, "id822"], [32, "id883"]], "parity() (in module arkouda)": [[32, "arkouda.parity"]], "parse_hdf_categoricals() (arkouda.categorical static method)": [[32, "arkouda.Categorical.parse_hdf_categoricals"], [32, "id32"], [32, "id81"]], "pdarray (class in arkouda)": [[32, "arkouda.pdarray"], [32, "id664"], [32, "id725"], [32, "id786"], [32, "id847"], [95, "arkouda.pdarray"]], "pdconcat() (arkouda.series static method)": [[32, "arkouda.Series.pdconcat"]], "peel() (arkouda.strings method)": [[32, "arkouda.Strings.peel"], [32, "id442"], [32, "id510"], [32, "id578"], [100, "arkouda.Strings.peel"]], "permutation (arkouda.categorical attribute)": [[32, "arkouda.Categorical.permutation"], [32, "id0"], [32, "id17"], [32, "id5"], [32, "id54"], [32, "id66"], [89, "arkouda.Categorical.permutation"]], "permutation (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.permutation"], [32, "id220"], [32, "id264"], [32, "id308"], [32, "id352"], [92, "arkouda.GroupBy.permutation"]], "plot_dist() (in module arkouda)": [[32, "arkouda.plot_dist"]], "popcount() (arkouda.pdarray method)": [[32, "arkouda.pdarray.popcount"], [32, "id701"], [32, "id762"], [32, "id823"], [32, "id884"]], "popcount() (in module arkouda)": [[32, "arkouda.popcount"]], "power() (in module arkouda)": [[32, "arkouda.power"]], "power_divergence() (in module arkouda)": [[32, "arkouda.power_divergence"]], "pretty_print_info() (arkouda.categorical method)": [[32, "arkouda.Categorical.pretty_print_info"], [32, "id33"], [32, "id82"]], "pretty_print_info() (arkouda.strings method)": [[32, "arkouda.Strings.pretty_print_info"], [32, "id443"], [32, "id511"], [32, "id579"]], "pretty_print_info() (arkouda.pdarray method)": [[32, "arkouda.pdarray.pretty_print_info"], [32, "id702"], [32, "id763"], [32, "id824"], [32, "id885"]], "pretty_print_information() (in module arkouda)": [[32, "arkouda.pretty_print_information"]], "prod() (arkouda.groupby method)": [[32, "arkouda.GroupBy.prod"], [32, "id250"], [32, "id294"], [32, "id338"], [32, "id382"], [92, "arkouda.GroupBy.prod"]], "prod() (arkouda.pdarray method)": [[32, "arkouda.pdarray.prod"], [32, "id703"], [32, "id764"], [32, "id825"], [32, "id886"], [93, "arkouda.pdarray.prod"]], "prod() (in module arkouda)": [[32, "arkouda.prod"], [87, "arkouda.prod"]], "purge_cached_regex_patterns() (arkouda.strings method)": [[32, "arkouda.Strings.purge_cached_regex_patterns"], [32, "id444"], [32, "id512"], [32, "id580"]], "pvalue (arkouda.power_divergenceresult attribute)": [[32, "arkouda.Power_divergenceResult.pvalue"]], "rad2deg() (in module arkouda)": [[32, "arkouda.rad2deg"]], "randint() (in module arkouda)": [[32, "arkouda.randint"], [32, "id908"], [90, "arkouda.randint"]], "random() (arkouda.generator method)": [[32, "arkouda.Generator.random"]], "random_strings_lognormal() (in module arkouda)": [[32, "arkouda.random_strings_lognormal"]], "random_strings_uniform() (in module arkouda)": [[32, "arkouda.random_strings_uniform"]], "read() (in module arkouda)": [[32, "arkouda.read"], [84, "arkouda.read"]], "read_csv() (arkouda.dataframe class method)": [[32, "arkouda.DataFrame.read_csv"], [32, "id131"]], "read_csv() (in module arkouda)": [[32, "arkouda.read_csv"]], "read_hdf() (in module arkouda)": [[32, "arkouda.read_hdf"]], "read_parquet() (in module arkouda)": [[32, "arkouda.read_parquet"]], "read_tagged_data() (in module arkouda)": [[32, "arkouda.read_tagged_data"]], "receive() (in module arkouda)": [[32, "arkouda.receive"]], "receive_dataframe() (in module arkouda)": [[32, "arkouda.receive_dataframe"]], "register() (arkouda.bitvector method)": [[32, "arkouda.BitVector.register"]], "register() (arkouda.categorical method)": [[32, "arkouda.Categorical.register"], [32, "id34"], [32, "id83"]], "register() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.register"], [32, "id132"]], "register() (arkouda.datetime method)": [[32, "arkouda.Datetime.register"], [32, "id179"], [32, "id212"]], "register() (arkouda.groupby method)": [[32, "arkouda.GroupBy.register"], [32, "id251"], [32, "id295"], [32, "id339"], [32, "id383"], [92, "arkouda.GroupBy.register"]], "register() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.register"]], "register() (arkouda.index method)": [[32, "arkouda.Index.register"]], "register() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.register"]], "register() (arkouda.series method)": [[32, "arkouda.Series.register"]], "register() (arkouda.strings method)": [[32, "arkouda.Strings.register"], [32, "id445"], [32, "id513"], [32, "id581"]], "register() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.register"], [32, "id618"]], "register() (arkouda.pdarray method)": [[32, "arkouda.pdarray.register"], [32, "id704"], [32, "id765"], [32, "id826"], [32, "id887"]], "register_all() (in module arkouda)": [[32, "arkouda.register_all"]], "rename() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.rename"], [32, "id133"]], "reset_categories() (arkouda.categorical method)": [[32, "arkouda.Categorical.reset_categories"], [32, "id35"], [32, "id84"]], "reset_index() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.reset_index"], [32, "id134"]], "reshape() (arkouda.pdarray method)": [[32, "arkouda.pdarray.reshape"], [32, "id705"], [32, "id766"], [32, "id827"], [32, "id888"]], "resolve_scalar_dtype() (in module arkouda)": [[32, "arkouda.resolve_scalar_dtype"]], "restore() (in module arkouda)": [[32, "arkouda.restore"]], "return_validity (arkouda.errormode attribute)": [[32, "arkouda.ErrorMode.return_validity"]], "right_align() (in module arkouda)": [[32, "arkouda.right_align"]], "rotl() (arkouda.pdarray method)": [[32, "arkouda.pdarray.rotl"], [32, "id706"], [32, "id767"], [32, "id828"], [32, "id889"]], "rotl() (in module arkouda)": [[32, "arkouda.rotl"]], "rotr() (arkouda.pdarray method)": [[32, "arkouda.pdarray.rotr"], [32, "id707"], [32, "id768"], [32, "id829"], [32, "id890"]], "rotr() (in module arkouda)": [[32, "arkouda.rotr"]], "round() (in module arkouda)": [[32, "arkouda.round"]], "rpeel() (arkouda.strings method)": [[32, "arkouda.Strings.rpeel"], [32, "id446"], [32, "id514"], [32, "id582"], [100, "arkouda.Strings.rpeel"]], "sample() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.sample"], [32, "id135"]], "save() (arkouda.categorical method)": [[32, "arkouda.Categorical.save"], [32, "id36"], [32, "id85"]], "save() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.save"], [32, "id136"]], "save() (arkouda.index method)": [[32, "arkouda.Index.save"]], "save() (arkouda.strings method)": [[32, "arkouda.Strings.save"], [32, "id447"], [32, "id515"], [32, "id583"]], "save() (arkouda.pdarray method)": [[32, "arkouda.pdarray.save"], [32, "id708"], [32, "id769"], [32, "id830"], [32, "id891"]], "save_all() (in module arkouda)": [[32, "arkouda.save_all"]], "search() (arkouda.strings method)": [[32, "arkouda.Strings.search"], [32, "id448"], [32, "id516"], [32, "id584"], [100, "arkouda.Strings.search"]], "search_intervals() (in module arkouda)": [[32, "arkouda.search_intervals"]], "second (arkouda.datetime property)": [[32, "arkouda.Datetime.second"], [32, "id164"], [32, "id197"]], "seconds (arkouda.timedelta property)": [[32, "arkouda.Timedelta.seconds"], [32, "id607"]], "segments (arkouda.categorical attribute)": [[32, "arkouda.Categorical.segments"], [32, "id1"], [32, "id18"], [32, "id55"], [32, "id6"], [32, "id67"], [89, "arkouda.Categorical.segments"]], "segments (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.segments"], [32, "id223"], [32, "id267"], [32, "id311"], [32, "id355"], [92, "arkouda.GroupBy.segments"]], "set_categories() (arkouda.categorical method)": [[32, "arkouda.Categorical.set_categories"], [32, "id37"], [32, "id86"]], "set_dtype() (arkouda.index method)": [[32, "arkouda.Index.set_dtype"]], "set_dtype() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.set_dtype"]], "setdiff1d() (in module arkouda)": [[32, "arkouda.setdiff1d"], [98, "arkouda.setdiff1d"]], "setxor1d() (in module arkouda)": [[32, "arkouda.setxor1d"], [98, "arkouda.setxor1d"]], "shape (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.shape"], [88, "arkouda.ArrayView.shape"]], "shape (arkouda.categorical attribute)": [[32, "arkouda.Categorical.shape"], [32, "id10"], [32, "id59"], [89, "arkouda.Categorical.shape"]], "shape (arkouda.dataframe property)": [[32, "arkouda.DataFrame.shape"], [32, "id106"]], "shape (arkouda.index property)": [[32, "arkouda.Index.shape"]], "shape (arkouda.series property)": [[32, "arkouda.Series.shape"]], "shape (arkouda.strings attribute)": [[32, "arkouda.Strings.shape"], [32, "id403"], [32, "id471"], [32, "id539"]], "shape (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.shape"], [32, "id669"], [32, "id730"], [32, "id791"], [32, "id852"], [95, "arkouda.pdarray.shape"]], "sign() (in module arkouda)": [[32, "arkouda.sign"]], "sin() (in module arkouda)": [[32, "arkouda.sin"], [87, "arkouda.sin"]], "sinh() (in module arkouda)": [[32, "arkouda.sinh"]], "size (arkouda.arrayview attribute)": [[32, "arkouda.ArrayView.size"], [88, "arkouda.ArrayView.size"]], "size (arkouda.categorical attribute)": [[32, "arkouda.Categorical.size"], [32, "id56"], [32, "id7"], [89, "arkouda.Categorical.size"]], "size (arkouda.dataframe property)": [[32, "arkouda.DataFrame.size"], [32, "id107"]], "size (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.size"], [32, "id219"], [32, "id263"], [32, "id307"], [32, "id351"], [92, "arkouda.GroupBy.size"]], "size (arkouda.strings attribute)": [[32, "arkouda.Strings.size"], [32, "id400"], [32, "id468"], [32, "id536"]], "size (arkouda.pdarray attribute)": [[32, "arkouda.pdarray.size"], [32, "id667"], [32, "id728"], [32, "id789"], [32, "id850"], [95, "arkouda.pdarray.size"]], "size() (arkouda.groupby method)": [[32, "id216"], [32, "id252"], [32, "id296"], [32, "id340"], [32, "id384"], [92, "id0"]], "skew() (in module arkouda)": [[32, "arkouda.skew"]], "slice_bits() (arkouda.pdarray method)": [[32, "arkouda.pdarray.slice_bits"], [32, "id709"], [32, "id770"], [32, "id831"], [32, "id892"]], "snapshot() (in module arkouda)": [[32, "arkouda.snapshot"]], "sort() (arkouda.categorical method)": [[32, "arkouda.Categorical.sort"], [32, "id38"], [32, "id87"]], "sort() (in module arkouda)": [[32, "arkouda.sort"]], "sort_index() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.sort_index"], [32, "id137"]], "sort_index() (arkouda.series method)": [[32, "arkouda.Series.sort_index"]], "sort_values() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.sort_values"], [32, "id138"]], "sort_values() (arkouda.series method)": [[32, "arkouda.Series.sort_values"]], "special_objtype (arkouda.bitvector attribute)": [[32, "arkouda.BitVector.special_objType"]], "special_objtype (arkouda.datetime attribute)": [[32, "arkouda.Datetime.special_objType"], [32, "id169"], [32, "id202"]], "special_objtype (arkouda.ipv4 attribute)": [[32, "arkouda.IPv4.special_objType"]], "special_objtype (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.special_objType"], [32, "id608"]], "split() (arkouda.strings method)": [[32, "arkouda.Strings.split"], [32, "id449"], [32, "id517"], [32, "id585"], [100, "arkouda.Strings.split"]], "sqrt() (in module arkouda)": [[32, "arkouda.sqrt"]], "square() (in module arkouda)": [[32, "arkouda.square"]], "standard_normal() (arkouda.generator method)": [[32, "arkouda.Generator.standard_normal"]], "standard_normal() (in module arkouda)": [[32, "arkouda.standard_normal"], [32, "id909"]], "standardize_categories() (arkouda.categorical class method)": [[32, "arkouda.Categorical.standardize_categories"], [32, "id39"], [32, "id88"]], "startswith() (arkouda.categorical method)": [[32, "arkouda.Categorical.startswith"], [32, "id40"], [32, "id89"], [89, "arkouda.Categorical.startswith"]], "startswith() (arkouda.strings method)": [[32, "arkouda.Strings.startswith"], [32, "id450"], [32, "id518"], [32, "id586"], [100, "arkouda.Strings.startswith"]], "statistic (arkouda.power_divergenceresult attribute)": [[32, "arkouda.Power_divergenceResult.statistic"]], "std() (arkouda.groupby method)": [[32, "arkouda.GroupBy.std"], [32, "id253"], [32, "id297"], [32, "id341"], [32, "id385"], [92, "arkouda.GroupBy.std"]], "std() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.std"], [32, "id619"]], "std() (arkouda.pdarray method)": [[32, "arkouda.pdarray.std"], [32, "id710"], [32, "id771"], [32, "id832"], [32, "id893"], [93, "arkouda.pdarray.std"]], "std() (in module arkouda)": [[32, "arkouda.std"], [87, "arkouda.std"]], "stick() (arkouda.strings method)": [[32, "arkouda.Strings.stick"], [32, "id451"], [32, "id519"], [32, "id587"], [100, "arkouda.Strings.stick"]], "str_ (in module arkouda)": [[32, "arkouda.str_"]], "str_acc (arkouda.series attribute)": [[32, "arkouda.Series.str_acc"]], "str_scalars (in module arkouda)": [[32, "arkouda.str_scalars"]], "strict (arkouda.errormode attribute)": [[32, "arkouda.ErrorMode.strict"]], "string_operators() (in module arkouda)": [[32, "arkouda.string_operators"]], "strip() (arkouda.strings method)": [[32, "arkouda.Strings.strip"], [32, "id452"], [32, "id520"], [32, "id588"]], "sub() (arkouda.strings method)": [[32, "arkouda.Strings.sub"], [32, "id453"], [32, "id521"], [32, "id589"], [100, "arkouda.Strings.sub"]], "subn() (arkouda.strings method)": [[32, "arkouda.Strings.subn"], [32, "id454"], [32, "id522"], [32, "id590"], [100, "arkouda.Strings.subn"]], "sum() (arkouda.datetime method)": [[32, "arkouda.Datetime.sum"], [32, "id180"], [32, "id213"]], "sum() (arkouda.groupby method)": [[32, "arkouda.GroupBy.sum"], [32, "id254"], [32, "id298"], [32, "id342"], [32, "id386"], [92, "arkouda.GroupBy.sum"]], "sum() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.sum"], [32, "id620"]], "sum() (arkouda.pdarray method)": [[32, "arkouda.pdarray.sum"], [32, "id711"], [32, "id772"], [32, "id833"], [32, "id894"], [93, "arkouda.pdarray.sum"]], "sum() (in module arkouda)": [[32, "arkouda.sum"], [87, "arkouda.sum"]], "supported_opeq (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_opeq"], [32, "id170"], [32, "id203"]], "supported_opeq (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_opeq"], [32, "id609"]], "supported_with_datetime (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_datetime"], [32, "id171"], [32, "id204"]], "supported_with_datetime (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_datetime"], [32, "id610"]], "supported_with_pdarray (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_pdarray"], [32, "id172"], [32, "id205"]], "supported_with_pdarray (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_pdarray"], [32, "id611"]], "supported_with_r_datetime (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_r_datetime"], [32, "id173"], [32, "id206"]], "supported_with_r_datetime (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_r_datetime"], [32, "id612"]], "supported_with_r_pdarray (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_r_pdarray"], [32, "id174"], [32, "id207"]], "supported_with_r_pdarray (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_r_pdarray"], [32, "id613"]], "supported_with_r_timedelta (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_r_timedelta"], [32, "id175"], [32, "id208"]], "supported_with_r_timedelta (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_r_timedelta"], [32, "id614"]], "supported_with_timedelta (arkouda.datetime attribute)": [[32, "arkouda.Datetime.supported_with_timedelta"], [32, "id176"], [32, "id209"]], "supported_with_timedelta (arkouda.timedelta attribute)": [[32, "arkouda.Timedelta.supported_with_timedelta"], [32, "id615"]], "tail() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.tail"], [32, "id139"]], "tail() (arkouda.series method)": [[32, "arkouda.Series.tail"]], "tan() (in module arkouda)": [[32, "arkouda.tan"]], "tanh() (in module arkouda)": [[32, "arkouda.tanh"]], "timedelta_range() (in module arkouda)": [[32, "arkouda.timedelta_range"], [32, "id910"]], "title() (arkouda.strings method)": [[32, "arkouda.Strings.title"], [32, "id455"], [32, "id523"], [32, "id591"]], "to_csv() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_csv"], [32, "id140"]], "to_csv() (arkouda.index method)": [[32, "arkouda.Index.to_csv"]], "to_csv() (arkouda.strings method)": [[32, "arkouda.Strings.to_csv"], [32, "id456"], [32, "id524"], [32, "id592"]], "to_csv() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_csv"], [32, "id712"], [32, "id773"], [32, "id834"], [32, "id895"]], "to_csv() (in module arkouda)": [[32, "arkouda.to_csv"]], "to_cuda() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_cuda"], [32, "id715"], [32, "id776"], [32, "id837"], [32, "id898"]], "to_dataframe() (arkouda.series method)": [[32, "arkouda.Series.to_dataframe"]], "to_dict() (arkouda.index method)": [[32, "arkouda.Index.to_dict"]], "to_dict() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_dict"]], "to_hdf() (arkouda.arrayview method)": [[32, "arkouda.ArrayView.to_hdf"]], "to_hdf() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_hdf"], [32, "id41"], [32, "id90"]], "to_hdf() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_hdf"], [32, "id141"]], "to_hdf() (arkouda.groupby method)": [[32, "arkouda.GroupBy.to_hdf"], [32, "id255"], [32, "id299"], [32, "id343"], [32, "id387"], [92, "arkouda.GroupBy.to_hdf"]], "to_hdf() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.to_hdf"]], "to_hdf() (arkouda.index method)": [[32, "arkouda.Index.to_hdf"]], "to_hdf() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_hdf"]], "to_hdf() (arkouda.strings method)": [[32, "arkouda.Strings.to_hdf"], [32, "id457"], [32, "id525"], [32, "id593"]], "to_hdf() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_hdf"], [32, "id716"], [32, "id777"], [32, "id838"], [32, "id899"]], "to_hdf() (in module arkouda)": [[32, "arkouda.to_hdf"]], "to_list() (arkouda.arrayview method)": [[32, "arkouda.ArrayView.to_list"]], "to_list() (arkouda.bitvector method)": [[32, "arkouda.BitVector.to_list"]], "to_list() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_list"], [32, "id42"], [32, "id91"]], "to_list() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.to_list"]], "to_list() (arkouda.index method)": [[32, "arkouda.Index.to_list"]], "to_list() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_list"]], "to_list() (arkouda.series method)": [[32, "arkouda.Series.to_list"]], "to_list() (arkouda.strings method)": [[32, "arkouda.Strings.to_list"], [32, "id458"], [32, "id526"], [32, "id594"]], "to_list() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_list"], [32, "id717"], [32, "id778"], [32, "id839"], [32, "id900"]], "to_markdown() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_markdown"], [32, "id142"]], "to_markdown() (arkouda.series method)": [[32, "arkouda.Series.to_markdown"]], "to_ndarray() (arkouda.arrayview method)": [[32, "arkouda.ArrayView.to_ndarray"]], "to_ndarray() (arkouda.bitvector method)": [[32, "arkouda.BitVector.to_ndarray"]], "to_ndarray() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_ndarray"], [32, "id43"], [32, "id92"]], "to_ndarray() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.to_ndarray"]], "to_ndarray() (arkouda.index method)": [[32, "arkouda.Index.to_ndarray"]], "to_ndarray() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_ndarray"]], "to_ndarray() (arkouda.strings method)": [[32, "arkouda.Strings.to_ndarray"], [32, "id459"], [32, "id527"], [32, "id595"]], "to_ndarray() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_ndarray"], [32, "id718"], [32, "id779"], [32, "id840"], [32, "id901"]], "to_pandas() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_pandas"], [32, "id143"]], "to_pandas() (arkouda.datetime method)": [[32, "arkouda.Datetime.to_pandas"], [32, "id181"], [32, "id214"]], "to_pandas() (arkouda.index method)": [[32, "arkouda.Index.to_pandas"]], "to_pandas() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.to_pandas"]], "to_pandas() (arkouda.series method)": [[32, "arkouda.Series.to_pandas"]], "to_pandas() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.to_pandas"], [32, "id621"]], "to_parquet() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_parquet"], [32, "id44"], [32, "id93"]], "to_parquet() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.to_parquet"], [32, "id144"]], "to_parquet() (arkouda.index method)": [[32, "arkouda.Index.to_parquet"]], "to_parquet() (arkouda.strings method)": [[32, "arkouda.Strings.to_parquet"], [32, "id460"], [32, "id528"], [32, "id596"]], "to_parquet() (arkouda.pdarray method)": [[32, "arkouda.pdarray.to_parquet"], [32, "id719"], [32, "id780"], [32, "id841"], [32, "id902"]], "to_parquet() (in module arkouda)": [[32, "arkouda.to_parquet"]], "to_strings() (arkouda.categorical method)": [[32, "arkouda.Categorical.to_strings"], [32, "id45"], [32, "id94"]], "topn() (arkouda.series method)": [[32, "arkouda.Series.topn"]], "total_seconds() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.total_seconds"], [32, "id622"]], "transfer() (arkouda.categorical method)": [[32, "arkouda.Categorical.transfer"], [32, "id46"], [32, "id95"]], "transfer() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.transfer"], [32, "id145"]], "transfer() (arkouda.strings method)": [[32, "arkouda.Strings.transfer"], [32, "id461"], [32, "id529"], [32, "id597"]], "transfer() (arkouda.pdarray method)": [[32, "arkouda.pdarray.transfer"], [32, "id720"], [32, "id781"], [32, "id842"], [32, "id903"]], "translate_np_dtype() (in module arkouda)": [[32, "arkouda.translate_np_dtype"]], "trunc() (in module arkouda)": [[32, "arkouda.trunc"]], "uint16 (in module arkouda)": [[32, "arkouda.uint16"]], "uint32 (in module arkouda)": [[32, "arkouda.uint32"]], "uint64 (in module arkouda)": [[32, "arkouda.uint64"]], "uint8 (in module arkouda)": [[32, "arkouda.uint8"]], "uniform() (arkouda.generator method)": [[32, "arkouda.Generator.uniform"]], "uniform() (in module arkouda)": [[32, "arkouda.uniform"], [32, "id911"]], "union1d() (in module arkouda)": [[32, "arkouda.union1d"], [98, "arkouda.union1d"]], "unique() (arkouda.categorical method)": [[32, "arkouda.Categorical.unique"], [32, "id47"], [32, "id96"]], "unique() (arkouda.groupby method)": [[32, "arkouda.GroupBy.unique"], [32, "id256"], [32, "id300"], [32, "id344"], [32, "id388"], [92, "arkouda.GroupBy.unique"]], "unique() (in module arkouda)": [[32, "arkouda.unique"], [32, "id912"], [32, "id913"], [98, "arkouda.unique"]], "unique_keys (arkouda.groupby attribute)": [[32, "arkouda.GroupBy.unique_keys"], [32, "id221"], [32, "id265"], [32, "id309"], [32, "id353"], [92, "arkouda.GroupBy.unique_keys"]], "unregister() (arkouda.categorical method)": [[32, "arkouda.Categorical.unregister"], [32, "id48"], [32, "id97"]], "unregister() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.unregister"], [32, "id146"]], "unregister() (arkouda.datetime method)": [[32, "arkouda.Datetime.unregister"], [32, "id182"], [32, "id215"]], "unregister() (arkouda.groupby method)": [[32, "arkouda.GroupBy.unregister"], [32, "id257"], [32, "id301"], [32, "id345"], [32, "id389"], [92, "arkouda.GroupBy.unregister"]], "unregister() (arkouda.index method)": [[32, "arkouda.Index.unregister"]], "unregister() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.unregister"]], "unregister() (arkouda.series method)": [[32, "arkouda.Series.unregister"]], "unregister() (arkouda.strings method)": [[32, "arkouda.Strings.unregister"], [32, "id462"], [32, "id530"], [32, "id598"]], "unregister() (arkouda.timedelta method)": [[32, "arkouda.Timedelta.unregister"], [32, "id623"]], "unregister() (arkouda.pdarray method)": [[32, "arkouda.pdarray.unregister"], [32, "id721"], [32, "id782"], [32, "id843"], [32, "id904"]], "unregister() (in module arkouda)": [[32, "arkouda.unregister"]], "unregister_all() (in module arkouda)": [[32, "arkouda.unregister_all"]], "unregister_categorical_by_name() (arkouda.categorical static method)": [[32, "arkouda.Categorical.unregister_categorical_by_name"], [32, "id49"], [32, "id98"]], "unregister_dataframe_by_name() (arkouda.dataframe static method)": [[32, "arkouda.DataFrame.unregister_dataframe_by_name"], [32, "id147"]], "unregister_groupby_by_name() (arkouda.groupby static method)": [[32, "arkouda.GroupBy.unregister_groupby_by_name"], [32, "id258"], [32, "id302"], [32, "id346"], [32, "id390"], [92, "arkouda.GroupBy.unregister_groupby_by_name"]], "unregister_pdarray_by_name() (in module arkouda)": [[32, "arkouda.unregister_pdarray_by_name"]], "unregister_strings_by_name() (arkouda.strings static method)": [[32, "arkouda.Strings.unregister_strings_by_name"], [32, "id463"], [32, "id531"], [32, "id599"]], "unsqueeze() (in module arkouda)": [[32, "arkouda.unsqueeze"]], "update_hdf() (arkouda.arrayview method)": [[32, "arkouda.ArrayView.update_hdf"]], "update_hdf() (arkouda.categorical method)": [[32, "arkouda.Categorical.update_hdf"], [32, "id50"], [32, "id99"]], "update_hdf() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.update_hdf"], [32, "id148"]], "update_hdf() (arkouda.groupby method)": [[32, "arkouda.GroupBy.update_hdf"], [32, "id259"], [32, "id303"], [32, "id347"], [32, "id391"]], "update_hdf() (arkouda.ipv4 method)": [[32, "arkouda.IPv4.update_hdf"]], "update_hdf() (arkouda.index method)": [[32, "arkouda.Index.update_hdf"]], "update_hdf() (arkouda.multiindex method)": [[32, "arkouda.MultiIndex.update_hdf"]], "update_hdf() (arkouda.strings method)": [[32, "arkouda.Strings.update_hdf"], [32, "id464"], [32, "id532"], [32, "id600"]], "update_hdf() (arkouda.pdarray method)": [[32, "arkouda.pdarray.update_hdf"], [32, "id722"], [32, "id783"], [32, "id844"], [32, "id905"]], "update_hdf() (in module arkouda)": [[32, "arkouda.update_hdf"]], "update_nrows() (arkouda.dataframe method)": [[32, "arkouda.DataFrame.update_nrows"], [32, "id149"]], "upper() (arkouda.strings method)": [[32, "arkouda.Strings.upper"], [32, "id465"], [32, "id533"], [32, "id601"]], "validate_key() (arkouda.series method)": [[32, "arkouda.Series.validate_key"]], "validate_val() (arkouda.series method)": [[32, "arkouda.Series.validate_val"]], "value_counts() (arkouda.series method)": [[32, "arkouda.Series.value_counts"]], "value_counts() (arkouda.pdarray method)": [[32, "arkouda.pdarray.value_counts"], [32, "id723"], [32, "id784"], [32, "id845"], [32, "id906"]], "value_counts() (in module arkouda)": [[32, "arkouda.value_counts"], [93, "arkouda.value_counts"]], "values (arkouda.diffaggregate attribute)": [[32, "arkouda.DiffAggregate.values"]], "var() (arkouda.groupby method)": [[32, "arkouda.GroupBy.var"], [32, "id260"], [32, "id304"], [32, "id348"], [32, "id392"], [92, "arkouda.GroupBy.var"]], "var() (arkouda.pdarray method)": [[32, "arkouda.pdarray.var"], [32, "id724"], [32, "id785"], [32, "id846"], [32, "id907"], [93, "arkouda.pdarray.var"]], "var() (in module arkouda)": [[32, "arkouda.var"], [87, "arkouda.var"]], "week (arkouda.datetime property)": [[32, "arkouda.Datetime.week"], [32, "id165"], [32, "id198"]], "weekday (arkouda.datetime property)": [[32, "arkouda.Datetime.weekday"], [32, "id166"], [32, "id199"]], "weekofyear (arkouda.datetime property)": [[32, "arkouda.Datetime.weekofyear"], [32, "id167"], [32, "id200"]], "where() (in module arkouda)": [[32, "arkouda.where"], [32, "id914"], [32, "id915"], [87, "arkouda.where"]], "write_log() (in module arkouda)": [[32, "arkouda.write_log"]], "xlogy() (in module arkouda)": [[32, "arkouda.xlogy"]], "year (arkouda.datetime property)": [[32, "arkouda.Datetime.year"], [32, "id168"], [32, "id201"]], "zero_up() (in module arkouda)": [[32, "arkouda.zero_up"]], "zeros() (in module arkouda)": [[32, "arkouda.zeros"], [32, "id916"], [32, "id917"], [90, "arkouda.zeros"]], "zeros_like() (in module arkouda)": [[32, "arkouda.zeros_like"], [90, "arkouda.zeros_like"]], "index (class in arkouda.index)": [[33, "arkouda.index.Index"]], "multiindex (class in arkouda.index)": [[33, "arkouda.index.MultiIndex"]], "argsort() (arkouda.index.index method)": [[33, "arkouda.index.Index.argsort"]], "argsort() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.argsort"]], "arkouda.index": [[33, "module-arkouda.index"]], "concat() (arkouda.index.index method)": [[33, "arkouda.index.Index.concat"]], "concat() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.concat"]], "factory() (arkouda.index.index static method)": [[33, "arkouda.index.Index.factory"]], "from_return_msg() (arkouda.index.index class method)": [[33, "arkouda.index.Index.from_return_msg"]], "index (arkouda.index.index property)": [[33, "arkouda.index.Index.index"]], "index (arkouda.index.multiindex property)": [[33, "arkouda.index.MultiIndex.index"]], "is_registered() (arkouda.index.index method)": [[33, "arkouda.index.Index.is_registered"]], "is_registered() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.is_registered"]], "is_unique (arkouda.index.index property)": [[33, "arkouda.index.Index.is_unique"]], "lookup() (arkouda.index.index method)": [[33, "arkouda.index.Index.lookup"]], "lookup() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.lookup"]], "memory_usage() (arkouda.index.index method)": [[33, "arkouda.index.Index.memory_usage"]], "memory_usage() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.memory_usage"]], "objtype (arkouda.index.index attribute)": [[33, "arkouda.index.Index.objType"]], "objtype (arkouda.index.multiindex attribute)": [[33, "arkouda.index.MultiIndex.objType"]], "register() (arkouda.index.index method)": [[33, "arkouda.index.Index.register"]], "register() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.register"]], "save() (arkouda.index.index method)": [[33, "arkouda.index.Index.save"]], "set_dtype() (arkouda.index.index method)": [[33, "arkouda.index.Index.set_dtype"]], "set_dtype() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.set_dtype"]], "shape (arkouda.index.index property)": [[33, "arkouda.index.Index.shape"]], "to_csv() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_csv"]], "to_dict() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_dict"]], "to_dict() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_dict"]], "to_hdf() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_hdf"]], "to_hdf() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_hdf"]], "to_list() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_list"]], "to_list() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_list"]], "to_ndarray() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_ndarray"]], "to_ndarray() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_ndarray"]], "to_pandas() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_pandas"]], "to_pandas() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.to_pandas"]], "to_parquet() (arkouda.index.index method)": [[33, "arkouda.index.Index.to_parquet"]], "unregister() (arkouda.index.index method)": [[33, "arkouda.index.Index.unregister"]], "unregister() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.unregister"]], "update_hdf() (arkouda.index.index method)": [[33, "arkouda.index.Index.update_hdf"]], "update_hdf() (arkouda.index.multiindex method)": [[33, "arkouda.index.MultiIndex.update_hdf"]], "allsymbols (in module arkouda.infoclass)": [[34, "arkouda.infoclass.AllSymbols"]], "registeredsymbols (in module arkouda.infoclass)": [[34, "arkouda.infoclass.RegisteredSymbols"]], "arkouda.infoclass": [[34, "module-arkouda.infoclass"]], "information() (in module arkouda.infoclass)": [[34, "arkouda.infoclass.information"]], "list_registry() (in module arkouda.infoclass)": [[34, "arkouda.infoclass.list_registry"]], "list_symbol_table() (in module arkouda.infoclass)": [[34, "arkouda.infoclass.list_symbol_table"]], "pretty_print_information() (in module arkouda.infoclass)": [[34, "arkouda.infoclass.pretty_print_information"]], "arkouda.io": [[35, "module-arkouda.io"]], "export() (in module arkouda.io)": [[35, "arkouda.io.export"]], "get_columns() (in module arkouda.io)": [[35, "arkouda.io.get_columns"]], "get_datasets() (in module arkouda.io)": [[35, "arkouda.io.get_datasets"]], "get_filetype() (in module arkouda.io)": [[35, "arkouda.io.get_filetype"]], "get_null_indices() (in module arkouda.io)": [[35, "arkouda.io.get_null_indices"]], "import_data() (in module arkouda.io)": [[35, "arkouda.io.import_data"]], "load() (in module arkouda.io)": [[35, "arkouda.io.load"]], "load_all() (in module arkouda.io)": [[35, "arkouda.io.load_all"]], "ls() (in module arkouda.io)": [[35, "arkouda.io.ls"]], "ls_csv() (in module arkouda.io)": [[35, "arkouda.io.ls_csv"]], "read() (in module arkouda.io)": [[35, "arkouda.io.read"]], "read_csv() (in module arkouda.io)": [[35, "arkouda.io.read_csv"]], "read_hdf() (in module arkouda.io)": [[35, "arkouda.io.read_hdf"]], "read_parquet() (in module arkouda.io)": [[35, "arkouda.io.read_parquet"]], "read_tagged_data() (in module arkouda.io)": [[35, "arkouda.io.read_tagged_data"]], "receive() (in module arkouda.io)": [[35, "arkouda.io.receive"]], "receive_dataframe() (in module arkouda.io)": [[35, "arkouda.io.receive_dataframe"]], "restore() (in module arkouda.io)": [[35, "arkouda.io.restore"]], "save_all() (in module arkouda.io)": [[35, "arkouda.io.save_all"]], "snapshot() (in module arkouda.io)": [[35, "arkouda.io.snapshot"]], "to_csv() (in module arkouda.io)": [[35, "arkouda.io.to_csv"]], "to_hdf() (in module arkouda.io)": [[35, "arkouda.io.to_hdf"]], "to_parquet() (in module arkouda.io)": [[35, "arkouda.io.to_parquet"]], "update_hdf() (in module arkouda.io)": [[35, "arkouda.io.update_hdf"]], "arkouda.io_util": [[36, "module-arkouda.io_util"]], "delimited_file_to_dict() (in module arkouda.io_util)": [[36, "arkouda.io_util.delimited_file_to_dict"]], "dict_to_delimited_file() (in module arkouda.io_util)": [[36, "arkouda.io_util.dict_to_delimited_file"]], "get_directory() (in module arkouda.io_util)": [[36, "arkouda.io_util.get_directory"]], "write_line_to_file() (in module arkouda.io_util)": [[36, "arkouda.io_util.write_line_to_file"]], "arkouda.join": [[37, "module-arkouda.join"]], "compute_join_size() (in module arkouda.join)": [[37, "arkouda.join.compute_join_size"]], "gen_ranges() (in module arkouda.join)": [[37, "arkouda.join.gen_ranges"]], "join_on_eq_with_dt() (in module arkouda.join)": [[37, "arkouda.join.join_on_eq_with_dt"]], "critical (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.CRITICAL"]], "debug (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.DEBUG"]], "error (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.ERROR"]], "info (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.INFO"]], "loglevel (class in arkouda.logger)": [[38, "arkouda.logger.LogLevel"]], "warn (arkouda.logger.loglevel attribute)": [[38, "arkouda.logger.LogLevel.WARN"]], "arkouda.logger": [[38, "module-arkouda.logger"]], "disableverbose() (in module arkouda.logger)": [[38, "arkouda.logger.disableVerbose"]], "enableverbose() (in module arkouda.logger)": [[38, "arkouda.logger.enableVerbose"]], "write_log() (in module arkouda.logger)": [[38, "arkouda.logger.write_log"]], "match (class in arkouda.match)": [[39, "arkouda.match.Match"]], "arkouda.match": [[39, "module-arkouda.match"]], "end() (arkouda.match.match method)": [[39, "arkouda.match.Match.end"], [100, "arkouda.match.Match.end"]], "find_matches() (arkouda.match.match method)": [[39, "arkouda.match.Match.find_matches"], [100, "arkouda.match.Match.find_matches"]], "group() (arkouda.match.match method)": [[39, "arkouda.match.Match.group"], [100, "arkouda.match.Match.group"]], "match_type() (arkouda.match.match method)": [[39, "arkouda.match.Match.match_type"], [100, "arkouda.match.Match.match_type"]], "matched() (arkouda.match.match method)": [[39, "arkouda.match.Match.matched"], [100, "arkouda.match.Match.matched"]], "start() (arkouda.match.match method)": [[39, "arkouda.match.Match.start"], [100, "arkouda.match.Match.start"]], "locationsinfo (arkouda.matcher.matcher attribute)": [[40, "arkouda.matcher.Matcher.LocationsInfo"]], "matcher (class in arkouda.matcher)": [[40, "arkouda.matcher.Matcher"]], "arkouda.matcher": [[40, "module-arkouda.matcher"]], "find_locations() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.find_locations"]], "findall() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.findall"]], "get_match() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.get_match"]], "split() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.split"]], "sub() (arkouda.matcher.matcher method)": [[40, "arkouda.matcher.Matcher.sub"]], "errormode (class in arkouda.numeric)": [[41, "arkouda.numeric.ErrorMode"]], "abs() (in module arkouda.numeric)": [[41, "arkouda.numeric.abs"]], "arccos() (in module arkouda.numeric)": [[41, "arkouda.numeric.arccos"]], "arccosh() (in module arkouda.numeric)": [[41, "arkouda.numeric.arccosh"]], "arcsin() (in module arkouda.numeric)": [[41, "arkouda.numeric.arcsin"]], "arcsinh() (in module arkouda.numeric)": [[41, "arkouda.numeric.arcsinh"]], "arctan() (in module arkouda.numeric)": [[41, "arkouda.numeric.arctan"]], "arctan2() (in module arkouda.numeric)": [[41, "arkouda.numeric.arctan2"]], "arctanh() (in module arkouda.numeric)": [[41, "arkouda.numeric.arctanh"]], "arkouda.numeric": [[41, "module-arkouda.numeric"]], "cast() (in module arkouda.numeric)": [[41, "arkouda.numeric.cast"]], "ceil() (in module arkouda.numeric)": [[41, "arkouda.numeric.ceil"]], "cos() (in module arkouda.numeric)": [[41, "arkouda.numeric.cos"]], "cosh() (in module arkouda.numeric)": [[41, "arkouda.numeric.cosh"]], "cumprod() (in module arkouda.numeric)": [[41, "arkouda.numeric.cumprod"]], "cumsum() (in module arkouda.numeric)": [[41, "arkouda.numeric.cumsum"]], "deg2rad() (in module arkouda.numeric)": [[41, "arkouda.numeric.deg2rad"]], "exp() (in module arkouda.numeric)": [[41, "arkouda.numeric.exp"]], "expm1() (in module arkouda.numeric)": [[41, "arkouda.numeric.expm1"]], "floor() (in module arkouda.numeric)": [[41, "arkouda.numeric.floor"]], "hash() (in module arkouda.numeric)": [[41, "arkouda.numeric.hash"]], "histogram() (in module arkouda.numeric)": [[41, "arkouda.numeric.histogram"]], "histogram2d() (in module arkouda.numeric)": [[41, "arkouda.numeric.histogram2d"]], "histogramdd() (in module arkouda.numeric)": [[41, "arkouda.numeric.histogramdd"]], "ignore (arkouda.numeric.errormode attribute)": [[41, "arkouda.numeric.ErrorMode.ignore"]], "isfinite() (in module arkouda.numeric)": [[41, "arkouda.numeric.isfinite"]], "isinf() (in module arkouda.numeric)": [[41, "arkouda.numeric.isinf"]], "isnan() (in module arkouda.numeric)": [[41, "arkouda.numeric.isnan"]], "log() (in module arkouda.numeric)": [[41, "arkouda.numeric.log"]], "log10() (in module arkouda.numeric)": [[41, "arkouda.numeric.log10"]], "log1p() (in module arkouda.numeric)": [[41, "arkouda.numeric.log1p"]], "log2() (in module arkouda.numeric)": [[41, "arkouda.numeric.log2"]], "rad2deg() (in module arkouda.numeric)": [[41, "arkouda.numeric.rad2deg"]], "return_validity (arkouda.numeric.errormode attribute)": [[41, "arkouda.numeric.ErrorMode.return_validity"]], "round() (in module arkouda.numeric)": [[41, "arkouda.numeric.round"]], "sign() (in module arkouda.numeric)": [[41, "arkouda.numeric.sign"]], "sin() (in module arkouda.numeric)": [[41, "arkouda.numeric.sin"]], "sinh() (in module arkouda.numeric)": [[41, "arkouda.numeric.sinh"]], "square() (in module arkouda.numeric)": [[41, "arkouda.numeric.square"]], "strict (arkouda.numeric.errormode attribute)": [[41, "arkouda.numeric.ErrorMode.strict"]], "tan() (in module arkouda.numeric)": [[41, "arkouda.numeric.tan"]], "tanh() (in module arkouda.numeric)": [[41, "arkouda.numeric.tanh"]], "trunc() (in module arkouda.numeric)": [[41, "arkouda.numeric.trunc"]], "value_counts() (in module arkouda.numeric)": [[41, "arkouda.numeric.value_counts"]], "where() (in module arkouda.numeric)": [[41, "arkouda.numeric.where"]], "binops (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.BinOps"]], "opeqops (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.OpEqOps"]], "all() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.all"]], "all() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.all"]], "any() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.any"]], "any() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.any"]], "argmax() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.argmax"]], "argmax() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.argmax"]], "argmaxk() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.argmaxk"]], "argmaxk() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.argmaxk"]], "argmin() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.argmin"]], "argmin() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.argmin"]], "argmink() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.argmink"]], "argmink() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.argmink"]], "arkouda.pdarrayclass": [[42, "module-arkouda.pdarrayclass"]], "astype() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.astype"]], "attach() (arkouda.pdarrayclass.pdarray static method)": [[42, "arkouda.pdarrayclass.pdarray.attach"]], "attach_pdarray() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.attach_pdarray"]], "bigint_to_uint_arrays() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.bigint_to_uint_arrays"]], "broadcast_to_shape() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.broadcast_to_shape"]], "clear() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.clear"]], "clz() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.clz"]], "clz() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.clz"]], "corr() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.corr"]], "corr() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.corr"]], "cov() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.cov"]], "cov() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.cov"]], "ctz() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.ctz"]], "ctz() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.ctz"]], "divmod() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.divmod"]], "dot() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.dot"]], "dtype (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.dtype"]], "fill() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.fill"]], "fmod() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.fmod"]], "format_other() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.format_other"]], "info() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.info"]], "is_registered() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.is_registered"]], "is_sorted() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.is_sorted"]], "is_sorted() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.is_sorted"]], "itemsize (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.itemsize"]], "max() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.max"]], "max() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.max"]], "max_bits (arkouda.pdarrayclass.pdarray property)": [[42, "arkouda.pdarrayclass.pdarray.max_bits"]], "maxk() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.maxk"]], "maxk() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.maxk"]], "mean() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.mean"]], "mean() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.mean"]], "min() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.min"]], "min() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.min"]], "mink() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.mink"]], "mink() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.mink"]], "mod() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.mod"]], "name (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.name"]], "nbytes (arkouda.pdarrayclass.pdarray property)": [[42, "arkouda.pdarrayclass.pdarray.nbytes"]], "ndim (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.ndim"]], "objtype (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.objType"]], "opeq() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.opeq"]], "parity() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.parity"]], "parity() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.parity"]], "pdarray (class in arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.pdarray"]], "popcount() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.popcount"]], "popcount() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.popcount"]], "power() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.power"]], "pretty_print_info() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.pretty_print_info"]], "prod() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.prod"]], "prod() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.prod"]], "register() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.register"]], "reshape() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.reshape"]], "rotl() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.rotl"]], "rotl() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.rotl"]], "rotr() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.rotr"]], "rotr() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.rotr"]], "save() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.save"]], "shape (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.shape"]], "size (arkouda.pdarrayclass.pdarray attribute)": [[42, "arkouda.pdarrayclass.pdarray.size"]], "slice_bits() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.slice_bits"]], "sqrt() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.sqrt"]], "std() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.std"]], "std() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.std"]], "sum() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.sum"]], "sum() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.sum"]], "to_csv() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_csv"]], "to_cuda() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_cuda"]], "to_hdf() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_hdf"]], "to_list() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_list"]], "to_ndarray() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_ndarray"]], "to_parquet() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.to_parquet"]], "transfer() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.transfer"]], "unregister() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.unregister"]], "unregister_pdarray_by_name() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.unregister_pdarray_by_name"]], "update_hdf() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.update_hdf"]], "value_counts() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.value_counts"]], "var() (arkouda.pdarrayclass.pdarray method)": [[42, "arkouda.pdarrayclass.pdarray.var"]], "var() (in module arkouda.pdarrayclass)": [[42, "arkouda.pdarrayclass.var"]], "arange() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.arange"]], "arkouda.pdarraycreation": [[43, "module-arkouda.pdarraycreation"]], "array() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.array"]], "bigint_from_uint_arrays() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.bigint_from_uint_arrays"]], "from_series() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.from_series"]], "full() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.full"]], "full_like() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.full_like"]], "linspace() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.linspace"]], "ones() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.ones"]], "ones_like() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.ones_like"]], "randint() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.randint"]], "random_strings_lognormal() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.random_strings_lognormal"]], "random_strings_uniform() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.random_strings_uniform"]], "standard_normal() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.standard_normal"]], "uniform() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.uniform"]], "zeros() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.zeros"]], "zeros_like() (in module arkouda.pdarraycreation)": [[43, "arkouda.pdarraycreation.zeros_like"]], "arkouda.pdarraysetops": [[44, "module-arkouda.pdarraysetops"]], "concatenate() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.concatenate"]], "in1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.in1d"]], "indexof1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.indexof1d"]], "intersect1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.intersect1d"]], "setdiff1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.setdiff1d"]], "setxor1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.setxor1d"]], "union1d() (in module arkouda.pdarraysetops)": [[44, "arkouda.pdarraysetops.union1d"]], "arkouda.plotting": [[45, "module-arkouda.plotting"]], "hist_all() (in module arkouda.plotting)": [[45, "arkouda.plotting.hist_all"]], "plot_dist() (in module arkouda.plotting)": [[45, "arkouda.plotting.plot_dist"]], "generator (class in arkouda.random._generator)": [[46, "arkouda.random._generator.Generator"]], "arkouda.random._generator": [[46, "module-arkouda.random._generator"]], "default_rng() (in module arkouda.random._generator)": [[46, "arkouda.random._generator.default_rng"]], "integers() (arkouda.random._generator.generator method)": [[46, "arkouda.random._generator.Generator.integers"]], "random() (arkouda.random._generator.generator method)": [[46, "arkouda.random._generator.Generator.random"]], "standard_normal() (arkouda.random._generator.generator method)": [[46, "arkouda.random._generator.Generator.standard_normal"]], "uniform() (arkouda.random._generator.generator method)": [[46, "arkouda.random._generator.Generator.uniform"]], "arkouda.random._legacy": [[47, "module-arkouda.random._legacy"]], "randint() (in module arkouda.random._legacy)": [[47, "arkouda.random._legacy.randint"]], "standard_normal() (in module arkouda.random._legacy)": [[47, "arkouda.random._legacy.standard_normal"]], "uniform() (in module arkouda.random._legacy)": [[47, "arkouda.random._legacy.uniform"]], "generator (class in arkouda.random)": [[48, "arkouda.random.Generator"]], "arkouda.random": [[48, "module-arkouda.random"]], "integers() (arkouda.random.generator method)": [[48, "arkouda.random.Generator.integers"]], "randint() (in module arkouda.random)": [[48, "arkouda.random.randint"]], "random() (arkouda.random.generator method)": [[48, "arkouda.random.Generator.random"]], "standard_normal() (arkouda.random.generator method)": [[48, "arkouda.random.Generator.standard_normal"]], "standard_normal() (in module arkouda.random)": [[48, "arkouda.random.standard_normal"]], "uniform() (arkouda.random.generator method)": [[48, "arkouda.random.Generator.uniform"]], "uniform() (in module arkouda.random)": [[48, "arkouda.random.uniform"]], "row (class in arkouda.row)": [[49, "arkouda.row.Row"]], "arkouda.row": [[49, "module-arkouda.row"]], "arkouda.security": [[50, "module-arkouda.security"]], "generate_token() (in module arkouda.security)": [[50, "arkouda.security.generate_token"]], "generate_username_token_json() (in module arkouda.security)": [[50, "arkouda.security.generate_username_token_json"]], "get_arkouda_client_directory() (in module arkouda.security)": [[50, "arkouda.security.get_arkouda_client_directory"]], "get_home_directory() (in module arkouda.security)": [[50, "arkouda.security.get_home_directory"]], "get_username() (in module arkouda.security)": [[50, "arkouda.security.get_username"]], "username_tokenizer (in module arkouda.security)": [[50, "arkouda.security.username_tokenizer"]], "and() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.AND"]], "len_suffix (in module arkouda.segarray)": [[51, "arkouda.segarray.LEN_SUFFIX"]], "or() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.OR"]], "seg_suffix (in module arkouda.segarray)": [[51, "arkouda.segarray.SEG_SUFFIX"]], "segarray (class in arkouda.segarray)": [[51, "arkouda.segarray.SegArray"]], "val_suffix (in module arkouda.segarray)": [[51, "arkouda.segarray.VAL_SUFFIX"]], "xor() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.XOR"]], "aggregate() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.aggregate"]], "all() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.all"]], "any() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.any"]], "append() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.append"]], "append_single() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.append_single"]], "argmax() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.argmax"]], "argmin() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.argmin"]], "arkouda.segarray": [[51, "module-arkouda.segarray"]], "attach() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.attach"]], "concat() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.concat"]], "copy() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.copy"]], "filter() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.filter"]], "from_multi_array() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.from_multi_array"]], "from_parts() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.from_parts"]], "from_return_msg() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.from_return_msg"]], "get_jth() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_jth"]], "get_length_n() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_length_n"]], "get_ngrams() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_ngrams"]], "get_prefixes() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_prefixes"]], "get_suffixes() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.get_suffixes"]], "grouping (arkouda.segarray.segarray property)": [[51, "arkouda.segarray.SegArray.grouping"]], "hash() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.hash"]], "intersect() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.intersect"]], "is_registered() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.is_registered"]], "load() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.load"]], "max() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.max"]], "mean() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.mean"]], "min() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.min"]], "non_empty (arkouda.segarray.segarray property)": [[51, "arkouda.segarray.SegArray.non_empty"]], "nunique() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.nunique"]], "objtype (arkouda.segarray.segarray attribute)": [[51, "arkouda.segarray.SegArray.objType"]], "prepend_single() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.prepend_single"]], "prod() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.prod"]], "read_hdf() (arkouda.segarray.segarray class method)": [[51, "arkouda.segarray.SegArray.read_hdf"]], "register() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.register"]], "remove_repeats() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.remove_repeats"]], "save() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.save"]], "segarray() (in module arkouda.segarray)": [[51, "arkouda.segarray.segarray"]], "set_jth() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.set_jth"]], "setdiff() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.setdiff"]], "setxor() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.setxor"]], "sum() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.sum"]], "to_hdf() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.to_hdf"]], "to_list() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.to_list"]], "to_ndarray() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.to_ndarray"]], "to_parquet() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.to_parquet"]], "transfer() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.transfer"]], "union() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.union"]], "unique() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.unique"]], "unregister() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.unregister"]], "unregister_segarray_by_name() (arkouda.segarray.segarray static method)": [[51, "arkouda.segarray.SegArray.unregister_segarray_by_name"]], "update_hdf() (arkouda.segarray.segarray method)": [[51, "arkouda.segarray.SegArray.update_hdf"]], "series (class in arkouda.series)": [[52, "arkouda.series.Series"]], "add() (arkouda.series.series method)": [[52, "arkouda.series.Series.add"]], "arkouda.series": [[52, "module-arkouda.series"]], "at (arkouda.series.series property)": [[52, "arkouda.series.Series.at"]], "attach() (arkouda.series.series static method)": [[52, "arkouda.series.Series.attach"]], "concat() (arkouda.series.series static method)": [[52, "arkouda.series.Series.concat"]], "diff() (arkouda.series.series method)": [[52, "arkouda.series.Series.diff"]], "dt (arkouda.series.series attribute)": [[52, "arkouda.series.Series.dt"]], "from_return_msg() (arkouda.series.series class method)": [[52, "arkouda.series.Series.from_return_msg"]], "has_repeat_labels() (arkouda.series.series method)": [[52, "arkouda.series.Series.has_repeat_labels"]], "head() (arkouda.series.series method)": [[52, "arkouda.series.Series.head"]], "iat (arkouda.series.series property)": [[52, "arkouda.series.Series.iat"]], "iloc (arkouda.series.series property)": [[52, "arkouda.series.Series.iloc"]], "is_registered() (arkouda.series.series method)": [[52, "arkouda.series.Series.is_registered"]], "isin() (arkouda.series.series method)": [[52, "arkouda.series.Series.isin"]], "loc (arkouda.series.series property)": [[52, "arkouda.series.Series.loc"]], "locate() (arkouda.series.series method)": [[52, "arkouda.series.Series.locate"]], "map() (arkouda.series.series method)": [[52, "arkouda.series.Series.map"]], "memory_usage() (arkouda.series.series method)": [[52, "arkouda.series.Series.memory_usage"]], "objtype (arkouda.series.series attribute)": [[52, "arkouda.series.Series.objType"]], "pdconcat() (arkouda.series.series static method)": [[52, "arkouda.series.Series.pdconcat"]], "register() (arkouda.series.series method)": [[52, "arkouda.series.Series.register"]], "shape (arkouda.series.series property)": [[52, "arkouda.series.Series.shape"]], "sort_index() (arkouda.series.series method)": [[52, "arkouda.series.Series.sort_index"]], "sort_values() (arkouda.series.series method)": [[52, "arkouda.series.Series.sort_values"]], "str_acc (arkouda.series.series attribute)": [[52, "arkouda.series.Series.str_acc"]], "tail() (arkouda.series.series method)": [[52, "arkouda.series.Series.tail"]], "to_dataframe() (arkouda.series.series method)": [[52, "arkouda.series.Series.to_dataframe"]], "to_list() (arkouda.series.series method)": [[52, "arkouda.series.Series.to_list"]], "to_markdown() (arkouda.series.series method)": [[52, "arkouda.series.Series.to_markdown"]], "to_pandas() (arkouda.series.series method)": [[52, "arkouda.series.Series.to_pandas"]], "topn() (arkouda.series.series method)": [[52, "arkouda.series.Series.topn"]], "unregister() (arkouda.series.series method)": [[52, "arkouda.series.Series.unregister"]], "validate_key() (arkouda.series.series method)": [[52, "arkouda.series.Series.validate_key"]], "validate_val() (arkouda.series.series method)": [[52, "arkouda.series.Series.validate_val"]], "value_counts() (arkouda.series.series method)": [[52, "arkouda.series.Series.value_counts"]], "argsort() (in module arkouda.sorting)": [[53, "arkouda.sorting.argsort"]], "arkouda.sorting": [[53, "module-arkouda.sorting"]], "coargsort() (in module arkouda.sorting)": [[53, "arkouda.sorting.coargsort"]], "sort() (in module arkouda.sorting)": [[53, "arkouda.sorting.sort"]], "binops (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.BinOps"]], "strings (class in arkouda.strings)": [[54, "arkouda.strings.Strings"]], "arkouda.strings": [[54, "module-arkouda.strings"]], "astype() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.astype"]], "attach() (arkouda.strings.strings static method)": [[54, "arkouda.strings.Strings.attach"]], "cached_regex_patterns() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.cached_regex_patterns"]], "capitalize() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.capitalize"]], "contains() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.contains"]], "decode() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.decode"]], "dtype (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.dtype"]], "encode() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.encode"]], "endswith() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.endswith"]], "entry (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.entry"]], "find_locations() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.find_locations"]], "findall() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.findall"]], "flatten() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.flatten"]], "from_parts() (arkouda.strings.strings static method)": [[54, "arkouda.strings.Strings.from_parts"]], "from_return_msg() (arkouda.strings.strings static method)": [[54, "arkouda.strings.Strings.from_return_msg"]], "fullmatch() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.fullmatch"]], "get_bytes() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_bytes"]], "get_lengths() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_lengths"]], "get_offsets() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_offsets"]], "get_prefixes() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_prefixes"]], "get_suffixes() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.get_suffixes"]], "group() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.group"]], "hash() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.hash"]], "info() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.info"]], "is_registered() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.is_registered"]], "isalnum() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isalnum"]], "isalpha() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isalpha"]], "isdigit() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isdigit"]], "isempty() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isempty"]], "islower() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.islower"]], "isspace() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isspace"]], "istitle() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.istitle"]], "isupper() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.isupper"]], "logger (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.logger"]], "lower() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.lower"]], "lstick() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.lstick"]], "match() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.match"]], "nbytes (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.nbytes"]], "ndim (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.ndim"]], "objtype (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.objType"]], "peel() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.peel"]], "pretty_print_info() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.pretty_print_info"]], "purge_cached_regex_patterns() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.purge_cached_regex_patterns"]], "register() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.register"]], "rpeel() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.rpeel"]], "save() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.save"]], "search() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.search"]], "shape (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.shape"]], "size (arkouda.strings.strings attribute)": [[54, "arkouda.strings.Strings.size"]], "split() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.split"]], "startswith() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.startswith"]], "stick() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.stick"]], "strip() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.strip"]], "sub() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.sub"]], "subn() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.subn"]], "title() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.title"]], "to_csv() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_csv"]], "to_hdf() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_hdf"]], "to_list() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_list"]], "to_ndarray() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_ndarray"]], "to_parquet() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.to_parquet"]], "transfer() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.transfer"]], "unregister() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.unregister"]], "unregister_strings_by_name() (arkouda.strings.strings static method)": [[54, "arkouda.strings.Strings.unregister_strings_by_name"]], "update_hdf() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.update_hdf"]], "upper() (arkouda.strings.strings method)": [[54, "arkouda.strings.Strings.upper"]], "datetime (class in arkouda.timeclass)": [[55, "arkouda.timeclass.Datetime"]], "timedelta (class in arkouda.timeclass)": [[55, "arkouda.timeclass.Timedelta"]], "abs() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.abs"]], "arkouda.timeclass": [[55, "module-arkouda.timeclass"]], "components (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.components"]], "date (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.date"]], "date_range() (in module arkouda.timeclass)": [[55, "arkouda.timeclass.date_range"]], "day (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day"]], "day_of_week (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day_of_week"]], "day_of_year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.day_of_year"]], "dayofweek (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.dayofweek"]], "dayofyear (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.dayofyear"]], "days (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.days"]], "hour (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.hour"]], "is_leap_year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.is_leap_year"]], "is_registered() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.is_registered"]], "is_registered() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.is_registered"]], "isocalendar() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.isocalendar"]], "microsecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.microsecond"]], "microseconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.microseconds"]], "millisecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.millisecond"]], "minute (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.minute"]], "month (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.month"]], "nanosecond (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.nanosecond"]], "nanoseconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.nanoseconds"]], "register() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.register"]], "register() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.register"]], "second (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.second"]], "seconds (arkouda.timeclass.timedelta property)": [[55, "arkouda.timeclass.Timedelta.seconds"]], "special_objtype (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.special_objType"]], "special_objtype (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.special_objType"]], "std() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.std"]], "sum() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.sum"]], "sum() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.sum"]], "supported_opeq (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_opeq"]], "supported_opeq (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_opeq"]], "supported_with_datetime (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_datetime"]], "supported_with_datetime (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_datetime"]], "supported_with_pdarray (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_pdarray"]], "supported_with_pdarray (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_pdarray"]], "supported_with_r_datetime (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_datetime"]], "supported_with_r_datetime (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_datetime"]], "supported_with_r_pdarray (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_pdarray"]], "supported_with_r_pdarray (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_pdarray"]], "supported_with_r_timedelta (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_r_timedelta"]], "supported_with_r_timedelta (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_r_timedelta"]], "supported_with_timedelta (arkouda.timeclass.datetime attribute)": [[55, "arkouda.timeclass.Datetime.supported_with_timedelta"]], "supported_with_timedelta (arkouda.timeclass.timedelta attribute)": [[55, "arkouda.timeclass.Timedelta.supported_with_timedelta"]], "timedelta_range() (in module arkouda.timeclass)": [[55, "arkouda.timeclass.timedelta_range"]], "to_pandas() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.to_pandas"]], "to_pandas() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.to_pandas"]], "total_seconds() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.total_seconds"]], "unregister() (arkouda.timeclass.datetime method)": [[55, "arkouda.timeclass.Datetime.unregister"]], "unregister() (arkouda.timeclass.timedelta method)": [[55, "arkouda.timeclass.Timedelta.unregister"]], "week (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.week"]], "weekday (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.weekday"]], "weekofyear (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.weekofyear"]], "year (arkouda.timeclass.datetime property)": [[55, "arkouda.timeclass.Datetime.year"]], "arkouda.util": [[56, "module-arkouda.util"]], "attach() (in module arkouda.util)": [[56, "arkouda.util.attach"]], "attach_all() (in module arkouda.util)": [[56, "arkouda.util.attach_all"]], "broadcast_dims() (in module arkouda.util)": [[56, "arkouda.util.broadcast_dims"]], "concatenate() (in module arkouda.util)": [[56, "arkouda.util.concatenate"]], "convert_bytes() (in module arkouda.util)": [[56, "arkouda.util.convert_bytes"]], "convert_if_categorical() (in module arkouda.util)": [[56, "arkouda.util.convert_if_categorical"]], "enrich_inplace() (in module arkouda.util)": [[56, "arkouda.util.enrich_inplace"]], "expand() (in module arkouda.util)": [[56, "arkouda.util.expand"]], "generic_concat() (in module arkouda.util)": [[56, "arkouda.util.generic_concat"]], "get_callback() (in module arkouda.util)": [[56, "arkouda.util.get_callback"]], "identity() (in module arkouda.util)": [[56, "arkouda.util.identity"]], "invert_permutation() (in module arkouda.util)": [[56, "arkouda.util.invert_permutation"]], "is_registered() (in module arkouda.util)": [[56, "arkouda.util.is_registered"]], "most_common() (in module arkouda.util)": [[56, "arkouda.util.most_common"]], "register() (in module arkouda.util)": [[56, "arkouda.util.register"]], "register_all() (in module arkouda.util)": [[56, "arkouda.util.register_all"]], "report_mem() (in module arkouda.util)": [[56, "arkouda.util.report_mem"]], "sparse_sum_help() (in module arkouda.util)": [[56, "arkouda.util.sparse_sum_help"]], "unregister() (in module arkouda.util)": [[56, "arkouda.util.unregister"]], "unregister_all() (in module arkouda.util)": [[56, "arkouda.util.unregister_all"]], "to_ndarray() (in module arkouda.strings)": [[84, "arkouda.Strings.to_ndarray"], [100, "arkouda.Strings.to_ndarray"]], "to_ndarray() (in module arkouda.pdarray)": [[84, "arkouda.pdarray.to_ndarray"], [95, "arkouda.pdarray.to_ndarray"]], "argsort() (in module arkouda.index)": [[85, "arkouda.Index.argsort"]], "argsort() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.argsort"]], "concat() (in module arkouda.index)": [[85, "arkouda.Index.concat"]], "concat() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.concat"]], "lookup() (in module arkouda.index)": [[85, "arkouda.Index.lookup"]], "lookup() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.lookup"]], "set_dtype() (in module arkouda.index)": [[85, "arkouda.Index.set_dtype"]], "set_dtype() (in module arkouda.multiindex)": [[85, "arkouda.MultiIndex.set_dtype"]], "to_ndarray() (in module arkouda.arrayview)": [[88, "arkouda.ArrayView.to_ndarray"]], "to_ndarray() (in module arkouda.categorical)": [[89, "arkouda.Categorical.to_ndarray"]], "apply_permutation() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.apply_permutation"]], "argsort() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.argsort"]], "coargsort() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.coargsort"]], "concat() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.concat"]], "copy() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.copy"]], "drop() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.drop"]], "drop_duplicates() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.drop_duplicates"]], "groupby() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.groupby"]], "head() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.head"]], "rename() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.rename"]], "reset_index() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.reset_index"]], "sort_values() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.sort_values"]], "tail() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.tail"]], "to_pandas() (in module arkouda.dataframe)": [[91, "arkouda.DataFrame.to_pandas"]], "append() (in module arkouda.segarray)": [[96, "arkouda.SegArray.append"]], "append_single() (in module arkouda.segarray)": [[96, "arkouda.SegArray.append_single"]], "get_jth() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_jth"]], "get_length_n() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_length_n"]], "get_ngrams() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_ngrams"]], "get_prefixes() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_prefixes"]], "get_suffixes() (in module arkouda.segarray)": [[96, "arkouda.SegArray.get_suffixes"]], "intersect() (in module arkouda.segarray)": [[96, "arkouda.SegArray.intersect"]], "prepend_single() (in module arkouda.segarray)": [[96, "arkouda.SegArray.prepend_single"]], "remove_repeats() (in module arkouda.segarray)": [[96, "arkouda.SegArray.remove_repeats"]], "set_jth() (in module arkouda.segarray)": [[96, "arkouda.SegArray.set_jth"]], "setdiff() (in module arkouda.segarray)": [[96, "arkouda.SegArray.setdiff"]], "setxor() (in module arkouda.segarray)": [[96, "arkouda.SegArray.setxor"]], "to_ndarray() (in module arkouda.segarray)": [[96, "arkouda.SegArray.to_ndarray"]], "union() (in module arkouda.segarray)": [[96, "arkouda.SegArray.union"]], "head() (in module arkouda.series)": [[97, "arkouda.Series.head"]], "locate() (in module arkouda.series)": [[97, "arkouda.Series.locate"], [97, "id0"]], "pdconcat() (in module arkouda.series)": [[97, "arkouda.Series.pdconcat"]], "sort_index() (in module arkouda.series)": [[97, "arkouda.Series.sort_index"]], "sort_values() (in module arkouda.series)": [[97, "arkouda.Series.sort_values"]], "tail() (in module arkouda.series)": [[97, "arkouda.Series.tail"]], "to_pandas() (in module arkouda.series)": [[97, "arkouda.Series.to_pandas"]], "topn() (in module arkouda.series)": [[97, "arkouda.Series.topn"]], "value_counts() (in module arkouda.series)": [[97, "arkouda.Series.value_counts"]], "connect() (in module arkouda)": [[99, "arkouda.connect"]]}}) \ No newline at end of file diff --git a/usage/IO.html b/usage/IO.html index 6951a66606..49ec41b7ab 100644 --- a/usage/IO.html +++ b/usage/IO.html @@ -316,7 +316,7 @@

                                              Between client and serverReturn type: -

                                              pdarray or Strings

                                              +

                                              pdarray or Strings

                                              Raises:
                                                @@ -389,7 +389,7 @@

                                                Between client and server

                                                See also

                                                -

                                                array, to_list

                                                +

                                                array, to_list

                                                Examples

                                                >>> a = ak.arange(0, 5, 1)
                                                @@ -427,7 +427,7 @@ 

                                                Between client and server

                                                See also

                                                -

                                                array, to_list

                                                +

                                                array, to_list

                                                Examples

                                                >>> a = ak.array(["hello", "my", "world"])
                                                diff --git a/usage/argsort.html b/usage/argsort.html
                                                index df1d529c9a..32fae2934d 100644
                                                --- a/usage/argsort.html
                                                +++ b/usage/argsort.html
                                                @@ -289,11 +289,11 @@
                                                 

                                                Sorting#

                                                -arkouda.argsort(pda: pdarray | Strings | 'Categorical', algorithm: SortingAlgorithm = SortingAlgorithm.RadixSortLSD, axis: int_scalars = 0) pdarray[source]#
                                                +arkouda.argsort(pda: pdarray | Strings | 'Categorical', algorithm: SortingAlgorithm = SortingAlgorithm.RadixSortLSD, axis: int_scalars = 0) pdarray[source]#

                                                Return the permutation that sorts the array.

                                                Parameters:
                                                -

                                                pda (pdarray or Strings or Categorical) – The array to sort (int64, uint64, or float64)

                                                +

                                                pda (pdarray or Strings or Categorical) – The array to sort (int64, uint64, or float64)

                                                Returns:

                                                The indices such that pda[indices] is sorted

                                                @@ -323,13 +323,13 @@
                                                -arkouda.coargsort(arrays: Sequence[Strings | pdarray | 'Categorical'], algorithm: SortingAlgorithm = SortingAlgorithm.RadixSortLSD) pdarray[source]#
                                                +arkouda.coargsort(arrays: Sequence[Strings | pdarray | 'Categorical'], algorithm: SortingAlgorithm = SortingAlgorithm.RadixSortLSD) pdarray[source]#

                                                Return the permutation that groups the rows (left-to-right), if the input arrays are treated as columns. The permutation sorts numeric columns, but not strings/Categoricals – strings/Categoricals are grouped, but not ordered.

                                                Parameters:
                                                -

                                                arrays (Sequence[Union[Strings, pdarray, Categorical]]) – The columns (int64, uint64, float64, Strings, or Categorical) to sort by row

                                                +

                                                arrays (Sequence[Union[Strings, pdarray, Categorical]]) – The columns (int64, uint64, float64, Strings, or Categorical) to sort by row

                                                Returns:

                                                The indices that permute the rows to grouped order

                                                diff --git a/usage/arithmetic.html b/usage/arithmetic.html index e34ada2db1..f346cf6183 100644 --- a/usage/arithmetic.html +++ b/usage/arithmetic.html @@ -1039,8 +1039,8 @@

                                                Where#<
                                                Parameters:
                                                Returns:
                                                diff --git a/usage/categorical.html b/usage/categorical.html index d30e2cf30e..0a2950ded3 100644 --- a/usage/categorical.html +++ b/usage/categorical.html @@ -302,7 +302,7 @@

                                                Construction
                                                Parameters:
                                                  -
                                                • values (Strings) – String values to convert to categories

                                                • +
                                                • values (Strings) – String values to convert to categories

                                                • NAvalue (str scalar) – The value to use to represent missing/null data

                                                @@ -313,7 +313,7 @@

                                                Construction
                                                Type:
                                                -

                                                Strings

                                                +

                                                Strings

                                                @@ -410,7 +410,7 @@

                                                ConstructionParameters:

                                                @@ -735,7 +735,7 @@
                                                Parameters:
                                                  -
                                                • values (pdarray, Strings) – The values to put in each group’s segment

                                                • +
                                                • values (pdarray, Strings) – The values to put in each group’s segment

                                                • permute (bool) – If True (default), permute broadcast values back to the ordering of the original array on which GroupBy was called. If False, the broadcast values are grouped by value.

                                                • @@ -745,7 +745,7 @@

                                                  The broadcasted values

                                                  Return type:
                                                  -

                                                  pdarray, Strings

                                                  +

                                                  pdarray, Strings

                                                  Raises:
                                                    @@ -870,7 +870,7 @@

                                                    bool

                                                    Raises:
                                                    -

                                                    RegistrationError – Raised if there’s a server-side error or a mismatch of registered components

                                                    +

                                                    RegistrationError – Raised if there’s a server-side error or a mismatch of registered components

                                                @@ -1205,7 +1205,7 @@
                                                Raises:
                                                • TypeError – Raised if user_defined_name is not a str

                                                • -
                                                • RegistrationError – If the server was unable to register the GroupBy with the user_defined_name

                                                • +
                                                • RegistrationError – If the server was unable to register the GroupBy with the user_defined_name

                                                @@ -1410,7 +1410,7 @@ registered using register() and/or attached to using attach()

                                                Raises:
                                                -

                                                RegistrationError – If the object is already unregistered or if there is a server error +

                                                RegistrationError – If the object is already unregistered or if there is a server error when attempting to unregister

                                                @@ -1435,7 +1435,7 @@
                                                Raises:
                                                • TypeError – if user_defined_name is not a string

                                                • -
                                                • RegistrationError – if there is an issue attempting to unregister any underlying components

                                                • +
                                                • RegistrationError – if there is an issue attempting to unregister any underlying components

                                                diff --git a/usage/pdarray.html b/usage/pdarray.html index 61a901d108..a63d992289 100644 --- a/usage/pdarray.html +++ b/usage/pdarray.html @@ -419,7 +419,7 @@

                                                Iteration

                                                See also

                                                -

                                                array, to_list

                                                +

                                                array, to_list

                                                Examples

                                                >>> a = ak.arange(0, 5, 1)
                                                @@ -451,7 +451,7 @@ 

                                                Iteration
                                                Parameters:
                                                  -
                                                • pda (pdarray or Strings) – The array of values to cast

                                                • +
                                                • pda (pdarray or Strings) – The array of values to cast

                                                • dt (np.dtype, type, or str) – The target dtype to cast values to

                                                • errors ({strict, ignore, return_validity}) –

                                                  Controls how errors are handled when casting strings to a numeric type (ignored for casts from numeric types).

                                                  diff --git a/usage/series.html b/usage/series.html index cb1636bca7..f79118d6d7 100644 --- a/usage/series.html +++ b/usage/series.html @@ -295,7 +295,7 @@

                                                  Series in Arkouda
                                                  Parameters:
                                                    -
                                                  • index (pdarray, Strings) – an array of indices associated with the data array. +

                                                  • index (pdarray, Strings) – an array of indices associated with the data array. If empty, it will default to a range of ints whose size match the size of the data. optional

                                                  • data (Tuple, List, groupable_element_type) – a 1D array. Must not be None.

                                                  • diff --git a/usage/setops.html b/usage/setops.html index 48596cea9e..b3971d9c8d 100644 --- a/usage/setops.html +++ b/usage/setops.html @@ -299,7 +299,7 @@
                                                    Parameters:
                                                      -
                                                    • pda ((list of) pdarray, Strings, or Categorical) – Input array.

                                                    • +
                                                    • pda ((list of) pdarray, Strings, or Categorical) – Input array.

                                                    • return_groups (bool, optional) – If True, also return grouping information for the array.

                                                    • return_indices (bool, optional) – Only applicable if return_groups is True. If True, return unique key indices along with other groups

                                                    • @@ -343,8 +343,8 @@
                                                      Parameters:
                                                        -
                                                      • a (list of pdarrays, pdarray, Strings, or Categorical) – Rows are elements for which to test membership in b

                                                      • -
                                                      • b (list of pdarrays, pdarray, Strings, or Categorical) – Rows are elements of the set in which to test membership

                                                      • +
                                                      • a (list of pdarrays, pdarray, Strings, or Categorical) – Rows are elements for which to test membership in b

                                                      • +
                                                      • b (list of pdarrays, pdarray, Strings, or Categorical) – Rows are elements of the set in which to test membership

                                                      • assume_unique (bool) – If true, assume rows of a and b are each unique and sorted. By default, sort and unique them explicitly.

                                                      • symmetric (bool) – Return in1d(pda1, pda2), in1d(pda2, pda1) when pda1 and 2 are single items.

                                                      • @@ -377,7 +377,7 @@

                                                        Return Type
                                                        Parameters:
                                                        @@ -426,7 +426,7 @@

                                                        Return Type
                                                        Parameters:
                                                          -
                                                        • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                                                        • +
                                                        • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                                                        • pda2 (pdarray/List) – Input array/sequence of groupable objects

                                                        • assume_unique (bool) – If True, the input arrays are both assumed to be unique, which can speed up the calculation. Default is False.

                                                        • @@ -477,7 +477,7 @@

                                                          Return Type
                                                          Parameters:
                                                            -
                                                          • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                                                          • +
                                                          • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                                                          • pda2 (pdarray/List) – Input array/sequence of groupable objects

                                                          • assume_unique (bool) – If True, the input arrays are both assumed to be unique, which can speed up the calculation. Default is False.

                                                          • @@ -529,7 +529,7 @@

                                                            Return Type
                                                            Parameters:
                                                              -
                                                            • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                                                            • +
                                                            • pda1 (pdarray/Sequence[pdarray, Strings, Categorical]) – Input array/Sequence of groupable objects

                                                            • pda2 (pdarray/List) – Input array/sequence of groupable objects

                                                            • assume_unique (bool) – If True, the input arrays are both assumed to be unique, which can speed up the calculation. Default is False.

                                                            • diff --git a/usage/strings.html b/usage/strings.html index 44894cf71a..ebd236a74b 100644 --- a/usage/strings.html +++ b/usage/strings.html @@ -329,7 +329,7 @@

                                                              Iteration

                                                              See also

                                                              -

                                                              array, to_list

                                                              +

                                                              array, to_list

                                                Examples

                                                >>> a = ak.array(["hello", "my", "world"])
                                                @@ -536,7 +536,7 @@ 

                                                Splitting and joining

                                              Return type:
                                              -

                                              Tuple[Strings, Strings]

                                              +

                                              Tuple[Strings, Strings]

                                              Raises:
                                                @@ -599,7 +599,7 @@

                                                Splitting and joining

                                              Return type:
                                              -

                                              Tuple[Strings, Strings]

                                              +

                                              Tuple[Strings, Strings]

                                              Raises: