Method: Polars::StringNameSpace#join
- Defined in:
- lib/polars/string_name_space.rb
#join(delimiter = nil, ignore_nulls: true) ⇒ Series
Vertically concat the values in the Series to a single string value.
1497 1498 1499 1500 1501 1502 1503 1504 1505 |
# File 'lib/polars/string_name_space.rb', line 1497 def join(delimiter = nil, ignore_nulls: true) # TODO update if delimiter.nil? warn "The default `delimiter` for `join` method will change from `-` to empty string in a future version" delimiter = "-" end super end |