Skip to content

Commit

Permalink
Deploying to gh-pages from @ 5af79f8 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] committed Oct 9, 2024
1 parent 2e25d26 commit 8c9fbfc
Show file tree
Hide file tree
Showing 8 changed files with 147 additions and 33 deletions.
16 changes: 14 additions & 2 deletions _modules/arkouda/pdarrayclass.html
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ <h1>Source code for arkouda.pdarrayclass</h1><div class="highlight"><pre>
<span class="bp">self</span><span class="o">.</span><span class="n">dtype</span> <span class="o">=</span> <span class="n">dtype</span><span class="p">(</span><span class="n">mydtype</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">size</span> <span class="o">=</span> <span class="n">size</span>
<span class="bp">self</span><span class="o">.</span><span class="n">ndim</span> <span class="o">=</span> <span class="n">ndim</span>
<span class="bp">self</span><span class="o">.</span><span class="n">shape</span> <span class="o">=</span> <span class="n">shape</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_shape</span> <span class="o">=</span> <span class="nb">tuple</span><span class="p">(</span><span class="n">shape</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">itemsize</span> <span class="o">=</span> <span class="n">itemsize</span>
<span class="k">if</span> <span class="n">max_bits</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">max_bits</span> <span class="o">=</span> <span class="n">max_bits</span>
Expand Down Expand Up @@ -753,6 +753,18 @@ <h1>Source code for arkouda.pdarrayclass</h1><div class="highlight"><pre>

<span class="k">return</span> <span class="n">generic_msg</span><span class="p">(</span><span class="n">cmd</span><span class="o">=</span><span class="s2">&quot;repr&quot;</span><span class="p">,</span> <span class="n">args</span><span class="o">=</span><span class="p">{</span><span class="s2">&quot;array&quot;</span><span class="p">:</span> <span class="bp">self</span><span class="p">,</span> <span class="s2">&quot;printThresh&quot;</span><span class="p">:</span> <span class="n">pdarrayIterThresh</span><span class="p">})</span>

<span class="nd">@property</span>
<span class="k">def</span> <span class="nf">shape</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Return the shape of an array.</span>

<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> tuple of int</span>
<span class="sd"> The elements of the shape tuple give the lengths of the corresponding array dimensions.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="k">return</span> <span class="nb">tuple</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_shape</span><span class="p">)</span>

<span class="nd">@property</span>
<span class="k">def</span> <span class="nf">max_bits</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">dtype</span> <span class="o">==</span> <span class="n">bigint</span><span class="p">:</span>
Expand Down Expand Up @@ -1328,7 +1340,7 @@ <h1>Source code for arkouda.pdarrayclass</h1><div class="highlight"><pre>

<span class="c1"># use &#39;None&#39; values in the original key to expand the dimensions</span>
<span class="n">shape</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">rs</span> <span class="o">=</span> <span class="n">ret_array</span><span class="o">.</span><span class="n">shape</span>
<span class="n">rs</span> <span class="o">=</span> <span class="nb">list</span><span class="p">(</span><span class="n">ret_array</span><span class="o">.</span><span class="n">shape</span><span class="p">)</span>
<span class="k">for</span> <span class="n">k</span> <span class="ow">in</span> <span class="n">key_with_none</span><span class="p">:</span>
<span class="k">if</span> <span class="n">k</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="n">shape</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span>
Expand Down
36 changes: 30 additions & 6 deletions _sources/autoapi/arkouda/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39180,7 +39180,11 @@ Package Contents



.. py:attribute:: shape
.. py:property:: shape
Return the shape of an array.

:returns: The elements of the shape tuple give the lengths of the corresponding array dimensions.
:rtype: tuple of int


.. py:attribute:: size
Expand Down Expand Up @@ -40173,7 +40177,11 @@ Package Contents



.. py:attribute:: shape
.. py:property:: shape
Return the shape of an array.

:returns: The elements of the shape tuple give the lengths of the corresponding array dimensions.
:rtype: tuple of int


.. py:attribute:: size
Expand Down Expand Up @@ -41166,7 +41174,11 @@ Package Contents



.. py:attribute:: shape
.. py:property:: shape
Return the shape of an array.

:returns: The elements of the shape tuple give the lengths of the corresponding array dimensions.
:rtype: tuple of int


.. py:attribute:: size
Expand Down Expand Up @@ -42159,7 +42171,11 @@ Package Contents



.. py:attribute:: shape
.. py:property:: shape
Return the shape of an array.

:returns: The elements of the shape tuple give the lengths of the corresponding array dimensions.
:rtype: tuple of int


.. py:attribute:: size
Expand Down Expand Up @@ -43152,7 +43168,11 @@ Package Contents



.. py:attribute:: shape
.. py:property:: shape
Return the shape of an array.

:returns: The elements of the shape tuple give the lengths of the corresponding array dimensions.
:rtype: tuple of int


.. py:attribute:: size
Expand Down Expand Up @@ -44145,7 +44165,11 @@ Package Contents



.. py:attribute:: shape
.. py:property:: shape
Return the shape of an array.

:returns: The elements of the shape tuple give the lengths of the corresponding array dimensions.
:rtype: tuple of int


.. py:attribute:: size
Expand Down
6 changes: 5 additions & 1 deletion _sources/autoapi/arkouda/pdarrayclass/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,11 @@ Module Contents



.. py:attribute:: shape
.. py:property:: shape
Return the shape of an array.

:returns: The elements of the shape tuple give the lengths of the corresponding array dimensions.
:rtype: tuple of int


.. py:attribute:: size
Expand Down
96 changes: 78 additions & 18 deletions autoapi/arkouda/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52078,10 +52078,20 @@ <h2>Package Contents<a class="headerlink" href="#package-contents" title="Link t
</div>
</dd></dl>

<dl class="py attribute">
<dl class="py property">
<dt class="sig sig-object py" id="id913">
<span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id913" title="Link to this definition">¶</a></dt>
<dd></dd></dl>
<em class="property"><span class="pre">property</span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id913" title="Link to this definition">¶</a></dt>
<dt class="sig sig-object py">
<span class="sig-name descname"><span class="pre">Return</span> <span class="pre">the</span> <span class="pre">shape</span> <span class="pre">of</span> <span class="pre">an</span> <span class="pre">array.</span></span></dt>
<dd><dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The elements of the shape tuple give the lengths of the corresponding array dimensions.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p>tuple of int</p>
</dd>
</dl>
</dd></dl>

<dl class="py attribute">
<dt class="sig sig-object py" id="id914">
Expand Down Expand Up @@ -53317,10 +53327,20 @@ <h2>Package Contents<a class="headerlink" href="#package-contents" title="Link t
</div>
</dd></dl>

<dl class="py attribute">
<dl class="py property">
<dt class="sig sig-object py" id="id969">
<span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id969" title="Link to this definition">¶</a></dt>
<dd></dd></dl>
<em class="property"><span class="pre">property</span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id969" title="Link to this definition">¶</a></dt>
<dt class="sig sig-object py">
<span class="sig-name descname"><span class="pre">Return</span> <span class="pre">the</span> <span class="pre">shape</span> <span class="pre">of</span> <span class="pre">an</span> <span class="pre">array.</span></span></dt>
<dd><dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The elements of the shape tuple give the lengths of the corresponding array dimensions.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p>tuple of int</p>
</dd>
</dl>
</dd></dl>

<dl class="py attribute">
<dt class="sig sig-object py" id="id970">
Expand Down Expand Up @@ -54556,10 +54576,20 @@ <h2>Package Contents<a class="headerlink" href="#package-contents" title="Link t
</div>
</dd></dl>

<dl class="py attribute">
<dl class="py property">
<dt class="sig sig-object py" id="id1039">
<span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id1039" title="Link to this definition">¶</a></dt>
<dd></dd></dl>
<em class="property"><span class="pre">property</span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id1039" title="Link to this definition">¶</a></dt>
<dt class="sig sig-object py">
<span class="sig-name descname"><span class="pre">Return</span> <span class="pre">the</span> <span class="pre">shape</span> <span class="pre">of</span> <span class="pre">an</span> <span class="pre">array.</span></span></dt>
<dd><dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The elements of the shape tuple give the lengths of the corresponding array dimensions.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p>tuple of int</p>
</dd>
</dl>
</dd></dl>

<dl class="py attribute">
<dt class="sig sig-object py" id="id1040">
Expand Down Expand Up @@ -55795,10 +55825,20 @@ <h2>Package Contents<a class="headerlink" href="#package-contents" title="Link t
</div>
</dd></dl>

<dl class="py attribute">
<dl class="py property">
<dt class="sig sig-object py" id="id1109">
<span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id1109" title="Link to this definition">¶</a></dt>
<dd></dd></dl>
<em class="property"><span class="pre">property</span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id1109" title="Link to this definition">¶</a></dt>
<dt class="sig sig-object py">
<span class="sig-name descname"><span class="pre">Return</span> <span class="pre">the</span> <span class="pre">shape</span> <span class="pre">of</span> <span class="pre">an</span> <span class="pre">array.</span></span></dt>
<dd><dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The elements of the shape tuple give the lengths of the corresponding array dimensions.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p>tuple of int</p>
</dd>
</dl>
</dd></dl>

<dl class="py attribute">
<dt class="sig sig-object py" id="id1110">
Expand Down Expand Up @@ -57034,10 +57074,20 @@ <h2>Package Contents<a class="headerlink" href="#package-contents" title="Link t
</div>
</dd></dl>

<dl class="py attribute">
<dl class="py property">
<dt class="sig sig-object py" id="id1179">
<span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id1179" title="Link to this definition">¶</a></dt>
<dd></dd></dl>
<em class="property"><span class="pre">property</span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id1179" title="Link to this definition">¶</a></dt>
<dt class="sig sig-object py">
<span class="sig-name descname"><span class="pre">Return</span> <span class="pre">the</span> <span class="pre">shape</span> <span class="pre">of</span> <span class="pre">an</span> <span class="pre">array.</span></span></dt>
<dd><dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The elements of the shape tuple give the lengths of the corresponding array dimensions.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p>tuple of int</p>
</dd>
</dl>
</dd></dl>

<dl class="py attribute">
<dt class="sig sig-object py" id="id1180">
Expand Down Expand Up @@ -58273,10 +58323,20 @@ <h2>Package Contents<a class="headerlink" href="#package-contents" title="Link t
</div>
</dd></dl>

<dl class="py attribute">
<dl class="py property">
<dt class="sig sig-object py" id="id1249">
<span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id1249" title="Link to this definition">¶</a></dt>
<dd></dd></dl>
<em class="property"><span class="pre">property</span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id1249" title="Link to this definition">¶</a></dt>
<dt class="sig sig-object py">
<span class="sig-name descname"><span class="pre">Return</span> <span class="pre">the</span> <span class="pre">shape</span> <span class="pre">of</span> <span class="pre">an</span> <span class="pre">array.</span></span></dt>
<dd><dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The elements of the shape tuple give the lengths of the corresponding array dimensions.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p>tuple of int</p>
</dd>
</dl>
</dd></dl>

<dl class="py attribute">
<dt class="sig sig-object py" id="id1250">
Expand Down
16 changes: 13 additions & 3 deletions autoapi/arkouda/pdarrayclass/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1923,10 +1923,20 @@ <h2>Module Contents<a class="headerlink" href="#module-contents" title="Link to
</div>
</dd></dl>

<dl class="py attribute">
<dl class="py property">
<dt class="sig sig-object py" id="id4">
<span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id4" title="Link to this definition"></a></dt>
<dd></dd></dl>
<em class="property"><span class="pre">property</span><span class="w"> </span></em><span class="sig-name descname"><span class="pre">shape</span></span><a class="headerlink" href="#id4" title="Link to this definition"></a></dt>
<dt class="sig sig-object py">
<span class="sig-name descname"><span class="pre">Return</span> <span class="pre">the</span> <span class="pre">shape</span> <span class="pre">of</span> <span class="pre">an</span> <span class="pre">array.</span></span></dt>
<dd><dl class="field-list simple">
<dt class="field-odd">Returns<span class="colon">:</span></dt>
<dd class="field-odd"><p>The elements of the shape tuple give the lengths of the corresponding array dimensions.</p>
</dd>
<dt class="field-even">Return type<span class="colon">:</span></dt>
<dd class="field-even"><p>tuple of int</p>
</dd>
</dl>
</dd></dl>

<dl class="py attribute">
<dt class="sig sig-object py" id="id5">
Expand Down
8 changes: 6 additions & 2 deletions genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -7605,9 +7605,13 @@ <h2>S</h2>
</li>
<li><a href="autoapi/arkouda/index/index.html#arkouda.index.Index.shape">(arkouda.index.Index property)</a>
</li>
<li><a href="autoapi/arkouda/index.html#arkouda.pdarray.shape">(arkouda.pdarray attribute)</a>, <a href="autoapi/arkouda/index.html#id1039">[1]</a>, <a href="autoapi/arkouda/index.html#id1062">[2]</a>, <a href="autoapi/arkouda/index.html#id1109">[3]</a>, <a href="autoapi/arkouda/index.html#id1132">[4]</a>, <a href="autoapi/arkouda/index.html#id1179">[5]</a>, <a href="autoapi/arkouda/index.html#id1202">[6]</a>, <a href="autoapi/arkouda/index.html#id1249">[7]</a>, <a href="autoapi/arkouda/index.html#id913">[8]</a>, <a href="autoapi/arkouda/index.html#id922">[9]</a>, <a href="autoapi/arkouda/index.html#id969">[10]</a>, <a href="autoapi/arkouda/index.html#id992">[11]</a>, <a href="usage/pdarray.html#arkouda.pdarray.shape">[12]</a>
<li><a href="autoapi/arkouda/index.html#arkouda.pdarray.shape">(arkouda.pdarray attribute)</a>, <a href="autoapi/arkouda/index.html#id1062">[1]</a>, <a href="autoapi/arkouda/index.html#id1132">[2]</a>, <a href="autoapi/arkouda/index.html#id1202">[3]</a>, <a href="autoapi/arkouda/index.html#id922">[4]</a>, <a href="autoapi/arkouda/index.html#id992">[5]</a>, <a href="usage/pdarray.html#arkouda.pdarray.shape">[6]</a>
</li>
<li><a href="autoapi/arkouda/pdarrayclass/index.html#arkouda.pdarrayclass.pdarray.shape">(arkouda.pdarrayclass.pdarray attribute)</a>, <a href="autoapi/arkouda/pdarrayclass/index.html#id4">[1]</a>
<li><a href="autoapi/arkouda/index.html#id1039">(arkouda.pdarray property)</a>, <a href="autoapi/arkouda/index.html#id1109">[1]</a>, <a href="autoapi/arkouda/index.html#id1179">[2]</a>, <a href="autoapi/arkouda/index.html#id1249">[3]</a>, <a href="autoapi/arkouda/index.html#id913">[4]</a>, <a href="autoapi/arkouda/index.html#id969">[5]</a>
</li>
<li><a href="autoapi/arkouda/pdarrayclass/index.html#arkouda.pdarrayclass.pdarray.shape">(arkouda.pdarrayclass.pdarray attribute)</a>
</li>
<li><a href="autoapi/arkouda/pdarrayclass/index.html#id4">(arkouda.pdarrayclass.pdarray property)</a>
</li>
<li><a href="autoapi/arkouda/index.html#arkouda.Series.shape">(arkouda.Series property)</a>
</li>
Expand Down
Binary file modified objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

0 comments on commit 8c9fbfc

Please sign in to comment.