Skip to content

Commit a61ce37

Browse files
committed
Minor updates.
1 parent 17deff8 commit a61ce37

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

notebooks/1b_handling.ipynb

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,10 @@
376376
"source": [
377377
"# Merging\n",
378378
"\n",
379-
"Like other software, `pandas` is great and merging data, and it as some conveniences not found in most other software.\n",
379+
"Like other software, `pandas` is great at merging data, and it as some conveniences not found in most other software.\n",
380+
"\n",
381+
"If you would like another visual example of the types of merges or joins, [this Atlassian document](https://www.atlassian.com/data/sql/sql-join-types-explained-visually) does a nice job of showing and explaining them.\n",
382+
"Pandas, like most dataframe packages, uses the same terminology from SQL (which we will see later) to name different join types.\n",
380383
"\n",
381384
"Let's work through a simple example to see it in action."
382385
]
@@ -608,6 +611,16 @@
608611
"1. **SQL.** If you are working with a database directly (including the ones we will see later), the SQL support in pandas is really convenient. That said, if you are using a service with its own package (e.g., WRDS), you probably want the more specific package."
609612
]
610613
},
614+
{
615+
"cell_type": "code",
616+
"execution_count": null,
617+
"id": "263aed1a",
618+
"metadata": {},
619+
"outputs": [],
620+
"source": [
621+
"# firmyear.to_parquet(\"firmyear.parquet\")"
622+
]
623+
},
611624
{
612625
"attachments": {},
613626
"cell_type": "markdown",

0 commit comments

Comments
 (0)