Skip to content

Commit

Permalink
Correction du mot DataFrames
Browse files Browse the repository at this point in the history
  • Loading branch information
plstonge committed Jan 29, 2025
1 parent c78cf24 commit 7512764
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/04-combine.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@
" * Verticalement si `axis='index'` (par défaut)\n",
" * Horizontalement si `axis='columns'`\n",
" * Réinitialiser l'index au besoin : `reset_index(drop=True)`\n",
"* **Joindre** des DataFrmaes avec `pandas.merge()`\n",
"* **Joindre** des DataFrames avec `pandas.merge()`\n",
" * `left=`, `right=` : les deux DataFrames à joindre\n",
" * `left_on=`, `right_on=` : les clés de jonction de chaque DataFrame\n",
" * `on=` : clés de jonction communes aux deux DataFrames\n",
Expand All @@ -1332,7 +1332,7 @@
" * Vertically if `axis='index'` (by default)\n",
" * Horizontally if `axis='columns'`\n",
" * Resetting the index: `reset_index(drop=True)`\n",
"* **Joining** DataFrmaes with `pandas.merge()`\n",
"* **Joining** DataFrames with `pandas.merge()`\n",
" * `left=`, `right=`: both DataFrames to join\n",
" * `left_on=`, `right_on=`: join key for each DataFrame\n",
" * `on=`: join key for both DataFrames\n",
Expand Down

0 comments on commit 7512764

Please sign in to comment.