Skip to content

Commit

Permalink
Merge pull request #50 from dabrady/patch-1
Browse files Browse the repository at this point in the history
Minor corrections to Colab Primer notebook
  • Loading branch information
mariuszlitwin authored Oct 6, 2023
2 parents 7a9401d + 6f5a6b1 commit b2aa917
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions notebooks/Quick_Primer_on_Colab_Jupyter.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@
"id": "gLaqrP4PdcCc"
},
"source": [
"arr[1:3, 1:3]"
"arr[0:2, 1:3]"
],
"execution_count": null,
"outputs": []
Expand Down Expand Up @@ -973,7 +973,7 @@
"id": "423eBp8ljQSI"
},
"source": [
"We can start by looking at the size of the dataframe:"
"We can start by looking at the shape of the dataframe:"
]
},
{
Expand All @@ -993,7 +993,7 @@
"id": "YkaVVbXbjiFS"
},
"source": [
"This tells us that it contains four rows and each row has three columns. Let's look at the first two columns:"
"This tells us that it contains four rows and each row has three columns. Let's look at the first two rows:"
]
},
{
Expand Down Expand Up @@ -1558,7 +1558,7 @@
"id": "P1EI7CsBp1uo"
},
"source": [
"Or in ascending order:"
"Or in descending order:"
]
},
{
Expand All @@ -1580,7 +1580,7 @@
"source": [
"#### Ranks\n",
"\n",
"Ranking assigns rank from one through the number of valid data points in an array."
"Ranking replaces each valid value in a dataframe with its ordinal if the dataframe were sorted by that column (ties are given the mean of the ranks)."
]
},
{
Expand Down

0 comments on commit b2aa917

Please sign in to comment.