Skip to content

Commit 0bf17ee

Browse files
author
craigsdennis
committed
Whoops ordering problem
1 parent 95d1513 commit 0bf17ee

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Introduction to NumPy.ipynb

+8-1
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@
487487
"source": [
488488
"## Common Routines\n",
489489
"* Common [mathematical](https://docs.scipy.org/doc/numpy-1.14.0/reference/routines.math.html) [routines](https://docs.scipy.org/doc/numpy-1.14.0/reference/routines.html) are exposed so the formula can be abstracted away.\n",
490-
" * [`mean`](https://docs.scipy.org/doc/numpy-1.14.0/reference/generated/numpy.mean.html#numpy.mean) is a routine [statistics](https://docs.scipy.org/doc/numpy-1.14.0/reference/routines.statistics.html) used to calculate the average.\n",
490+
" * [`mean`](https://docs.scipy.org/doc/numpy-1.14.0/reference/generated/numpy.mean.html#numpy.mean) is a [statistics](https://docs.scipy.org/doc/numpy-1.14.0/reference/routines.statistics.html) routine used to calculate the average.\n",
491491
"* Reduction functions take a dimension and collapse it into a single value.\n",
492492
" * These functions define an axis parameter, and you should remember that the function works across the dimension.\n",
493493
" "
@@ -500,6 +500,13 @@
500500
"outputs": [],
501501
"source": []
502502
},
503+
{
504+
"cell_type": "code",
505+
"execution_count": null,
506+
"metadata": {},
507+
"outputs": [],
508+
"source": []
509+
},
503510
{
504511
"cell_type": "code",
505512
"execution_count": 86,

0 commit comments

Comments
 (0)