Get the number of chunks that this Series contains.
Description
Get the number of chunks that this Series contains.
Usage
<Series>$n_chunks()
Value
A numeric value
Examples
#> [1] 1
# Concatenate Series with rechunk = TRUE
s2 = as_polars_series(4:6)
pl$concat(s, s2, rechunk = TRUE)$n_chunks()
#> [1] 1
#> [1] 2