Skip to content

Commit

Permalink
[ex1] mirror to with_solutions notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcky committed Jul 3, 2023
1 parent d21f423 commit 2597cd3
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions day-01/exercise_set_1_with_solution.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,21 @@
"id": "28f1e83d",
"metadata": {},
"source": [
"Using `plot` method in `matplotlib`, plot the data defined in `d = np.array(range(20))`"
"Using `plot` method in `matplotlib`, plot the data defined in `d = np.array(range(20))`\n",
"\n",
"> The Jupyteach system may return a red warning message when you first import `matplotlib`.\n",
"> Please run the cell twice to remove this error. We are working on a fix for the `jupyterlite` environment.\n",
"> You can also run this on Google Colab (via the link at the top of this notebook)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4e48b921",
"metadata": {},
"outputs": [],
"source": [
"import matplotlib.pyplot as plt"
]
},
{
Expand Down Expand Up @@ -562,7 +576,6 @@
"metadata": {},
"outputs": [],
"source": [
"import matplotlib.pyplot as plt\n",
"fig, ax = plt.subplots()\n",
"ax.plot(d)\n",
"plt.show()"
Expand Down

0 comments on commit 2597cd3

Please sign in to comment.