Skip to content

Commit

Permalink
Add intro paragraph
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Jul 31, 2023
1 parent 55d537b commit ed8482e
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions lessons/python/4a_plots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,10 @@
"tags": []
},
"source": [
"# Plotting\n",
"# Data visualization\n",
"\n",
"The digital elevation model data used in the Arrays lesson is handy for exploring visualization techniques in Python. \n",
"\n",
"In this lesson,\n",
"we'll explore how to work with arrays using topographic data\n",
"in the form of a digital elevation model.\n",
"\n",
"We'll use a library called NumPy."
"The digital elevation model data used in the [Arrays](./4_arrays.ipynb) lesson is handy for exploring visualization techniques in Python.\n",
"Let's visualize the data with a library called Matplotlib."
]
},
{
Expand All @@ -30,7 +25,7 @@
"tags": []
},
"source": [
"## matplotlib\n",
"## Matplotlib\n",
"\n",
"NumPy is short for \"Numerical Python\".\n",
"It is a fundamental Python package for scientific computing.\n",
Expand Down Expand Up @@ -457,6 +452,22 @@
"ax.axes.get_xaxis().set_visible(False)\n",
"ax.axes.get_yaxis().set_visible(False)"
]
},
{
"cell_type": "markdown",
"metadata": {
"tags": []
},
"source": [
"## Summary"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down

0 comments on commit ed8482e

Please sign in to comment.