Skip to content

Commit

Permalink
Update Mission177Solutions.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
darinbradley committed Dec 7, 2022
1 parent c55adf8 commit 5d80020
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Mission177Solutions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We chose a dictionary where the keys are the stock symbols and the values are DataFrames with the from the corresponding CSV file.\n",
"We chose a dictionary where the keys are the stock symbols and the values are DataFrames from the corresponding CSV file.\n",
"\n",
"Let's display the data stored for the `aapl` stock symbol:"
]
Expand Down Expand Up @@ -146,7 +146,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Computing Average Closing Prices "
"## Computing average closing prices "
]
},
{
Expand Down Expand Up @@ -791,21 +791,21 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"It appears the `amzn` and `aapl` have the highest average closing prices, while `blfs`, and `apdn` have the lowest average closing prices."
"It appears the `amzn` and `aapl` have the highest average closing prices, while `blfs` and `apdn` have the lowest average closing prices."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Organizing the trades per day"
"# Organizing the Trades Per Day"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We are going to calculate a dictionary where the keys are the days and the values are list of pairs `(volume, stock_symbol)` of all trades that occurred on that day."
"We are going to calculate a dictionary where the keys are the days and the values are lists of pairs `(volume, stock_symbol)` of all trades that occurred on that day."
]
},
{
Expand All @@ -830,14 +830,14 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Finding The Most Traded Stock Each Day"
"# Finding the Most Traded Stock Each Day"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Calculate a dictionary there the keys are the days and the value of each day is a pair `(volume, stock_symbol)` with the most traded stock symbol on that day."
"Calculate a dictionary where the keys are the days and the value of each day is a pair `(volume, stock_symbol)` with the most traded stock symbol on that day."
]
},
{
Expand All @@ -857,7 +857,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Verify a few of the results"
"## Verify a Few of the Results"
]
},
{
Expand Down Expand Up @@ -887,7 +887,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Searching For High Volume Days"
"# Searching for High Volume Days"
]
},
{
Expand Down Expand Up @@ -998,7 +998,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
"version": "3.8.5"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 5d80020

Please sign in to comment.