You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, let's download the datafiles. They are listed in the [setup page][setup-page] for the lesson. Alternatively,
39
34
you can download the [GitHub repository for this lesson][gh-repo]. The data files are in the
40
35
*data* directory. If you're using Jupyter, make sure to place these files in the same directory where your notebook
@@ -128,6 +123,15 @@ We can join columns from two Dataframes using the `merge()` function. This is si
128
123
129
124
A detailed discussion of different join types is given in the [SQL lesson](./episodes/sql...).
130
125
126
+
You specify the type of join you want using the `how` parameter. The default is the `inner` join which returns the columns from both tables where the `key` or common column values match in both Dataframes.
127
+
128
+
The possible values of the `how` parameter are shown in the picture below (taken from the Pandas documentation)
You specify the type of join you want using the `how` parameter. The default is the `inner` join which returns the columns from both tables where the `key` or common column values match in both Dataframes.
156
-
157
-
The possible values of the `how` parameter are shown in the picture below (taken from the Pandas documentation)
0 commit comments