The versatile concat function enables concatenating two or more DataFrames (or Series) together, both vertically and horizontally. As per usual, when dealing with multiple pandas objects simultaneously, concatenation doesn't happen haphazardly but aligns each object by their index.
Concatenating multiple DataFrames together
Getting ready
In this recipe, we combine DataFrames both horizontally and vertically with the concat function and then change the parameter values to yield different results.
How to do it...
- Read in the 2016 and 2017 stock datasets, and make their...