pandas.DataFrame.merge — pandas 1.3.5 documentation
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.merge.htmlpandas.DataFrame.merge¶ DataFrame. merge (right, how = 'inner', on = None, left_on = None, right_on = None, left_index = False, right_index = False, sort = False, suffixes = ('_x', '_y'), copy = True, indicator = False, validate = None) [source] ¶ Merge DataFrame or named Series objects with a database-style join. A named Series object is treated as a DataFrame with a single named column.
pandas.merge — pandas 1.3.5 documentation
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.merge.htmlpandas.merge¶ pandas. merge (left, right, how = 'inner', on = None, left_on = None, right_on = None, left_index = False, right_index = False, sort = False, suffixes = ('_x', '_y'), copy = True, indicator = False, validate = None) [source] ¶ Merge DataFrame or named Series objects with a database-style join. A named Series object is treated as a DataFrame with a single named column.
pandas.concat — pandas 1.3.5 documentation
pandas.pydata.org › api › pandaspandas.concat. ¶. pandas.concat(objs, axis=0, join='outer', ignore_index=False, keys=None, levels=None, names=None, verify_integrity=False, sort=False, copy=True) [source] ¶. Concatenate 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 ...