Polars - Expression plugins

概要

  • Polarsでmap, apply(applyはdeprecated)を使えばユーザ定義関数を実行できるがPythonの処理系で実行されるため遅い
In the  context, the  expression passes elements of the column to the python function.
Note that you are now running Python, this will be slow.
  • Polars0.19.9からRustで書いたユーザ定義関数をコンパイルしてランタイムに組み込むことができるのでnativeの関数と同等のパフォーマンスで実行できるようになった