This PR provides minor fixes and cosmetic clean-ups:
improves the type annotations of python API functions to ExprOrStr indicating that user can pass shorthand column names if they wish (i.e. pl.col("y").least_squares.ols("x1", "x2") is a supported equivalent of pl.col("y").least_squares.ols(pl.col("x1"), pl.col("x2")))
This PR provides minor fixes and cosmetic clean-ups:
pl.col("y").least_squares.ols("x1", "x2")
is a supported equivalent ofpl.col("y").least_squares.ols(pl.col("x1"), pl.col("x2"))
)