Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarified language in lesson 21 #59

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Lessons/Lesson21_Basic_Stats_I_Averages.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"outputs": [],
"source": [
"# Make an array of rank 1\n",
"# Make a 1D array\n",
"arr = np.array([1, 2, 3, 4, 5])"
]
},
Expand Down Expand Up @@ -84,7 +84,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We can also calculate averages on arrays of rank 2. "
"We can also calculate averages on 2D arrays. "
]
},
{
Expand All @@ -95,7 +95,7 @@
},
"outputs": [],
"source": [
"# Make an array of rank 2\n",
"# Make a 2D array\n",
"a = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]])"
]
},
Expand All @@ -107,7 +107,7 @@
},
"outputs": [],
"source": [
"# Determine the mean of the array of rank 2"
"# Determine the mean of the 2D array"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions Lessons/_Keys/KEY_Lesson21_Basic_Stats_I_Averages.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"outputs": [],
"source": [
"# Make an array of rank 1\n",
"# Make a 1D array\n",
"arr = np.array([1, 2, 3, 4, 5])"
]
},
Expand Down Expand Up @@ -100,7 +100,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We can also calculate averages on arrays of rank 2. "
"We can also calculate averages on 2D arrays. "
]
},
{
Expand All @@ -111,7 +111,7 @@
},
"outputs": [],
"source": [
"# Make an array of rank 2\n",
"# Make a 2D array\n",
"a = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]])"
]
},
Expand All @@ -129,7 +129,7 @@
}
],
"source": [
"# Determine the mean of the array of rank 2\n",
"# Determine the mean of the 2D array\n",
"print(np.mean(a))"
]
},
Expand Down
Loading