Skip to content

Commit 39aeb12

Browse files
committed
Added some previously missing keypoints to Episode 9.
1 parent a10f8d8 commit 39aeb12

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

_episodes/09-extracting-data.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ questions:
66
- 'How can I extract specific rows and columns from a Dataframe?'
77
- 'How can I add or delete columns from a Dataframe?'
88
- 'How can I find and change missing values in a Dataframe?'
9+
910
objectives:
1011
- 'Define indexing as it relates to data structures'
1112
- 'Select specific columns from a data frame'
@@ -14,9 +15,12 @@ objectives:
1415
- 'Copy a data frame'
1516
- 'Add columns to a data frame'
1617
- 'Analyse datasets having missing/null values'
17-
keypoints:
18-
- 'First key point.'
1918

19+
keypoints:
20+
- 'Import specific columns when reading in a .csv with the `usecols` parameter'
21+
- 'We easily can chain boolean conditions when filtering rows of a pandas dataframe'
22+
- 'The `loc` and `iloc` methods allow us to get rows with particular labels and at particular integer locations respectively'
23+
- 'pandas has a handy `sample` method which allows us to extract a sample of rows from a dataframe'
2024
---
2125

2226
We will continue this episode from where we left off in the last episode. If you have restarted Jupyter or you want to use a new notebook make sure that you import pandas and have read the SN7577.tab dataset into a Dataframe.

0 commit comments

Comments
 (0)