pub fn concat_df_horizontal(
dfs: &[DataFrame],
check_duplicates: bool,
strict: bool,
) -> PolarsResult<DataFrame>Expand description
Concat DataFrames horizontally.
If the lengths don’t match and strict is false we pad with nulls, or return a ShapeError if strict is true.