Skip to content

Commit 350f8c8

Browse files
committed
fix matplotlib string output and starting logo
1 parent 8f46056 commit 350f8c8

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

notebooks/03-dask-xarray.ipynb

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,18 @@
77
"tags": []
88
},
99
"source": [
10+
"\n",
11+
"# Parallelizing Xarray with Dask\n",
12+
"\n",
1013
"<img src=\"https://docs.dask.org/en/stable/_images/dask_horizontal.svg\"\n",
1114
" width=\"30%\"\n",
1215
" alt=\"Dask logo\"\n",
13-
" align=\"right\"\n",
1416
"/>\n",
1517
"<img src=\"https://docs.xarray.dev/en/latest/_images/dataset-diagram.png\"\n",
1618
" width=\"30%\"\n",
1719
" alt=\"Xarray\"\n",
18-
" align=\"right\"\n",
1920
"/>\n",
2021
"\n",
21-
"# Parallelizing Xarray with Dask\n",
22-
"\n",
2322
"### In this tutorial, you learn:\n",
2423
"\n",
2524
"* Using Dask with Xarray\n",
@@ -697,7 +696,7 @@
697696
"metadata": {},
698697
"outputs": [],
699698
"source": [
700-
"tb.plot()"
699+
"tb.plot();"
701700
]
702701
},
703702
{
@@ -771,7 +770,7 @@
771770
"metadata": {},
772771
"outputs": [],
773772
"source": [
774-
"tos_anom.sel(lon=310, lat=50, method='nearest').plot( size=4)"
773+
"tos_anom.sel(lon=310, lat=50, method='nearest').plot( size=4);"
775774
]
776775
},
777776
{
@@ -781,7 +780,7 @@
781780
"metadata": {},
782781
"outputs": [],
783782
"source": [
784-
"tos_anom.sel(time='2030-01-01').plot()"
783+
"tos_anom.sel(time='2030-01-01').plot();"
785784
]
786785
},
787786
{

0 commit comments

Comments
 (0)