Skip to content

Commit 44cf331

Browse files
authored
Hide solution cells (#257)
1 parent 2936b70 commit 44cf331

File tree

3 files changed

+62
-3
lines changed

3 files changed

+62
-3
lines changed

01_dataframe.ipynb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,9 @@
433433
"cell_type": "code",
434434
"execution_count": null,
435435
"metadata": {
436+
"jupyter": {
437+
"source_hidden": true
438+
},
436439
"tags": []
437440
},
438441
"outputs": [],
@@ -462,6 +465,9 @@
462465
"cell_type": "code",
463466
"execution_count": null,
464467
"metadata": {
468+
"jupyter": {
469+
"source_hidden": true
470+
},
465471
"tags": []
466472
},
467473
"outputs": [],
@@ -491,6 +497,9 @@
491497
"cell_type": "code",
492498
"execution_count": null,
493499
"metadata": {
500+
"jupyter": {
501+
"source_hidden": true
502+
},
494503
"tags": []
495504
},
496505
"outputs": [],
@@ -518,6 +527,9 @@
518527
"cell_type": "code",
519528
"execution_count": null,
520529
"metadata": {
530+
"jupyter": {
531+
"source_hidden": true
532+
},
521533
"tags": []
522534
},
523535
"outputs": [],
@@ -545,6 +557,9 @@
545557
"cell_type": "code",
546558
"execution_count": null,
547559
"metadata": {
560+
"jupyter": {
561+
"source_hidden": true
562+
},
548563
"tags": []
549564
},
550565
"outputs": [],
@@ -572,6 +587,9 @@
572587
"cell_type": "code",
573588
"execution_count": null,
574589
"metadata": {
590+
"jupyter": {
591+
"source_hidden": true
592+
},
575593
"tags": []
576594
},
577595
"outputs": [],

02_array.ipynb

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,15 @@
293293
"For Dask arrays, compute the mean along `axis=1` of the sum of the x array and its transpose. "
294294
]
295295
},
296+
{
297+
"cell_type": "code",
298+
"execution_count": null,
299+
"metadata": {},
300+
"outputs": [],
301+
"source": [
302+
"# Your code here"
303+
]
304+
},
296305
{
297306
"cell_type": "markdown",
298307
"metadata": {},
@@ -303,7 +312,12 @@
303312
{
304313
"cell_type": "code",
305314
"execution_count": null,
306-
"metadata": {},
315+
"metadata": {
316+
"jupyter": {
317+
"source_hidden": true
318+
},
319+
"tags": []
320+
},
307321
"outputs": [],
308322
"source": [
309323
"x_sum = xd + xd.T \n",
@@ -552,6 +566,20 @@
552566
"execution_count": null,
553567
"metadata": {},
554568
"outputs": [],
569+
"source": [
570+
"# Your code here"
571+
]
572+
},
573+
{
574+
"cell_type": "code",
575+
"execution_count": null,
576+
"metadata": {
577+
"jupyter": {
578+
"source_hidden": true
579+
},
580+
"tags": []
581+
},
582+
"outputs": [],
555583
"source": [
556584
"# 1 possible Solution (imitate original). chunks will vary if you are in binder\n",
557585
"c = da.from_zarr(\"data/random_sc.zarr\", chunks=(6250000, ))\n",

03_dask.delayed.ipynb

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,9 @@
293293
"cell_type": "code",
294294
"execution_count": null,
295295
"metadata": {
296+
"jupyter": {
297+
"source_hidden": true
298+
},
296299
"tags": []
297300
},
298301
"outputs": [],
@@ -386,7 +389,12 @@
386389
{
387390
"cell_type": "code",
388391
"execution_count": null,
389-
"metadata": {},
392+
"metadata": {
393+
"jupyter": {
394+
"source_hidden": true
395+
},
396+
"tags": []
397+
},
390398
"outputs": [],
391399
"source": [
392400
"@dask.delayed\n",
@@ -626,7 +634,12 @@
626634
{
627635
"cell_type": "code",
628636
"execution_count": null,
629-
"metadata": {},
637+
"metadata": {
638+
"jupyter": {
639+
"source_hidden": true
640+
},
641+
"tags": []
642+
},
630643
"outputs": [],
631644
"source": [
632645
"%%time\n",

0 commit comments

Comments
 (0)