Skip to main content

concat_dataframes_with_axis

Function concat_dataframes_with_axis 

Source
pub fn concat_dataframes_with_axis(
    frames: &[&DataFrame],
    axis: i64,
) -> Result<DataFrame, FrameError>
Expand description

Concatenate DataFrames along the requested axis.

Supported axes:

  • 0: row-wise concatenation (concat_dataframes)
  • 1: column-wise concatenation with outer index alignment