Skip to content

Commit 10a0f86

Browse files
author
ci-doc-deploy-bot
committed
[skip ci] docs build of a6afd8d
1 parent 7b0b3d0 commit 10a0f86

24 files changed

+608
-604
lines changed
Binary file not shown.
Loading

_sources/content/mooreslaw-tutorial.ipynb

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

_sources/content/pairing.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "0b3dee16",
5+
"id": "1b8ba7b5",
66
"metadata": {},
77
"source": [
88
"# Pairing Jupyter notebooks and MyST-NB\n",
@@ -76,7 +76,7 @@
7676
{
7777
"cell_type": "code",
7878
"execution_count": 1,
79-
"id": "4add3eed",
79+
"id": "dedd373f",
8080
"metadata": {},
8181
"outputs": [
8282
{
@@ -94,7 +94,7 @@
9494
},
9595
{
9696
"cell_type": "markdown",
97-
"id": "b0ef941e",
97+
"id": "dd88ff99",
9898
"metadata": {},
9999
"source": [
100100
"---\n",

_sources/content/save-load-arrays.ipynb

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "896aa5da",
5+
"id": "08d25bc4",
66
"metadata": {},
77
"source": [
88
"# Saving and sharing your NumPy arrays\n",
@@ -37,7 +37,7 @@
3737
{
3838
"cell_type": "code",
3939
"execution_count": 1,
40-
"id": "19e14d66",
40+
"id": "539560d8",
4141
"metadata": {},
4242
"outputs": [],
4343
"source": [
@@ -46,7 +46,7 @@
4646
},
4747
{
4848
"cell_type": "markdown",
49-
"id": "27fdb3b6",
49+
"id": "9fa2bd31",
5050
"metadata": {},
5151
"source": [
5252
"In this tutorial, you will use the following Python, IPython magic, and NumPy functions:\n",
@@ -64,7 +64,7 @@
6464
},
6565
{
6666
"cell_type": "markdown",
67-
"id": "3549bf9e",
67+
"id": "2b73d4de",
6868
"metadata": {},
6969
"source": [
7070
"---\n",
@@ -81,7 +81,7 @@
8181
{
8282
"cell_type": "code",
8383
"execution_count": 2,
84-
"id": "e7637a07",
84+
"id": "8c64a13f",
8585
"metadata": {},
8686
"outputs": [
8787
{
@@ -102,7 +102,7 @@
102102
},
103103
{
104104
"cell_type": "markdown",
105-
"id": "757ff679",
105+
"id": "df92b324",
106106
"metadata": {},
107107
"source": [
108108
"## Save your arrays with NumPy's [`savez`](https://numpy.org/doc/stable/reference/generated/numpy.savez.html?highlight=savez#numpy.savez)\n",
@@ -125,7 +125,7 @@
125125
{
126126
"cell_type": "code",
127127
"execution_count": 3,
128-
"id": "c7e877ff",
128+
"id": "94e29d9c",
129129
"metadata": {},
130130
"outputs": [],
131131
"source": [
@@ -134,7 +134,7 @@
134134
},
135135
{
136136
"cell_type": "markdown",
137-
"id": "b635f3c5",
137+
"id": "3ce05075",
138138
"metadata": {},
139139
"source": [
140140
"## Remove the saved arrays and load them back with NumPy's [`load`](https://numpy.org/doc/stable/reference/generated/numpy.load.html#numpy.load)\n",
@@ -159,7 +159,7 @@
159159
{
160160
"cell_type": "code",
161161
"execution_count": 4,
162-
"id": "2730d1a9",
162+
"id": "3c250ec2",
163163
"metadata": {},
164164
"outputs": [],
165165
"source": [
@@ -169,7 +169,7 @@
169169
{
170170
"cell_type": "code",
171171
"execution_count": 5,
172-
"id": "d14838f5",
172+
"id": "617ca504",
173173
"metadata": {},
174174
"outputs": [
175175
{
@@ -189,7 +189,7 @@
189189
{
190190
"cell_type": "code",
191191
"execution_count": 6,
192-
"id": "9b87644b",
192+
"id": "d63fd187",
193193
"metadata": {},
194194
"outputs": [
195195
{
@@ -209,7 +209,7 @@
209209
{
210210
"cell_type": "code",
211211
"execution_count": 7,
212-
"id": "8c6f2560",
212+
"id": "964048b7",
213213
"metadata": {},
214214
"outputs": [
215215
{
@@ -224,12 +224,12 @@
224224
}
225225
],
226226
"source": [
227-
"whos"
227+
"%whos"
228228
]
229229
},
230230
{
231231
"cell_type": "markdown",
232-
"id": "555b10eb",
232+
"id": "f3d52251",
233233
"metadata": {},
234234
"source": [
235235
"## Reassign the NpzFile arrays to `x` and `y`\n",
@@ -242,7 +242,7 @@
242242
{
243243
"cell_type": "code",
244244
"execution_count": 8,
245-
"id": "f31df649",
245+
"id": "2c525ad1",
246246
"metadata": {},
247247
"outputs": [
248248
{
@@ -263,7 +263,7 @@
263263
},
264264
{
265265
"cell_type": "markdown",
266-
"id": "f7549957",
266+
"id": "a0134b8a",
267267
"metadata": {},
268268
"source": [
269269
"## Success\n",
@@ -294,7 +294,7 @@
294294
{
295295
"cell_type": "code",
296296
"execution_count": 9,
297-
"id": "69cb2a08",
297+
"id": "aaeec3f3",
298298
"metadata": {},
299299
"outputs": [
300300
{
@@ -323,7 +323,7 @@
323323
},
324324
{
325325
"cell_type": "markdown",
326-
"id": "e264d250",
326+
"id": "d411f283",
327327
"metadata": {},
328328
"source": [
329329
"## Save the data to csv file using [`savetxt`](https://numpy.org/doc/stable/reference/generated/numpy.savetxt.html#numpy.savetxt)\n",
@@ -338,7 +338,7 @@
338338
{
339339
"cell_type": "code",
340340
"execution_count": 10,
341-
"id": "e8da8648",
341+
"id": "d3acf89d",
342342
"metadata": {},
343343
"outputs": [],
344344
"source": [
@@ -347,7 +347,7 @@
347347
},
348348
{
349349
"cell_type": "markdown",
350-
"id": "9d53ede6",
350+
"id": "274fcaf0",
351351
"metadata": {},
352352
"source": [
353353
"Open the file, `x_y-squared.csv`, and you'll see the following:\n",
@@ -387,7 +387,7 @@
387387
{
388388
"cell_type": "code",
389389
"execution_count": 11,
390-
"id": "3a8878c2",
390+
"id": "07fcb9c3",
391391
"metadata": {},
392392
"outputs": [],
393393
"source": [
@@ -397,7 +397,7 @@
397397
{
398398
"cell_type": "code",
399399
"execution_count": 12,
400-
"id": "b4b71d87",
400+
"id": "c3aaceac",
401401
"metadata": {},
402402
"outputs": [],
403403
"source": [
@@ -407,7 +407,7 @@
407407
{
408408
"cell_type": "code",
409409
"execution_count": 13,
410-
"id": "8cb66d94",
410+
"id": "d0bd177e",
411411
"metadata": {},
412412
"outputs": [
413413
{
@@ -428,7 +428,7 @@
428428
{
429429
"cell_type": "code",
430430
"execution_count": 14,
431-
"id": "12171f4d",
431+
"id": "50ae6d0f",
432432
"metadata": {},
433433
"outputs": [
434434
{
@@ -449,7 +449,7 @@
449449
},
450450
{
451451
"cell_type": "markdown",
452-
"id": "c364bceb",
452+
"id": "e1dbb437",
453453
"metadata": {},
454454
"source": [
455455
"## Success, but remember your types\n",
@@ -460,7 +460,7 @@
460460
},
461461
{
462462
"cell_type": "markdown",
463-
"id": "ba80dfca",
463+
"id": "b478e283",
464464
"metadata": {},
465465
"source": [
466466
"## Wrapping up\n",

_sources/content/save-load-arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ print(load_xy.files)
127127
```
128128

129129
```{code-cell}
130-
whos
130+
%whos
131131
```
132132

133133
## Reassign the NpzFile arrays to `x` and `y`

0 commit comments

Comments
 (0)