Python Pandas - Concatenation - Tutorialspoint
https://www.tutorialspoint.com/.../python_pandas_concatenation.htmPandas provides various facilities for easily combining together Series, DataFrame, and Panel objects. pd.concat (objs,axis=0,join='outer',join_axes=None, ignore_index=False) objs − This is a sequence or mapping of Series, DataFrame, or Panel objects. axis − {0, 1, ...}, default 0. This is the axis to concatenate along.
pandas.concat — pandas 1.4.1 documentation
pandas.pydata.org › pandas-docs › stableConcatenate pandas objects along a particular axis with optional set logic along the other axes. Can also add a layer of hierarchical indexing on the concatenation axis, which may be useful if the labels are the same (or overlapping) on the passed axis number. Parameters objsa sequence or mapping of Series or DataFrame objects