Skip to content

Commit 00ff7ad

Browse files
authored
Merge pull request #27 from ggodreau/issue_26
Fixes #26
2 parents 6f0be51 + 9a2c0af commit 00ff7ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

AnatomyOfMatplotlib-Part2-Plotting_Methods_Overview.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@
305305
"outputs": [],
306306
"source": [
307307
"from matplotlib.cbook import get_sample_data\n",
308-
"data = np.load(get_sample_data('axes_grid/bivariate_normal.npy'))\n",
308+
"data = np.load('assets/bivariate_normal.npy')\n",
309309
"\n",
310310
"fig, ax = plt.subplots()\n",
311311
"im = ax.imshow(data, cmap='gist_earth')\n",
@@ -370,7 +370,7 @@
370370
"outputs": [],
371371
"source": [
372372
"from matplotlib.cbook import get_sample_data\n",
373-
"data = np.load(get_sample_data('axes_grid/bivariate_normal.npy'))\n",
373+
"data = np.load('assets/bivariate_normal.npy')\n",
374374
"\n",
375375
"fig, ax = plt.subplots()\n",
376376
"im = ax.imshow(data, cmap='seismic')\n",
@@ -462,7 +462,7 @@
462462
"name": "python",
463463
"nbconvert_exporter": "python",
464464
"pygments_lexer": "ipython3",
465-
"version": "3.6.5"
465+
"version": "3.6.6"
466466
}
467467
},
468468
"nbformat": 4,

assets/bivariate_normal.npy

1.84 KB
Binary file not shown.

0 commit comments

Comments
 (0)