concat

getml.data.concat(name, data_frames)[source]

Creates a new data frame by concatenating a list of existing ones.

Args:
name (str):

Name of the new column.

data_frames(List[DataFrame or View]):

The data frames to concatenate. Must be non-empty. However, it can contain only one data frame. Column names and roles must match. Columns will be appended by name, not order.

Example:

>>> new_df = data.concat("NEW_DF_NAME", [df1, df2])