swat.functions.concat

swat.functions.concat(objs, **kwargs)

Concatenate data in given objects

All objects in the concatenation must be of the same type.

This function is simply a thin wrapper around pandas.concat’, ‘CASTable.concat, and pandas.DataFrame.concat depending on which objects are in the concatenation. See the documentation for each function / method for which parameters are supported.

Parameters
objslist, optional

List of CASTable or DataFrame objects

**kwargskeyword arguments, optional

Optional arguments to concatenation function

Returns
CASTable

If first input is a CASTable

SASDataFrame

If first input is a SASDataFrame

DataFrame

If first input is a pandas.DataFrame

Series

If first input is a pandas.Series

See also

pandas.concat()
CASTable.concat()
pandas.DataFrame.concat()