In this section, we will see how to perform merging, joins, concatenation, and grouping.
Performing merging, joins, concatenation, and grouping
Getting ready
We start the examples in the chapter using the following imports and configuration statements:
How to do it...
Concatenation in pandas is the process of combining the data from two or more pandas objects into a new object. Concatenation of the Series objects simply results in a new Series, with the values copied in sequence.
The process of concatenating the DataFrame objects is more complex. The concatenation can...