Skip to content

Commit

Permalink
clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
gantian127 committed Jul 25, 2024
1 parent 28151d5 commit 938f35d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/soilgrids.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
"outputs": [],
"source": [
"# plot data\n",
"data.plot(figsize=(9, 5),vmin=0)\n",
"data.plot(figsize=(9, 5), vmin=0)\n",
"plt.title(\"Mean pH between 0 and 5 cm soil depth in Senegal\")"
]
},
Expand Down Expand Up @@ -279,7 +279,7 @@
"\n",
"# plot data\n",
"fig, ax = plt.subplots(1, 1, figsize=(9, 5))\n",
"im = ax.imshow(data_2D, extent=extent,vmin=0)\n",
"im = ax.imshow(data_2D, extent=extent, vmin=0)\n",
"fig.colorbar(im)\n",
"plt.xlabel(\"X\")\n",
"plt.ylabel(\"Y\")\n",
Expand Down

0 comments on commit 938f35d

Please sign in to comment.