Skip to content

Commit

Permalink
👹 Feed the hobgoblins (delint).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 23, 2024
1 parent be67bf6 commit a6a71f2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/plotter.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"__requires__ = ['jupyter', 'matplotlib', 'numpy']\n",
"import matplotlib.pyplot as plt\n",
"import numpy as np\n",
"\n",
"%matplotlib inline"
]
},
Expand All @@ -40,7 +41,7 @@
},
"outputs": [],
"source": [
"x = np.arange(0,4*np.pi,0.1) # start,stop,step\n",
"x = np.arange(0, 4 * np.pi, 0.1) # start,stop,step\n",
"y = np.sin(x)"
]
},
Expand All @@ -52,7 +53,7 @@
},
"outputs": [],
"source": [
"plt.plot(x,y)\n",
"plt.plot(x, y)\n",
"plt.show()"
]
}
Expand Down

0 comments on commit a6a71f2

Please sign in to comment.