Skip to content

Commit 3254add

Browse files
committed
feat: add joins support
1 parent 906445e commit 3254add

File tree

3 files changed

+375
-6
lines changed

3 files changed

+375
-6
lines changed

notebooks/ex03_combine_three_series.ipynb

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 1,
5+
"execution_count": 2,
66
"id": "f9b79835-51ef-4edc-86f7-047e36526942",
77
"metadata": {},
88
"outputs": [
@@ -91,7 +91,7 @@
9191
},
9292
{
9393
"cell_type": "code",
94-
"execution_count": 7,
94+
"execution_count": 6,
9595
"id": "09bc2f12-91a8-42f5-9b1b-be30e0c47d31",
9696
"metadata": {},
9797
"outputs": [
@@ -115,7 +115,7 @@
115115
},
116116
{
117117
"cell_type": "code",
118-
"execution_count": 8,
118+
"execution_count": 7,
119119
"id": "6437eb50-155e-41ec-8913-3772e027ac7b",
120120
"metadata": {},
121121
"outputs": [
@@ -152,7 +152,7 @@
152152
},
153153
{
154154
"cell_type": "code",
155-
"execution_count": 11,
155+
"execution_count": 8,
156156
"id": "b64f2b29-734c-4563-98ce-5e0e6453ce35",
157157
"metadata": {},
158158
"outputs": [
@@ -178,7 +178,7 @@
178178
},
179179
{
180180
"cell_type": "code",
181-
"execution_count": 12,
181+
"execution_count": 9,
182182
"id": "9c539e29-0c9d-49dc-a061-00822e409efe",
183183
"metadata": {},
184184
"outputs": [
@@ -204,7 +204,7 @@
204204
},
205205
{
206206
"cell_type": "code",
207-
"execution_count": 14,
207+
"execution_count": 10,
208208
"id": "9da839b8-2fcf-46b2-941b-1689d76b7f8a",
209209
"metadata": {},
210210
"outputs": [
@@ -229,6 +229,18 @@
229229
"\n",
230230
"print(df)"
231231
]
232+
},
233+
{
234+
"cell_type": "code",
235+
"execution_count": 11,
236+
"id": "a07595a4-2874-4797-9b43-8fa9d1d3d780",
237+
"metadata": {},
238+
"outputs": [],
239+
"source": [
240+
"# Save to File for later use\n",
241+
"\n",
242+
"df.to_csv(\"ex03_emps_df.csv\")"
243+
]
232244
}
233245
],
234246
"metadata": {

notebooks/ex03_emps_df.csv

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
,name,email,phone,location
2+
9001,Jeff Russell,jeff.russel@company.com,+0 (982) 3454-8290,Amsterdam
3+
9002,Jane Boorman,jane.boorman@company.com,+0 (982) 1167-9388,Budapest
4+
9003,Tom Heints,tom.heints@company.com,+0 (982) 4544-8822,Washington D.C.

0 commit comments

Comments
 (0)