how to horizontally stack data frame columns. the code below shows two data frames, I want to stack col 2 from df2 with col 1 from df1. how can I do this?
JavaScript
x
13
13
1
import polars as pl
2
df1 = pl.DataFrame(
3
{
4
"col1": ["a", "b", "c", "d"] }
5
)
6
7
8
df2 = pl.DataFrame(
9
{
10
"col2": ["1", "2", "3", "4"]
11
}
12
)
13
Advertisement
Answer
JavaScript
1
14
14
1
df1 = pl.DataFrame(
2
{
3
"col1": ["a", "b", "c", "d"] }
4
)
5
6
7
df2 = pl.DataFrame(
8
{
9
"col2": ["1", "2", "3", "4"]
10
}
11
)
12
13
pl.concat([df1, df2], how="horizontal")
14
JavaScript
1
16
16
1
shape: (4, 2)
2
┌──────┬──────┐
3
│ col1 ┆ col2 │
4
│ --- ┆ --- │
5
│ str ┆ str │
6
╞══════╪══════╡
7
│ a ┆ 1 │
8
├╌╌╌╌╌╌┼╌╌╌╌╌╌┤
9
│ b ┆ 2 │
10
├╌╌╌╌╌╌┼╌╌╌╌╌╌┤
11
│ c ┆ 3 │
12
├╌╌╌╌╌╌┼╌╌╌╌╌╌┤
13
│ d ┆ 4 │
14
└──────┴──────┘
15
16