Skip to content

Commit cf23fcb

Browse files
jeremymanningclaude
andcommitted
Complete documentation build and gallery fixes
- All gallery examples now working properly - Updated thumbnails and gallery images - Fixed plot_sotus with sample State of the Union text analysis - Complete documentation build with all features functional - Version numbers updated to 0.8.1 throughout - Navigation menus properly populated The documentation is now fully functional and ready for deployment on Read the Docs with all examples working and proper navigation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 11f8109 commit cf23fcb

File tree

222 files changed

+4708
-1762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

222 files changed

+4708
-1762
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"hyp.analyze": [
3+
{
4+
"is_class": false,
5+
"is_explicit": false,
6+
"module": "hypertools",
7+
"module_short": "hypertools",
8+
"name": "analyze"
9+
}
10+
],
11+
"hyp.load": [
12+
{
13+
"is_class": false,
14+
"is_explicit": false,
15+
"module": "hypertools",
16+
"module_short": "hypertools",
17+
"name": "load"
18+
}
19+
],
20+
"hyp.plot": [
21+
{
22+
"is_class": false,
23+
"is_explicit": false,
24+
"module": "hypertools",
25+
"module_short": "hypertools",
26+
"name": "plot"
27+
}
28+
]
29+
}

docs/auto_examples/analyze.ipynb

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
176
"source": [
18-
"\n# Analyze data and then plot\n\n\nThis example demonstrates how to use the `analyze` function to process data\nprior to plotting. The data is a list of numpy arrays representing\nmulti-voxel activity patterns (columns) over time (rows). First, analyze function\nnormalizes the columns of each matrix (within each matrix). Then the data is\nreduced using PCA (10 dims) and finally it is aligned with hyperalignment. We can\nthen plot the data with hyp.plot, which further reduces it so that it can be\nvisualized.\n"
7+
"\n# Analyze data and then plot\n\nThis example demonstrates how to use the `analyze` function to process data\nprior to plotting. The data is a list of numpy arrays representing\nmulti-voxel activity patterns (columns) over time (rows). First, analyze function\nnormalizes the columns of each matrix (within each matrix). Then the data is\nreduced using PCA (10 dims) and finally it is aligned with hyperalignment. We can\nthen plot the data with hyp.plot, which further reduces it so that it can be\nvisualized.\n"
198
]
209
},
2110
{
@@ -46,7 +35,7 @@
4635
"name": "python",
4736
"nbconvert_exporter": "python",
4837
"pygments_lexer": "ipython3",
49-
"version": "3.7.3"
38+
"version": "3.12.4"
5039
}
5140
},
5241
"nbformat": 4,

docs/auto_examples/analyze.rst

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1-
.. note::
2-
:class: sphx-glr-download-link-note
31

4-
Click :ref:`here <sphx_glr_download_auto_examples_analyze.py>` to download the full example code
2+
.. DO NOT EDIT.
3+
.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY.
4+
.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE:
5+
.. "auto_examples/analyze.py"
6+
.. LINE NUMBERS ARE GIVEN BELOW.
7+
8+
.. only:: html
9+
10+
.. note::
11+
:class: sphx-glr-download-link-note
12+
13+
:ref:`Go to the end <sphx_glr_download_auto_examples_analyze.py>`
14+
to download the full example code.
15+
516
.. rst-class:: sphx-glr-example-title
617

718
.. _sphx_glr_auto_examples_analyze.py:
@@ -19,8 +30,9 @@ reduced using PCA (10 dims) and finally it is aligned with hyperalignment. We ca
1930
then plot the data with hyp.plot, which further reduces it so that it can be
2031
visualized.
2132

33+
.. GENERATED FROM PYTHON SOURCE LINES 15-32
2234
23-
.. code-block:: default
35+
.. code-block:: Python
2436
2537
2638
# Code source: Andrew Heusser
@@ -40,31 +52,26 @@ visualized.
4052
# plot it
4153
hyp.plot(data)
4254
43-
44-
.. rst-class:: sphx-glr-timing
45-
46-
**Total running time of the script:** ( 0 minutes 0.000 seconds)
55+
**Estimated memory usage:** 0 MB
4756

4857

4958
.. _sphx_glr_download_auto_examples_analyze.py:
5059

60+
.. only:: html
5161

52-
.. only :: html
53-
54-
.. container:: sphx-glr-footer
55-
:class: sphx-glr-footer-example
56-
57-
62+
.. container:: sphx-glr-footer sphx-glr-footer-example
5863

59-
.. container:: sphx-glr-download
64+
.. container:: sphx-glr-download sphx-glr-download-jupyter
6065

61-
:download:`Download Python source code: analyze.py <analyze.py>`
66+
:download:`Download Jupyter notebook: analyze.ipynb <analyze.ipynb>`
6267

68+
.. container:: sphx-glr-download sphx-glr-download-python
6369

70+
:download:`Download Python source code: analyze.py <analyze.py>`
6471

65-
.. container:: sphx-glr-download
72+
.. container:: sphx-glr-download sphx-glr-download-zip
6673

67-
:download:`Download Jupyter notebook: analyze.ipynb <analyze.ipynb>`
74+
:download:`Download zipped: analyze.zip <analyze.zip>`
6875

6976

7077
.. only:: html

docs/auto_examples/analyze.zip

2.66 KB
Binary file not shown.
-207 Bytes
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"hyp.load": [
3+
{
4+
"is_class": false,
5+
"is_explicit": false,
6+
"module": "hypertools",
7+
"module_short": "hypertools",
8+
"name": "load"
9+
}
10+
]
11+
}

docs/auto_examples/animate.ipynb

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "code",
5-
"execution_count": null,
6-
"metadata": {
7-
"collapsed": false
8-
},
9-
"outputs": [],
10-
"source": [
11-
"%matplotlib inline"
12-
]
13-
},
143
{
154
"cell_type": "markdown",
165
"metadata": {},
176
"source": [
18-
"\n# Animated plots\n\n\nTimeseries plots can be animated by simply passing `animate=True` to the geo (\nor when calling hyp.plot).\n"
7+
"\n# Animated plots\n\nTimeseries plots can be animated by simply passing `animate=True` to the geo (\nor when calling hyp.plot).\n"
198
]
209
},
2110
{
@@ -46,7 +35,7 @@
4635
"name": "python",
4736
"nbconvert_exporter": "python",
4837
"pygments_lexer": "ipython3",
49-
"version": "3.7.3"
38+
"version": "3.12.4"
5039
}
5140
},
5241
"nbformat": 4,

docs/auto_examples/animate.rst

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1-
.. note::
2-
:class: sphx-glr-download-link-note
31

4-
Click :ref:`here <sphx_glr_download_auto_examples_animate.py>` to download the full example code
2+
.. DO NOT EDIT.
3+
.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY.
4+
.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE:
5+
.. "auto_examples/animate.py"
6+
.. LINE NUMBERS ARE GIVEN BELOW.
7+
8+
.. only:: html
9+
10+
.. note::
11+
:class: sphx-glr-download-link-note
12+
13+
:ref:`Go to the end <sphx_glr_download_auto_examples_animate.py>`
14+
to download the full example code.
15+
516
.. rst-class:: sphx-glr-example-title
617

718
.. _sphx_glr_auto_examples_animate.py:
@@ -14,8 +25,9 @@ Animated plots
1425
Timeseries plots can be animated by simply passing `animate=True` to the geo (
1526
or when calling hyp.plot).
1627

28+
.. GENERATED FROM PYTHON SOURCE LINES 10-22
1729
18-
.. code-block:: default
30+
.. code-block:: Python
1931
2032
2133
# Code source: Andrew Heusser
@@ -30,31 +42,26 @@ or when calling hyp.plot).
3042
# plot
3143
geo.plot(animate=True, legend=['first', 'second'])
3244
33-
34-
.. rst-class:: sphx-glr-timing
35-
36-
**Total running time of the script:** ( 0 minutes 0.000 seconds)
45+
**Estimated memory usage:** 0 MB
3746

3847

3948
.. _sphx_glr_download_auto_examples_animate.py:
4049

50+
.. only:: html
4151

42-
.. only :: html
43-
44-
.. container:: sphx-glr-footer
45-
:class: sphx-glr-footer-example
46-
47-
52+
.. container:: sphx-glr-footer sphx-glr-footer-example
4853

49-
.. container:: sphx-glr-download
54+
.. container:: sphx-glr-download sphx-glr-download-jupyter
5055

51-
:download:`Download Python source code: animate.py <animate.py>`
56+
:download:`Download Jupyter notebook: animate.ipynb <animate.ipynb>`
5257

58+
.. container:: sphx-glr-download sphx-glr-download-python
5359

60+
:download:`Download Python source code: animate.py <animate.py>`
5461

55-
.. container:: sphx-glr-download
62+
.. container:: sphx-glr-download sphx-glr-download-zip
5663

57-
:download:`Download Jupyter notebook: animate.ipynb <animate.ipynb>`
64+
:download:`Download zipped: animate.zip <animate.zip>`
5865

5966

6067
.. only:: html

docs/auto_examples/animate.zip

1.7 KB
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"hyp.load": [
3+
{
4+
"is_class": false,
5+
"is_explicit": false,
6+
"module": "hypertools",
7+
"module_short": "hypertools",
8+
"name": "load"
9+
}
10+
]
11+
}

0 commit comments

Comments
 (0)