Skip to content

Commit f9e438c

Browse files
authored
Merge pull request #402 from wrightaprilm/05-kp
add keypoints to 05
2 parents 3d64ee1 + 27714d3 commit f9e438c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

_episodes/05-merging-data.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ objectives:
1111
- "Employ `to_csv` to export a DataFrame in CSV format."
1212
- "Join DataFrames using common fields (join keys)."
1313
keypoints:
14-
- "FIXME"
14+
- "Pandas' `merge` and `concat` can be used to combine subsets of a DataFrame, or even data from different files."
15+
- "`join` function combines DataFrames based on index or column."
16+
- "Joining two DataFrames can be done in multiple ways (left, right, and inner) depending on what data must be in the final DataFrame."
17+
- "`to_csv` can be used to write out DataFrames in CSV format."
1518
---
1619

1720
In many "real world" situations, the data that we want to use come in multiple

0 commit comments

Comments
 (0)