Is it possible to stringize a Polars expression and vice-versa?
For example, convert df.filter(pl.col('a')<10)
to a string of "df.filter(pl.col('a')<10)"
.
Is roundtripping possible e.g. eval("df.filter(pl.col('a')<10)")
for user input or tool automation?
I know this can be done with a SQL expression but I'm interested in native. I want to show the specified filter in the title of plots.