Combine to a Series
Description
Combine to a Series
Usage
## S3 method for class 'RPolarsSeries'
c(x, ...)
Arguments
x
|
A Polars Series |
…
|
Series(s) or any object that can be converted to a Series. |
Details
All objects must have the same datatype. Combining does not rechunk.
Read more about R vectors, Series and chunks in
docs_translations
:
Value
a combined Series
Examples
library("polars")
s = c(as_polars_series(1:5), 3:1, NA_integer_)
s$chunk_lengths() # the series contain three unmerged chunks
#> [1] 5 3 1