Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
fix header in challenge question 7
Browse files Browse the repository at this point in the history
  • Loading branch information
pssachdeva committed Oct 12, 2022
1 parent c4a0b4b commit ab7546f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lessons/01_python_data_wrangling.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@
"source": [
"---\n",
"\n",
"### Challenge 7: Another Way to Obtain the Month\n",
"### Challenge 7: Another Way to Obtain the Year\n",
"\n",
"If you didn't know that casting floats to ints truncates the decimals in Python, you could have used NumPy's `floor()` function. `np.floor` takes an array or `pd.Series` of floats as its argument, and returns an array or `pd.Series` where every float has been rounded down to the nearest whole number. \n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion solutions/01_python_data_wrangling_solutions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
"source": [
"---\n",
"\n",
"### Challenge 7: Another Way to Obtain the Month\n",
"### Challenge 7: Another Way to Obtain the Year\n",
"\n",
"If you didn't know that casting floats to ints truncates the decimals in Python, you could have used NumPy's `floor()` function. `np.floor` takes an array or `pd.Series` of floats as its argument, and returns an array or `pd.Series` where every float has been rounded down to the nearest whole number. \n",
"\n",
Expand Down

0 comments on commit ab7546f

Please sign in to comment.