Skip to content

Commit 2ff17e8

Browse files
committed
feat: add tidypolars example for diagonal concatenation of DataFrames
1 parent ec78a2f commit 2ff17e8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

book/content/data_manipulation/_concatenate_dataframes.qmd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,13 @@ dfup <- dfup$rename(col3="col4")
131131
pl$concat(dfup,dfdown,how = "diagonal")
132132
```
133133

134+
## tidypolars
135+
136+
```{r}
137+
#| label: diagonal-concatenation-tidypolars
138+
bind_rows_polars(dfup,dfdown)
139+
```
140+
134141
## R base
135142

136143
```{r}

0 commit comments

Comments
 (0)