8000 deploy: 95f41429115d4ca378e2a526daba53e0ce029ce0 · xarray-contrib/xarray-tutorial@6f746af · GitHub
[go: up one dir, main page]

Skip to content

Commit 6f746af

Browse files
committed
deploy: 95f4142
1 parent b9ee8f3 commit 6f746af

File tree

8 files changed

+257
-257
lines changed

8 files changed

+257
-257
lines changed

_sources/advanced/apply_ufunc/dask_apply_ufunc.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
" choice if your function can handle dask arrays and won't compute the result unless \n",
148148
" explicitly requested.\n",
149149
"2. `dask=\"parallelized\"`. This applies the user function over blocks of the dask\n",
150-
" array using `dask.array.blockwise`. This is useful when your function cannot\n",
150+
" array using `dask.array.apply_gufunc`. This is useful when your function cannot\n",
151151
" handle dask arrays natively (e.g. scipy API)."
152152
]
153153
},

_sources/intermediate/indexing/boolean-masking-indexing.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
":class: dropdown\n",
185185
"```python\n",
186186
"da_masked = da.where(da.yc >= 60)\n",
187-
"da_masked[0, :, :].plot();\n",
187+
"da_masked[:, :].plot();\n",
188188
"```\n",
189189
"````"
190190
]

advanced/apply_ufunc/dask_apply_ufunc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ <h2>A simple example<a class="headerlink" href="#a-simple-example" title="Permal
13821382
choice if your function can handle dask arrays and won’t compute the result unless
13831383
explicitly requested.</p></li>
13841384
<li><p><code class="docutils literal notranslate"><span class="pre">dask=&quot;parallelized&quot;</span></code>. This applies the user function over blocks of the dask
1385-
array using <code class="docutils literal notranslate"><span class="pre">dask.array.blockwise</span></code>. This is useful when your function cannot
1385+
array using <code class="docutils literal notranslate"><span class="pre">dask.array.apply_gufunc</span></code>. This is useful when your function cannot
13861386
handle dask arrays natively (e.g. scipy API).</p></li>
13871387
</ol>
13881388
<div class="cell tag_raises-exception docutils container">

fundamentals/02.1_indexing_Basic.html

Lines changed: 103 additions & 103 deletions
Large diffs are not rendered by default.

intermediate/01-high-level-computation-patterns.html

Lines changed: 123 additions & 123 deletions
Large diffs are not rendered by default.

intermediate/indexing/advanced-indexing.html

Lines changed: 26 additions & 26 deletions
Large diffs are not rendered by default.

intermediate/indexing/boolean-masking-indexing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1828,7 +1828,7 @@ <h2>Masking with <code class="docutils literal notranslate"><span class="pre">wh
18281828
<p class="admonition-title">Solution to<a class="reference internal" href="#boolean-2"> Exercise 16</a></p>
18291829
<section id="solution-content">
18301830
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="n">da_masked</span> <span class="o">=</span> <span class="n">da</span><span class="o">.</span><span class="n">where</span><span class="p">(</span><span class="n">da</span><span class="o">.</span><span class="n">yc</span> <span class="o">&gt;=</span> <span class="mi">60</span><span class="p">)</span>
1831-
<span class="n">da_masked</span><span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="p">:,</span> <span class="p">:]</span><span class="o">.</span><span class="n">plot</span><span class="p">();</span>
1831+
<span class="n">da_masked</span><span class="p">[:,</span> <span class="p">:]</span><span class="o">.</span><span class="n">plot</span><span class="p">();</span>
18321832
</pre></div>
18331833
</div>
18341834
</section>

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
0