Skip to content

Commit

Permalink
deploy: 7a82bac
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-brett committed Sep 14, 2023
1 parent 60ee04c commit 532e1e3
Show file tree
Hide file tree
Showing 42 changed files with 511 additions and 207 deletions.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
77 changes: 51 additions & 26 deletions _sources/regression_notation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jupyter:
extension: .Rmd
format_name: rmarkdown
format_version: '1.2'
jupytext_version: 1.10.3
jupytext_version: 1.15.0
kernelspec:
display_name: Python 3
display_name: Python 3 (ipykernel)
language: python
name: python3
---
Expand Down Expand Up @@ -161,61 +161,86 @@ plt.legend()

## Mathematical notation


```{python tags=c("hide-input")}
# Utilities to format LaTeX output.
# You don't need to understand this code - it is to format
# the mathematics in the notebook.
import pandas as pd
from IPython.display import display, Math
def format_vec(x, name, break_every=5):
vals = [f'{v}, ' for v in x[:-1]] + [f'{x[-1]}']
indent = rf'\hspace{{1.5em}}'
for pi, pos in enumerate(range(break_every, n, break_every)):
vals.insert(pos + pi, r'\\' + f'\n{indent}')
return rf'\vec{{{name}}} = [%s]' % ''.join(vals)
```

Our next step is to write out this model more generally and more formally in
mathematical symbols, so we can think about *any* vector (sequence) of x values
$\xvec$, and any sequence (vector) of matching y values $\yvec$. But to start
with, let's think about the actual set of values we have for $\xvec$. We could
write the actual values in mathematical notation as:

$$
\xvec = [ 0.389, 0.2 , 0.241, 0.463, \\
4.585, 1.097, 1.642, 4.972, \\
7.957, 5.585, 5.527, 6.964 ]
$$
```{python tags=c("hide-input")}
display(Math(format_vec(x, 'x', 6)))
```

This means that $\xvec$ is a sequence of these specific 12 values. But we
could write $\xvec$ in a more general way, to be *any* 12 values, like this:

$$
\xvec = [ x_1, x_2, x_3, x_4, x_5, x_6,\\
x_7, x_8, x_9, x_{10}, x_{11}, x_{12} ]
$$
```{python tags=c("hide-input")}
indices = np.arange(1, n + 1)
x_is = [f'x_{{{i}}}' for i in indices]
display(Math(format_vec(x_is, 'x', 6)))
```

This means that $\xvec$ consists of 12 numbers, $x_1, x_2 ..., x_{12}$, where
$x_1$ can be any number, $x_2$ can be any number, and so on.

$x_1$ is the value for the first student, $x_2$ is the value for the second student, and so on.
$x_1$ is the value for the first student, $x_2$ is the value for the second student, etc.

In our *particular case*:
Here's another way of looking at the relationship of the values in our
particular case, and their notation:

$$
x_1 = 0.389 \\
x_2 = 0.2 \\
... \\
x_{12} = 6.964
$$
```{python tags=c("hide-input")}
df_index = pd.Index(indices, name='1-based index')
pd.DataFrame(
{r'$\vec{x}$ values': x,
f'$x$ value notation':
[f'${v}$' for v in x_is]
},
index=df_index
)
```

We can make $\xvec$ be even more general, by writing it like this:

$$
\xvec = [ x_1, x_2, ..., x_{n} ]
\xvec = [x_1, x_2, ..., x_{n} ]
$$

This means that $\xvec$ is a sequence of any $n$ numbers, where $n$ can be any
whole number, such as 1, 2, 3 ... In our specific case, $n = 12$.

Similarly, for our `psychopathy` ($\yvec$) values, we can write:

$$
\yvec = [ 11.416, 4.514, 12.204, 14.835, \\
8.416, 6.563, 17.343, 13.02, \\
15.19 , 11.902, 22.721, 22.324 ]
$$
```{python tags=c("hide-input")}
display(Math(format_vec(y, 'y', 6)))
```

```{python tags=c("hide-input")}
pd.DataFrame(
{r'$\vec{y}$ values': y,
f'$y$ value notation': [f'$y_{{{i}}}$' for i in indices]
}, index=df_index)
```

More generally we can write $\yvec$ as a vector of any $n$ numbers:

$$
\yvec = [ y_1, y_2, ..., y_{n} ]
\yvec = [y_1, y_2, ..., y_{n} ]
$$


Expand Down
20 changes: 10 additions & 10 deletions arrays_and_images.html
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f62cc9a9ae0&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f9634ba9060&gt;
</pre></div>
</div>
<img alt="_images/d3bdaf09ab4de248ada9006c6f3f6aa396b99a66bfa57157f6ea8e325e463d84.png" src="_images/d3bdaf09ab4de248ada9006c6f3f6aa396b99a66bfa57157f6ea8e325e463d84.png" />
Expand All @@ -625,7 +625,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.colorbar.Colorbar at 0x7f62cc91c3d0&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.colorbar.Colorbar at 0x7f9634b1e500&gt;
</pre></div>
</div>
<img alt="_images/7f2041d66705ba898f072957a1e419ad4221effecb638c2f99721a6a701413a8.png" src="_images/7f2041d66705ba898f072957a1e419ad4221effecb638c2f99721a6a701413a8.png" />
Expand All @@ -641,7 +641,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.colorbar.Colorbar at 0x7f62cc7ef9d0&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.colorbar.Colorbar at 0x7f96349ef190&gt;
</pre></div>
</div>
<img alt="_images/fe16d4e426399645442aeb8f95a9539a2cd871326863a43b068580fae0825035.png" src="_images/fe16d4e426399645442aeb8f95a9539a2cd871326863a43b068580fae0825035.png" />
Expand All @@ -668,7 +668,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.colorbar.Colorbar at 0x7f62cc6a9fc0&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.colorbar.Colorbar at 0x7f96348aa110&gt;
</pre></div>
</div>
<img alt="_images/fe16d4e426399645442aeb8f95a9539a2cd871326863a43b068580fae0825035.png" src="_images/fe16d4e426399645442aeb8f95a9539a2cd871326863a43b068580fae0825035.png" />
Expand Down Expand Up @@ -731,7 +731,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f62cc76e890&gt;]
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f963496aa40&gt;]
</pre></div>
</div>
<img alt="_images/2b8bb81f4e9577b5fd6a61124fb022b604d30f0a9c02dc7bc38db52b09b63e1d.png" src="_images/2b8bb81f4e9577b5fd6a61124fb022b604d30f0a9c02dc7bc38db52b09b63e1d.png" />
Expand All @@ -748,7 +748,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f62cc6041f0&gt;]
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f96347f9420&gt;]
</pre></div>
</div>
<img alt="_images/2b8bb81f4e9577b5fd6a61124fb022b604d30f0a9c02dc7bc38db52b09b63e1d.png" src="_images/2b8bb81f4e9577b5fd6a61124fb022b604d30f0a9c02dc7bc38db52b09b63e1d.png" />
Expand Down Expand Up @@ -785,7 +785,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f62cc6465c0&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f9634c2d960&gt;
</pre></div>
</div>
<img alt="_images/9bcb92f79177b8fb8f11c684a06580360455b68ab7128fbc898cbd03dae4c906.png" src="_images/9bcb92f79177b8fb8f11c684a06580360455b68ab7128fbc898cbd03dae4c906.png" />
Expand Down Expand Up @@ -932,7 +932,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f62cc554c10&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f96346aab60&gt;
</pre></div>
</div>
<img alt="_images/18c626fa333ccff444a9c11a6cc744f5e6d415ebd17dcb03858b11315228feb1.png" src="_images/18c626fa333ccff444a9c11a6cc744f5e6d415ebd17dcb03858b11315228feb1.png" />
Expand Down Expand Up @@ -1003,7 +1003,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f62cc2e4100&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f96344c3eb0&gt;
</pre></div>
</div>
<img alt="_images/61f258561c288035a850ceefdaec326ed1f81c4ed252d89a938ef76cdfb3161d.png" src="_images/61f258561c288035a850ceefdaec326ed1f81c4ed252d89a938ef76cdfb3161d.png" />
Expand All @@ -1021,7 +1021,7 @@ <h1>Arrays as images, images as arrays<a class="headerlink" href="#arrays-as-ima
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f62cc34d510&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f963454d4e0&gt;
</pre></div>
</div>
<img alt="_images/18ccb330c61b39ab784fa743c5ee5421b6ac6715a76520699ab647c2394864e6.png" src="_images/18ccb330c61b39ab784fa743c5ee5421b6ac6715a76520699ab647c2394864e6.png" />
Expand Down
3 changes: 3 additions & 0 deletions brisk_python.html
Original file line number Diff line number Diff line change
Expand Up @@ -1783,6 +1783,9 @@ <h2>Slicing<a class="headerlink" href="#slicing" title="Permalink to this headin
<div class="output stream highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[9, 999, 0, 8, 20]
</pre></div>
</div>
<div class="output stream highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>
</pre></div>
</div>
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[20, 8, 0]
</pre></div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions convolution_background.html
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ <h2>Using scipy<a class="headerlink" href="#using-scipy" title="Permalink to thi
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.legend.Legend at 0x7f30b06d7070&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.legend.Legend at 0x7f251de33070&gt;
</pre></div>
</div>
<img alt="_images/0170cc68185e9ab7419932303ccc53ec987d9657652ed654d94c7c59fdedf026.png" src="_images/0170cc68185e9ab7419932303ccc53ec987d9657652ed654d94c7c59fdedf026.png" />
Expand Down Expand Up @@ -757,7 +757,7 @@ <h2>Constructing a hemodynamic response function<a class="headerlink" href="#con
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f30add30100&gt;]
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f251b484250&gt;]
</pre></div>
</div>
<img alt="_images/0f940e22064def4586fdfd195e230b51e64ed860ca059c7d39444abad42eb14c.png" src="_images/0f940e22064def4586fdfd195e230b51e64ed860ca059c7d39444abad42eb14c.png" />
Expand Down Expand Up @@ -804,7 +804,7 @@ <h2>Constructing a hemodynamic response function<a class="headerlink" href="#con
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f30adda0f70&gt;]
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f251b4f8dc0&gt;]
</pre></div>
</div>
<img alt="_images/629b49544f5ba93c203e0964e249c16bbb9e63db3662a26eb0745e3e9e52700e.png" src="_images/629b49544f5ba93c203e0964e249c16bbb9e63db3662a26eb0745e3e9e52700e.png" />
Expand Down
4 changes: 2 additions & 2 deletions convolution_matrices.html
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ <h2>Neural and hemodynamic prediction<a class="headerlink" href="#neural-and-hem
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f7734f2dff0&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7fcca9e16320&gt;
</pre></div>
</div>
<img alt="_images/83782de8fe090067602d303f892ad20da65dc9707a25ce4eb7bace5bc8274eb2.png" src="_images/83782de8fe090067602d303f892ad20da65dc9707a25ce4eb7bace5bc8274eb2.png" />
Expand Down Expand Up @@ -824,7 +824,7 @@ <h2>Convolution is like cross-correlation with the reversed HRF<a class="headerl
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f7734b9bd60&gt;]
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7fcca9c24970&gt;]
</pre></div>
</div>
<img alt="_images/13004ecc6c938b84ee6c94a4db468e22957e9ae1a3c46a5b60f9d23ce477601d.png" src="_images/13004ecc6c938b84ee6c94a4db468e22957e9ae1a3c46a5b60f9d23ce477601d.png" />
Expand Down
4 changes: 2 additions & 2 deletions glm_intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ <h2>Simple regression<a class="headerlink" href="#simple-regression" title="Perm
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.legend.Legend at 0x7fac0a655030&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.legend.Legend at 0x7f6c6ca67b20&gt;
</pre></div>
</div>
<img alt="_images/3446bed11862eeac122ccf72712c09e39e493ffaceb569a8034a26f425af4a96.png" src="_images/3446bed11862eeac122ccf72712c09e39e493ffaceb569a8034a26f425af4a96.png" />
Expand Down Expand Up @@ -1194,7 +1194,7 @@ <h2>Solving the model with matrix algebra<a class="headerlink" href="#solving-th
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7fabd7182bc0&gt;]
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>[&lt;matplotlib.lines.Line2D at 0x7f6c6213f5b0&gt;]
</pre></div>
</div>
<img alt="_images/4419f13f0357b59924ec92f20d01a9931fd8e21a0a74d3dbbba7d40d80873869.png" src="_images/4419f13f0357b59924ec92f20d01a9931fd8e21a0a74d3dbbba7d40d80873869.png" />
Expand Down
4 changes: 3 additions & 1 deletion image_header_and_affine.html
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,9 @@ <h1>Nifti images can also be <code class="docutils literal notranslate"><span cl
</pre></div>
</div>
<div class="output stream highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>/home/runner/.cache/nipraxis/0.5/ds114_sub009_highres_moved.img
/home/runner/.cache/nipraxis/0.5/ds114_sub009_highres_moved.hdr
</pre></div>
</div>
<div class="output stream highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>/home/runner/.cache/nipraxis/0.5/ds114_sub009_highres_moved.hdr
</pre></div>
</div>
</div>
Expand Down
12 changes: 6 additions & 6 deletions images_3d.html
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ <h1>Three-dimensional images, NIfTI<a class="headerlink" href="#three-dimensiona
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;nibabel.nifti1.Nifti1Image at 0x7f8029efd030&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;nibabel.nifti1.Nifti1Image at 0x7f3d189fcc40&gt;
</pre></div>
</div>
</div>
Expand Down Expand Up @@ -761,7 +761,7 @@ <h1>Three-dimensional images, NIfTI<a class="headerlink" href="#three-dimensiona
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f8000b36980&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f3d18a4a980&gt;
</pre></div>
</div>
<img alt="_images/b49b6b3f83abc4ac67af0357e062630ab051e34e56c4495f077f7fa73a86c9be.png" src="_images/b49b6b3f83abc4ac67af0357e062630ab051e34e56c4495f077f7fa73a86c9be.png" />
Expand Down Expand Up @@ -812,7 +812,7 @@ <h1>Three-dimensional images, NIfTI<a class="headerlink" href="#three-dimensiona
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f80006ea680&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f3d185fe590&gt;
</pre></div>
</div>
<img alt="_images/0812e31949957befb4484516f9fe5d708397f3c3cb0e7cc6cf899cfee712e628.png" src="_images/0812e31949957befb4484516f9fe5d708397f3c3cb0e7cc6cf899cfee712e628.png" />
Expand All @@ -828,7 +828,7 @@ <h1>Three-dimensional images, NIfTI<a class="headerlink" href="#three-dimensiona
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f8000571270&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f3d1848d1b0&gt;
</pre></div>
</div>
<img alt="_images/d686e126fb86d84f2e88e11fe69f19a17a61755e8eb686c511344e66002fd733.png" src="_images/d686e126fb86d84f2e88e11fe69f19a17a61755e8eb686c511344e66002fd733.png" />
Expand Down Expand Up @@ -862,7 +862,7 @@ <h1>Three-dimensional images, NIfTI<a class="headerlink" href="#three-dimensiona
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f8000704dc0&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f3d184f6d10&gt;
</pre></div>
</div>
<img alt="_images/98a220ecf21375aaa24e08d8616a648f66e68d75de3377f33164be61bc677094.png" src="_images/98a220ecf21375aaa24e08d8616a648f66e68d75de3377f33164be61bc677094.png" />
Expand Down Expand Up @@ -892,7 +892,7 @@ <h1>Three-dimensional images, NIfTI<a class="headerlink" href="#three-dimensiona
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f800046cf70&gt;
<div class="output text_plain highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>&lt;matplotlib.image.AxesImage at 0x7f3d18384f40&gt;
</pre></div>
</div>
<img alt="_images/86d35ca01998ddaf081f3f4f32d925b4900fa3c79c4ef56521b8b2b90e01efe5.png" src="_images/86d35ca01998ddaf081f3f4f32d925b4900fa3c79c4ef56521b8b2b90e01efe5.png" />
Expand Down
Loading

0 comments on commit 532e1e3

Please sign in to comment.