Method: Polars::Expr#append
- Defined in:
- lib/polars/expr.rb
#append(other, upcast: true) ⇒ Expr
Append expressions.
This is done by adding the chunks of other to this Series.
850 851 852 853 |
# File 'lib/polars/expr.rb', line 850 def append(other, upcast: true) other = Utils.parse_into_expression(other) wrap_expr(_rbexpr.append(other, upcast)) end |