Skip to content

Commit

Permalink
Deploying to gh-pages from @ 3b9f8f7 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] committed Mar 1, 2024
1 parent fc1f02f commit c45e8e8
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 35 deletions.
19 changes: 11 additions & 8 deletions _modules/arkouda/dataframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -4323,13 +4323,13 @@ <h1>Source code for arkouda.dataframe</h1><div class="highlight"><pre>

<span class="sd"> &gt;&gt;&gt; corr = df.corr()</span>

<span class="sd"> +----+--------+--------+</span>
<span class="sd"> | | col1 | col2 |</span>
<span class="sd"> +====+========+========+</span>
<span class="sd"> | 0 | 1 | -1 |</span>
<span class="sd"> +----+--------+--------+</span>
<span class="sd"> | 1 | -1 | 1 |</span>
<span class="sd"> +----+--------+--------+</span>
<span class="sd"> +------+--------+--------+</span>
<span class="sd"> | | col1 | col2 |</span>
<span class="sd"> +======+========+========+</span>
<span class="sd"> | col1 | 1 | -1 |</span>
<span class="sd"> +------+--------+--------+</span>
<span class="sd"> | col2 | -1 | 1 |</span>
<span class="sd"> +------+--------+--------+</span>

<span class="sd"> &quot;&quot;&quot;</span>

Expand All @@ -4345,7 +4345,10 @@ <h1>Source code for arkouda.dataframe</h1><div class="highlight"><pre>
<span class="p">}</span>

<span class="n">ret_dict</span> <span class="o">=</span> <span class="n">json</span><span class="o">.</span><span class="n">loads</span><span class="p">(</span><span class="n">generic_msg</span><span class="p">(</span><span class="n">cmd</span><span class="o">=</span><span class="s2">&quot;corrMatrix&quot;</span><span class="p">,</span> <span class="n">args</span><span class="o">=</span><span class="n">args</span><span class="p">))</span>
<span class="k">return</span> <span class="n">DataFrame</span><span class="p">({</span><span class="n">c</span><span class="p">:</span> <span class="n">create_pdarray</span><span class="p">(</span><span class="n">ret_dict</span><span class="p">[</span><span class="n">c</span><span class="p">])</span> <span class="k">for</span> <span class="n">c</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">columns</span><span class="o">.</span><span class="n">values</span><span class="p">})</span></div>
<span class="k">return</span> <span class="n">DataFrame</span><span class="p">(</span>
<span class="p">{</span><span class="n">c</span><span class="p">:</span> <span class="n">create_pdarray</span><span class="p">(</span><span class="n">ret_dict</span><span class="p">[</span><span class="n">c</span><span class="p">])</span> <span class="k">for</span> <span class="n">c</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">columns</span><span class="o">.</span><span class="n">values</span><span class="p">},</span>
<span class="n">index</span><span class="o">=</span><span class="n">array</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">columns</span><span class="o">.</span><span class="n">values</span><span class="p">),</span>
<span class="p">)</span></div>


<div class="viewcode-block" id="DataFrame.merge">
Expand Down
14 changes: 7 additions & 7 deletions _sources/autoapi/arkouda/dataframe/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -748,13 +748,13 @@ Functions

>>> corr = df.corr()

+----+--------+--------+
| | col1 | col2 |
+====+========+========+
| 0 | 1 | -1 |
+----+--------+--------+
| 1 | -1 | 1 |
+----+--------+--------+
+------+--------+--------+
| | col1 | col2 |
+======+========+========+
| col1 | 1 | -1 |
+------+--------+--------+
| col2 | -1 | 1 |
+------+--------+--------+


.. py:method:: drop(keys: Union[str, int, List[Union[str, int]]], axis: Union[str, int] = 0, inplace: bool = False) -> Union[None, DataFrame]
Expand Down
28 changes: 14 additions & 14 deletions _sources/autoapi/arkouda/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1402,13 +1402,13 @@ Attributes

>>> corr = df.corr()

+----+--------+--------+
| | col1 | col2 |
+====+========+========+
| 0 | 1 | -1 |
+----+--------+--------+
| 1 | -1 | 1 |
+----+--------+--------+
+------+--------+--------+
| | col1 | col2 |
+======+========+========+
| col1 | 1 | -1 |
+------+--------+--------+
| col2 | -1 | 1 |
+------+--------+--------+


.. py:method:: drop(keys: Union[str, int, List[Union[str, int]]], axis: Union[str, int] = 0, inplace: bool = False) -> Union[None, DataFrame]
Expand Down Expand Up @@ -3644,13 +3644,13 @@ Attributes

>>> corr = df.corr()

+----+--------+--------+
| | col1 | col2 |
+====+========+========+
| 0 | 1 | -1 |
+----+--------+--------+
| 1 | -1 | 1 |
+----+--------+--------+
+------+--------+--------+
| | col1 | col2 |
+======+========+========+
| col1 | 1 | -1 |
+------+--------+--------+
| col2 | -1 | 1 |
+------+--------+--------+


.. py:method:: drop(keys: Union[str, int, List[Union[str, int]]], axis: Union[str, int] = 0, inplace: bool = False) -> Union[None, DataFrame]
Expand Down
4 changes: 2 additions & 2 deletions autoapi/arkouda/dataframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1620,11 +1620,11 @@ <h3>Functions<a class="headerlink" href="#functions" title="Link to this heading
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>0</p></td>
<tr class="row-even"><td><p>col1</p></td>
<td><p>1</p></td>
<td><p>-1</p></td>
</tr>
<tr class="row-odd"><td><p>1</p></td>
<tr class="row-odd"><td><p>col2</p></td>
<td><p>-1</p></td>
<td><p>1</p></td>
</tr>
Expand Down
8 changes: 4 additions & 4 deletions autoapi/arkouda/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2951,11 +2951,11 @@ <h3>Attributes<a class="headerlink" href="#attributes" title="Link to this headi
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>0</p></td>
<tr class="row-even"><td><p>col1</p></td>
<td><p>1</p></td>
<td><p>-1</p></td>
</tr>
<tr class="row-odd"><td><p>1</p></td>
<tr class="row-odd"><td><p>col2</p></td>
<td><p>-1</p></td>
<td><p>1</p></td>
</tr>
Expand Down Expand Up @@ -6736,11 +6736,11 @@ <h3>Attributes<a class="headerlink" href="#attributes" title="Link to this headi
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>0</p></td>
<tr class="row-even"><td><p>col1</p></td>
<td><p>1</p></td>
<td><p>-1</p></td>
</tr>
<tr class="row-odd"><td><p>1</p></td>
<tr class="row-odd"><td><p>col2</p></td>
<td><p>-1</p></td>
<td><p>1</p></td>
</tr>
Expand Down

0 comments on commit c45e8e8

Please sign in to comment.